@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}
     :root {
            --navy: #07182d;
            --navy-2: #0b2542;
            --blue: #1167d8;
            --cyan: #20c9e8;
            --orange: #ff7a22;
            --orange-2: #ff9f43;
            --white: #fff;
            --soft: #ecf7ff;
            --text: #64758a;
            --shadow: 0 20px 55px rgba(3, 20, 40, .16);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            color: var(--navy);
            font-family: Arial, Helvetica, sans-serif;
        }

        a {
            text-decoration: none;
        }

        .site-header {
            position: absolute;
            inset: 0 0 auto;
            z-index: 50;
        }

        .topbar {
            color: rgba(255, 255, 255, .88);
            font-size: 12px;
        }

        .topbar .container {
            padding-top: 13px;
            padding-bottom: 13px;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .topbar-left b {
            margin-right: 7px;
            color: var(--orange);
        }

        .topbar-right {
            justify-content: flex-end;
        }

        .topbar-right a {
            position: relative;
            color: #fff;
            transition: color .25s ease;
        }

        .topbar-right a:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 2px;
            width: 1px;
            height: 11px;
            background: rgba(255, 255, 255, .25);
        }

        .topbar-right a:hover {
            color: var(--orange-2);
        }

        .nav-shell {
            position: relative;
            min-height: 82px;
            padding: 0 28px;
            background: var(--white);
            border-radius: 5px;
            box-shadow: var(--shadow);
        }

        .nav-shell::before {
            content: '';
            position: absolute;
            left: -22px;
            top: 0;
            width: 48px;
            height: 100%;
            background: var(--orange);
            transform: skewX(-17deg);
            border-radius: 5px 0 0 5px;
            z-index: 0;
        }

        .navbar-brand {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-right: 30px;
            color: var(--navy);
        }

        .brand-icon {
            position: relative;
            width: 48px;
            height: 48px;
            flex: 0 0 48px;
            border-radius: 50%;
            background: var(--orange);
            transform: rotate(-22deg);
            box-shadow: 0 0 0 6px rgba(255, 122, 34, .13);
        }

        .key-head {
            position: absolute;
            left: 10px;
            top: 10px;
            width: 15px;
            height: 15px;
            border: 4px solid #fff;
            border-radius: 50%;
        }

        .key-stem {
            position: absolute;
            width: 23px;
            height: 5px;
            left: 21px;
            top: 24px;
            background: #fff;
            border-radius: 10px;
        }

        .key-stem::before,
        .key-stem::after {
            content: '';
            position: absolute;
            right: 4px;
            width: 4px;
            height: 8px;
            background: #fff;
        }

        .key-stem::before {
            top: -5px;
        }

        .key-stem::after {
            top: 2px;
            right: 10px;
        }

        .brand-copy {
            display: grid;
            line-height: 1;
        }

        .brand-copy strong {
            font-size: 24px;
            letter-spacing: -.8px;
        }

        .brand-copy small {
            margin-top: 6px;
            font-weight: 800;
            font-size: 9px;
            letter-spacing: 3.2px;
            color: var(--blue);
        }

        .navbar-nav {
            gap: 13px;
        }

        .navbar .nav-link {
            position: relative;
            padding: 30px 9px !important;
            color: var(--navy);
            font-size: 14px;
            font-weight: 700;
            transition: color .25s ease;
        }

        .navbar .nav-link::after {
            transition: transform .25s ease;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--orange);
        }

        .navbar .nav-link.active::before {
            content: '';
            position: absolute;
            left: 9px;
            right: 9px;
            bottom: 20px;
            height: 2px;
            background: var(--orange);
        }

        .dropdown-menu {
            border: 0;
            min-width: 235px;
            padding: 12px;
            border-radius: 4px;
            box-shadow: 0 18px 45px rgba(7, 24, 45, .17);
        }

        .dropdown-item {
            padding: 11px 13px;
            color: var(--navy);
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            transition: .25s ease;
        }

        .dropdown-item:hover {
            padding-left: 18px;
            color: #fff;
            background: linear-gradient(90deg, var(--orange), var(--orange-2));
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--navy);
            white-space: nowrap;
        }

        .nav-phone:hover {
            color: var(--orange);
        }

        .phone-circle {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            color: #fff;
            background: var(--orange);
            border-radius: 50%;
            font-size: 21px;
            animation: phonePulse 2.3s infinite;
        }

        .nav-phone span:last-child {
            display: grid;
        }

        .nav-phone small {
            color: var(--text);
            font-size: 10px;
            font-weight: 700;
        }

        .nav-phone strong {
            margin-top: 3px;
            font-size: 16px;
        }

        .navbar-toggler {
            width: 44px;
            padding: 7px;
            border: 0;
            box-shadow: none !important;
        }

        .navbar-toggler span {
            display: block;
            height: 3px;
            margin: 5px 0;
            background: var(--navy);
            border-radius: 10px;
        }

        .car-hero {
            position: relative;
            min-height: 850px;
            padding-top: 132px;
            overflow: hidden;
            color: #fff;
            background: radial-gradient(circle at 68% 45%, rgba(32, 201, 232, .16), transparent 24%), linear-gradient(116deg, #07182d 0%, #0b2542 58%, #061426 100%);
            isolation: isolate;
        }

        .car-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -3;
            background: linear-gradient(90deg, rgba(7, 24, 45, .98) 0%, rgba(7, 24, 45, .89) 48%, rgba(7, 24, 45, .35) 100%), url('carkey/car-key-hero-bg.webp') center/cover no-repeat;
            opacity: .9;
        }

        .hero-bg-shape {
            position: absolute;
            z-index: -1;
            transform: rotate(18deg);
        }

        .hero-bg-one {
            right: -170px;
            top: 90px;
            width: 530px;
            height: 650px;
            border: 2px solid rgba(255, 122, 34, .3);
            border-radius: 80px;
        }

        .hero-bg-two {
            left: -280px;
            bottom: -360px;
            width: 590px;
            height: 590px;
            border-radius: 50%;
            background: rgba(17, 103, 216, .12);
        }

        .road-line {
            position: absolute;
            height: 2px;
            width: 430px;
            z-index: -1;
            background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 34px, transparent 34px 65px);
            transform: rotate(-24deg);
        }

        .road-line-one {
            right: 3%;
            top: 37%;
        }

        .road-line-two {
            right: 11%;
            top: 55%;
        }

        .min-vh-row {
            min-height: 650px;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 650px;
            padding: 70px 0 110px;
            animation: revealLeft .8s both;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: #bcd1e2;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .eyebrow span {
            position: relative;
            width: 33px;
            height: 2px;
            background: var(--orange);
        }

        .eyebrow span::after {
            content: '';
            position: absolute;
            right: -6px;
            top: -3px;
            width: 8px;
            height: 8px;
            border: 2px solid var(--orange);
            border-radius: 50%;
        }

        .hero-content h1 {
            max-width: 620px;
            margin: 0 0 22px;
            font-size: clamp(44px, 5vw, 72px);
            line-height: 1.04;
            letter-spacing: -2.5px;
            font-weight: 900;
        }

        .hero-content h1 em {
            display: block;
            color: var(--orange);
            font-style: normal;
        }

        .hero-content>p {
            max-width: 570px;
            margin: 0 0 32px;
            color: #c4d3e0;
            font-size: 17px;
            line-height: 1.75;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-main {
            display: inline-flex;
            align-items: center;
            color: #fff;
            background: var(--orange);
            font-size:23px;
            font-weight: 800;
            box-shadow: 0 14px 30px rgba(255, 122, 34, .24);
            transition: .3s ease;
        }

        .btn-main span {
            padding: 17px 21px;
        }

        .btn-main b {
            display: grid;
            place-items: center;
            width: 51px;
            align-self: stretch;
            color: var(--orange);
            background: #fff;
            font-size: 20px;
            transition: .3s ease;
        }

        .btn-main:hover {
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 18px 38px rgba(255, 122, 34, .38);
        }

        .btn-main:hover b {
            color: #fff;
            background: var(--blue);
        }

        .btn-outline {
            padding: 16px 22px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .34);
            font-size: 23px;
            font-weight: 800;
            transition: .3s ease;
        }

        .btn-outline:hover {
            color: var(--navy);
            background: #fff;
            border-color: #fff;
            transform: translateY(-4px);
        }

        .hero-features {
            display: flex;
            gap: 35px;
            margin-top: 35px;
        }

        .hero-features>div {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .hero-features>div>span {
            display: grid;
            place-items: center;
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            color: var(--navy);
            background: var(--cyan);
            border-radius: 50%;
            font-weight: 900;
        }

        .hero-features p {
            display: grid;
            margin: 0;
        }

        .hero-features strong {
            font-size: 13px;
        }

        .hero-features small {
            margin-top: 4px;
            color: #94aec2;
            font-size: 10px;
        }

        .hero-visual {
            position: relative;
            min-height: 650px;
            animation: revealRight .9s .12s both;
        }

        .hero-person {
            position: absolute;
            z-index: 3;
            right: -35px;
            bottom: 0;
            width: min(620px, 110%);
            max-height: 635px;
            object-fit: contain;
            object-position: bottom;
            filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .32));
        }

        .orange-orbit,
        .blue-orbit {
            position: absolute;
            border-radius: 50%;
        }

        .orange-orbit {
            width: 450px;
            height: 450px;
            right: -35px;
            bottom: 50px;
            border: 62px solid rgba(255, 122, 34, .12);
            animation: orbitPulse 4s ease-in-out infinite;
        }

        .blue-orbit {
            width: 310px;
            height: 310px;
            right: 45px;
            bottom: 120px;
            background: linear-gradient(145deg, rgba(17, 103, 216, .7), rgba(32, 201, 232, .06));
            box-shadow: 0 0 80px rgba(32, 201, 232, .23);
        }

        .visual-grid {
            position: absolute;
            right: -40px;
            bottom: 45px;
            width: 530px;
            height: 530px;
            opacity: .12;
            background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
            background-size: 35px 35px;
            transform: perspective(600px) rotateX(60deg);
        }

        .key-card,
        .car-card {
            position: absolute;
            z-index: 6;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 220px;
            padding: 14px 17px;
            color: var(--navy);
            background: rgba(255, 255, 255, .96);
            box-shadow: var(--shadow);
            animation: floatCard 3.5s ease-in-out infinite;
        }

        .key-card {
            left: -10px;
            top: 165px;
        }

        .car-card {
            right: -25px;
            bottom: 90px;
            animation-delay: -1.2s;
        }

        .key-card p,
        .car-card p {
            display: grid;
            margin: 0;
        }

        .key-card strong,
        .car-card strong {
            font-size: 12px;
        }

        .key-card small,
        .car-card small {
            margin-top: 3px;
            color: var(--text);
            font-size: 9px;
        }

        .fob-shape {
            display: grid;
            place-items: center;
            gap: 3px;
            width: 32px;
            height: 46px;
            padding: 8px;
            background: var(--navy);
            border-radius: 12px 12px 16px 16px;
            transform: rotate(-12deg);
        }

        .fob-shape::before {
            content: '';
            position: absolute;
            top: -6px;
            width: 11px;
            height: 9px;
            border: 3px solid var(--orange);
            border-radius: 50%;
        }

        .fob-shape i {
            display: block;
            width: 11px;
            height: 3px;
            background: var(--orange);
            border-radius: 5px;
        }

        .mini-car {
            position: relative;
            width: 43px;
            height: 20px;
            background: var(--blue);
            border-radius: 9px 13px 5px 5px;
        }

        .mini-car::before {
            content: '';
            position: absolute;
            left: 9px;
            top: -10px;
            width: 23px;
            height: 13px;
            border-radius: 12px 12px 0 0;
            background: var(--cyan);
        }

        .mini-car i,
        .mini-car b {
            position: absolute;
            bottom: -5px;
            width: 10px;
            height: 10px;
            border: 3px solid #fff;
            background: var(--navy);
            border-radius: 50%;
        }

        .mini-car i {
            left: 5px;
        }

        .mini-car b {
            right: 5px;
        }

        .experience-badge {
            position: absolute;
            z-index: 7;
            right: 0;
            top: 100px;
            display: flex;
            align-items: center;
            gap: 9px;
            width: 135px;
            height: 135px;
            padding: 22px;
            color: #fff;
            background: var(--orange);
            border: 7px solid rgba(255, 255, 255, .14);
            border-radius: 50%;
            box-shadow: 0 20px 35px rgba(0, 0, 0, .2);
            transform: rotate(8deg);
        }

        .experience-badge strong {
            font-size: 25px;
        }

        .experience-badge small {
            font-size: 9px;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .floating-key {
            position: absolute;
            z-index: 1;
            width: 52px;
            height: 52px;
            border: 5px solid rgba(255, 255, 255, .11);
            border-radius: 50%;
            animation: keyDrift 7s ease-in-out infinite;
        }

        .floating-key::after {
            content: '';
            position: absolute;
            left: 38px;
            top: 20px;
            width: 67px;
            height: 8px;
            background: rgba(255, 255, 255, .11);
            border-radius: 10px;
        }

        .floating-key i,
        .floating-key b {
            position: absolute;
            left: 83px;
            width: 8px;
            height: 18px;
            background: rgba(255, 255, 255, .11);
        }

        .floating-key i {
            top: 19px;
        }

        .floating-key b {
            top: 26px;
            left: 69px;
        }

        .key-one {
            left: 4%;
            top: 32%;
            transform: rotate(-25deg);
        }

        .key-two {
            left: 44%;
            bottom: 16%;
            transform: rotate(18deg) scale(.7);
            animation-delay: -3s;
        }

        .hero-bottom-strip {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10;
            background: rgba(4, 16, 31, .8);
            border-top: 1px solid rgba(255, 255, 255, .1);
            backdrop-filter: blur(9px);
        }

        .hero-bottom-strip .col-6 {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 72px;
            padding: 15px 20px;
            color: #d3e1eb;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .5px;
            border-right: 1px solid rgba(255, 255, 255, .08);
        }

        .hero-bottom-strip span {
            color: var(--orange);
            font-size: 18px;
            font-weight: 900;
        }

        @keyframes revealLeft {
            from {
                opacity: 0;
                transform: translateX(-45px);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        @keyframes revealRight {
            from {
                opacity: 0;
                transform: translateX(55px);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes orbitPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: .75;
            }

            50% {
                transform: scale(1.05);
                opacity: 1;
            }
        }

        @keyframes keyDrift {

            0%,
            100% {
                translate: 0 0;
            }

            50% {
                translate: 15px -25px;
            }
        }

        @keyframes phonePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 122, 34, .34);
            }

            50% {
                box-shadow: 0 0 0 9px rgba(255, 122, 34, 0);
            }
        }

        @media (min-width: 992px) {
            .dropdown:hover>.dropdown-menu {
                display: block;
                margin-top: 0;
                animation: menuIn .22s ease both;
            }

            @keyframes menuIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }

                to {
                    opacity: 1;
                    transform: none;
                }
            }
        }

        @media (max-width: 1199.98px) {
            .navbar-nav {
                gap: 2px;
            }

            .navbar .nav-link {
                padding-inline: 7px !important;
                font-size: 12px;
            }

            .nav-phone small {
                display: none;
            }

            .nav-phone strong {
                font-size: 13px;
            }

            .hero-content h1 {
                font-size: 56px;
            }

            .key-card {
                left: -45px;
            }

            .car-card {
                right: -15px;
            }
        }

        @media (max-width: 991.98px) {
            .site-header {
                position: relative;
                background: var(--navy);
            }

            .main-navbar {
                padding: 12px;
            }

            .nav-shell {
                min-height: 72px;
                padding: 0 18px;
            }

            .nav-shell::before {
                left: -10px;
                width: 34px;
            }

            .navbar-brand {
                margin-left: 10px;
            }

            .brand-copy strong {
                font-size: 20px;
            }

            .navbar-collapse {
                max-height: calc(100vh - 100px);
                overflow-y: auto;
                padding: 17px 5px 23px;
            }

            .navbar-nav {
                align-items: stretch !important;
            }

            .navbar .nav-link {
                padding: 12px 6px !important;
                border-bottom: 1px solid #edf1f5;
            }

            .navbar .nav-link.active::before {
                display: none;
            }

            .dropdown-menu {
                box-shadow: none;
                background: #f4f8fb;
            }

            .nav-phone {
                margin: 19px 0 0 5px;
            }

            .car-hero {
                min-height: auto;
                padding-top: 0;
            }

            .min-vh-row {
                min-height: auto;
            }

            .hero-content {
                max-width: 720px;
                margin: auto;
                padding: 80px 0 25px;
                text-align: center;
            }

            .eyebrow,
            .hero-actions,
            .hero-features {
                justify-content: center;
            }

            .hero-content h1,
            .hero-content>p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-visual {
                min-height: 590px;
                max-width: 650px;
                margin: auto;
            }

            .hero-person {
                left: 50%;
                right: auto;
                transform: translateX(-50%);
                width: 590px;
            }

            .orange-orbit {
                left: 50%;
                right: auto;
                transform: translateX(-50%);
            }

            .blue-orbit {
                left: 50%;
                right: auto;
                transform: translateX(-50%);
            }

            .key-card {
                left: 15px;
            }

            .car-card {
                right: 15px;
            }

            .experience-badge {
                right: 30px;
            }

            .hero-bottom-strip {
                position: relative;
            }
        }

        @media (max-width: 575.98px) {
            .main-navbar {
                padding-inline: 5px;
            }

            .nav-shell {
                padding-inline: 12px;
            }

            .brand-icon {
                width: 40px;
                height: 40px;
                flex-basis: 40px;
            }

            .brand-copy strong {
                font-size: 17px;
            }

            .brand-copy small {
                font-size: 7px;
            }

            .hero-content {
                padding: 65px 6px 30px;
            }

            .eyebrow {
                font-size: 9px;
                letter-spacing: 1px;
            }

            .hero-content h1 {
                font-size: 41px;
                letter-spacing: -1.4px;
            }

            .hero-content>p {
                font-size: 14px;
            }

            .hero-actions {
                display: grid;
                max-width: 290px;
                margin: auto;
            }

            .btn-main,
            .btn-outline {
                justify-content: center;
                width: 100%;
            }

            .hero-features {
                display: grid;
                gap: 14px;
                max-width: 245px;
                margin: 28px auto 0;
                text-align: left;
            }

            .hero-visual {
                min-height: 480px;
            }

            .hero-person {
                width: 470px;
                max-width: 125%;
            }

            .orange-orbit {
                width: 360px;
                height: 360px;
                border-width: 45px;
            }

            .blue-orbit {
                width: 245px;
                height: 245px;
            }

            .key-card,
            .car-card {
                min-width: 0;
                padding: 10px;
            }

            .key-card {
                top: 130px;
                left: 0;
            }

            .car-card {
                right: 0;
                bottom: 55px;
            }

            .key-card p,
            .car-card p {
                display: none;
            }

            .experience-badge {
                top: 65px;
                right: 4px;
                width: 100px;
                height: 100px;
                padding: 14px;
            }

            .experience-badge strong {
                font-size: 18px;
            }

            .experience-badge small {
                font-size: 7px;
            }

            .hero-bottom-strip .col-6 {
                min-height: 63px;
                padding: 11px 8px;
                font-size: 8px;
            }

            .hero-bottom-strip span {
                font-size: 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
            }
        }


        /* =====================================
   Alternative Why Choose Us Section
===================================== */

.ck-choice-section {
    --ck-choice-navy: #07182d;
    --ck-choice-navy-light: #102b4a;
    --ck-choice-blue: #126bd8;
    --ck-choice-orange: #ff7925;
    --ck-choice-orange-dark: #e85d0a;
    --ck-choice-light: #f1f9ff;
    --ck-choice-white: #ffffff;
    --ck-choice-text: #62758a;

    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 90%,
            rgba(18, 107, 216, 0.09),
            transparent 25%
        ),
        linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.ck-choice-section .container {
    position: relative;
    z-index: 3;
}

/* =====================================
   Image Area
===================================== */

.ck-choice-image-area {
    position: relative;
    max-width: 580px;
    min-height: 610px;
    padding: 20px 55px 55px 0;
}

.ck-choice-image {
    position: relative;
    height: 535px;
    overflow: hidden;
    border-radius: 12px 90px 12px 90px;
    box-shadow: 0 30px 70px rgba(7, 24, 45, 0.18);
}

.ck-choice-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 24, 45, 0.52) 100%
        );
    pointer-events: none;
}

.ck-choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ck-choice-image-area:hover .ck-choice-image img {
    transform: scale(1.06);
}

/* Orange Shape Behind Image */

.ck-choice-orange-shape {
    position: absolute;
    z-index: -1;
    right: 15px;
    bottom: 10px;
    width: 230px;
    height: 300px;
    background: var(--ck-choice-orange);
    border-radius: 12px 70px 12px 70px;
    transform: rotate(5deg);
}

/* Dot Pattern */

.ck-choice-dot-pattern {
    position: absolute;
    z-index: -1;
    top: -12px;
    right: 15px;
    width: 140px;
    height: 140px;
    opacity: 0.38;
    background-image: radial-gradient(
        var(--ck-choice-blue) 2px,
        transparent 2px
    );
    background-size: 15px 15px;
}

/* Mobile Service Badge */

.ck-choice-badge {
    position: absolute;
    z-index: 4;
    top: 73px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
    padding: 17px 20px;
    background: var(--ck-choice-white);
    border-left: 5px solid var(--ck-choice-orange);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(7, 24, 45, 0.16);
    animation: ckChoiceFloat 4s ease-in-out infinite;
}

.ck-choice-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--ck-choice-white);
    background: var(--ck-choice-blue);
    border-radius: 50%;
    font-size: 20px;
}

.ck-choice-badge strong,
.ck-choice-badge span {
    display: block;
}

.ck-choice-badge strong {
    color: var(--ck-choice-navy);
    font-size: 15px;
    font-weight: 900;
}

.ck-choice-badge span {
    margin-top: 3px;
    color: var(--ck-choice-text);
    font-size: 12px;
}

/* Bottom Information Card */

.ck-choice-mini-card {
    position: absolute;
    z-index: 4;
    bottom: 19px;
    left: 35px;
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 295px;
    padding: 22px 25px;
    color: var(--ck-choice-white);
    background: linear-gradient(
        135deg,
        var(--ck-choice-navy-light),
        var(--ck-choice-navy)
    );
    border-radius: 7px;
    box-shadow: 0 20px 45px rgba(7, 24, 45, 0.25);
}

.ck-choice-mini-card > i {
    color: var(--ck-choice-orange);
    font-size: 34px;
    transform: rotate(-35deg);
}

.ck-choice-mini-card span,
.ck-choice-mini-card strong {
    display: block;
}

.ck-choice-mini-card span {
    margin-bottom: 4px;
    color: #a9bfd2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ck-choice-mini-card strong {
    font-size: 15px;
    font-weight: 900;
}

/* =====================================
   Content
===================================== */

.ck-choice-content {
    padding-left: 20px;
}

.ck-choice-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ck-choice-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ck-choice-subtitle > span {
    position: relative;
    width: 36px;
    height: 3px;
    background: var(--ck-choice-orange);
}

.ck-choice-subtitle > span::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -3px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--ck-choice-orange);
    border-radius: 50%;
    background: var(--ck-choice-light);
}

.ck-choice-content h2 {
    max-width: 670px;
    margin: 17px 0 22px;
    color: var(--ck-choice-navy);
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.ck-choice-content h2 em {
    display: block;
    color: var(--ck-choice-orange);
    font-style: normal;
}

.ck-choice-intro {
    max-width: 650px;
    margin: 0 0 32px;
    color: var(--ck-choice-text);
    font-size: 15px;
    line-height: 1.8;
}

/* =====================================
   Connected Features
===================================== */

.ck-choice-features {
    position: relative;
}

.ck-choice-features::before {
    content: "";
    position: absolute;
    top: 29px;
    bottom: 29px;
    left: 28px;
    width: 2px;
    background: linear-gradient(
        var(--ck-choice-orange),
        rgba(18, 107, 216, 0.24)
    );
}

.ck-choice-feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    padding: 13px 16px 13px 0;
    border-radius: 8px;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.ck-choice-feature:hover {
    transform: translateX(9px);
    background: var(--ck-choice-white);
    box-shadow: 0 12px 35px rgba(7, 24, 45, 0.08);
}

.ck-choice-feature-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    color: var(--ck-choice-white);
    background: var(--ck-choice-navy);
    border: 5px solid var(--ck-choice-light);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 121, 37, 0.25);
    font-size: 19px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.ck-choice-feature:hover .ck-choice-feature-icon {
    background: var(--ck-choice-orange);
    transform: rotate(-8deg) scale(1.06);
}

.ck-choice-feature-text h3 {
    margin: 0 0 5px;
    color: var(--ck-choice-navy);
    font-size: 17px;
    font-weight: 900;
}

.ck-choice-feature-text p {
    margin: 0;
    color: var(--ck-choice-text);
    font-size: 13px;
    line-height: 1.6;
}

/* =====================================
   CTA
===================================== */

.ck-choice-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.ck-choice-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 27px;
    overflow: hidden;
    color: var(--ck-choice-white);
    background: var(--ck-choice-orange);
    border-radius: 5px;
    box-shadow: 0 12px 28px rgba(255, 121, 37, 0.28);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.ck-choice-button:hover {
    color: var(--ck-choice-white);
    background: var(--ck-choice-orange-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(255, 121, 37, 0.36);
}

.ck-choice-button i {
    animation: ckChoicePhone 1.8s ease-in-out infinite;
}

.ck-choice-availability {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ck-choice-navy);
    font-size: 12px;
    font-weight: 800;
}

.ck-choice-availability span {
    width: 10px;
    height: 10px;
    background: #22b86a;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(34, 184, 106, 0.13);
    animation: ckChoicePulse 1.7s ease-in-out infinite;
}

/* =====================================
   Floating Key Decorations
===================================== */

.ck-choice-key {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 5px solid rgba(18, 107, 216, 0.09);
    border-radius: 50%;
    animation: ckChoiceKey 6s ease-in-out infinite;
}

.ck-choice-key::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 33px;
    width: 64px;
    height: 8px;
    background: rgba(18, 107, 216, 0.09);
    border-radius: 10px;
}

.ck-choice-key::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 78px;
    width: 8px;
    height: 20px;
    background: rgba(18, 107, 216, 0.09);
    box-shadow: 14px -8px 0 rgba(18, 107, 216, 0.09);
}

.ck-choice-key-one {
    top: 8%;
    left: 2%;
    transform: rotate(-25deg);
}

.ck-choice-key-two {
    right: 4%;
    bottom: 8%;
    transform: rotate(28deg) scale(0.8);
    animation-delay: -3s;
}

/* =====================================
   Animations
===================================== */

@keyframes ckChoiceFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes ckChoiceKey {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -24px;
    }
}

@keyframes ckChoicePhone {
    0%,
    100% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(12deg);
    }

    40% {
        transform: rotate(-12deg);
    }

    60% {
        transform: rotate(7deg);
    }
}

@keyframes ckChoicePulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(34, 184, 106, 0.12);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(34, 184, 106, 0);
    }
}

/* =====================================
   Responsive
===================================== */

@media (max-width: 1199.98px) {
    .ck-choice-image-area {
        padding-right: 35px;
    }

    .ck-choice-content {
        padding-left: 0;
    }

    .ck-choice-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .ck-choice-section {
        padding: 85px 0;
    }

    .ck-choice-image-area {
        max-width: 680px;
        margin: 0 auto 15px;
    }

    .ck-choice-content {
        max-width: 680px;
        margin: 0 auto;
    }

    .ck-choice-bottom {
        align-items: center;
        flex-direction: row;
    }
}

@media (max-width: 575.98px) {
    .ck-choice-section {
        padding: 65px 0 70px;
    }

    .ck-choice-image-area {
        min-height: 470px;
        padding: 0 15px 45px 0;
    }

    .ck-choice-image {
        height: 400px;
        border-radius: 8px 55px 8px 55px;
    }

    .ck-choice-badge {
        top: 25px;
        right: 0;
        min-width: 185px;
        padding: 12px;
    }

    .ck-choice-badge-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 16px;
    }

    .ck-choice-mini-card {
        bottom: 5px;
        left: 14px;
        min-width: 250px;
        padding: 17px;
    }

    .ck-choice-mini-card > i {
        font-size: 27px;
    }

    .ck-choice-content h2 {
        font-size: 38px;
        letter-spacing: -1.3px;
    }

    .ck-choice-feature {
        gap: 15px;
    }

    .ck-choice-feature:hover {
        transform: translateX(4px);
    }

    .ck-choice-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .ck-choice-button {
        width: 100%;
    }

    .ck-choice-key {
        display: none;
    }
}

@media (max-width: 390px) {
    .ck-choice-image-area {
        min-height: 420px;
    }

    .ck-choice-image {
        height: 350px;
    }

    .ck-choice-mini-card {
        right: 12px;
        min-width: 0;
    }

    .ck-choice-content h2 {
        font-size: 34px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .ck-choice-section *,
    .ck-choice-section *::before,
    .ck-choice-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ================================
   Why Choose Us Section
================================ */

.ck-why-section {
    --ck-navy: #07182d;
    --ck-navy-light: #0b2542;
    --ck-blue: #1167d8;
    --ck-orange: #ff7a22;
    --ck-orange-light: #ff9f43;
    --ck-text: #64758a;
    --ck-white: #ffffff;

    position: relative;
    padding: 105px 0 115px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(17, 103, 216, 0.08),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f9fdff 0%,
            #edf8ff 55%,
            #e4f3fc 100%
        );
}

/* Large Decorative Circle */
.ck-why-section::before {
    content: "";
    position: absolute;
    top: -210px;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(17, 103, 216, 0.05);
    border-radius: 50%;
}

/* Orange Background Shape */
.ck-why-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 122, 34, 0.07);
    border-radius: 50%;
}

.ck-why-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.ck-why-heading-row {
    margin-bottom: 48px;
}

.ck-why-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ck-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.ck-why-subtitle > span {
    position: relative;
    width: 34px;
    height: 2px;
    background: var(--ck-orange);
}

.ck-why-subtitle > span::after {
    content: "";
    position: absolute;
    top: -3px;
    right: -6px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--ck-orange);
    border-radius: 50%;
}

.ck-why-section h2 {
    max-width: 750px;
    margin: 16px 0 0;
    color: var(--ck-navy);
    font-size: clamp(38px, 4.3vw, 61px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2px;
}

.ck-why-section h2 em {
    display: block;
    color: var(--ck-orange);
    font-style: normal;
}

.ck-why-description {
    max-width: 520px;
    margin: 0 0 4px auto;
    color: var(--ck-text);
    font-size: 16px;
    line-height: 1.8;
}

/* Cards */
.ck-why-card {
    position: relative;
    height: 100%;
    min-height: 340px;
    padding: 35px 28px 30px;
    overflow: hidden;
    background: var(--ck-white);
    border: 1px solid rgba(17, 103, 216, 0.1);
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(7, 24, 45, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Orange Line */
.ck-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--ck-orange),
        var(--ck-orange-light)
    );
    transition: width 0.4s ease;
}

.ck-why-card:hover {
    transform: translateY(-11px);
    border-color: rgba(255, 122, 34, 0.4);
    box-shadow: 0 25px 55px rgba(7, 24, 45, 0.15);
}

.ck-why-card:hover::before {
    width: 100%;
}

/* Dark Featured Card */
.ck-featured-card {
    color: var(--ck-white);
    background: linear-gradient(
        145deg,
        var(--ck-navy-light),
        var(--ck-navy)
    );
    border-color: transparent;
}

.ck-card-number {
    position: absolute;
    top: 17px;
    right: 20px;
    color: rgba(7, 24, 45, 0.07);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}

.ck-featured-card .ck-card-number {
    color: rgba(255, 255, 255, 0.08);
}

/* Icons */
.ck-card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 26px;
    color: var(--ck-white);
    background: var(--ck-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(255, 122, 34, 0.11);
    font-size: 27px;
    transition: transform 0.35s ease;
}

.ck-why-card:hover .ck-card-icon {
    transform: rotate(-8deg) scale(1.08);
}

.ck-why-card h3 {
    margin: 0 0 14px;
    color: var(--ck-navy);
    font-size: 21px;
    font-weight: 900;
}

.ck-featured-card h3 {
    color: var(--ck-white);
}

.ck-why-card p {
    margin: 0 0 24px;
    color: var(--ck-text);
    font-size: 14px;
    line-height: 1.75;
}

.ck-featured-card p {
    color: #b9cad8;
}

/* Card Links */
.ck-why-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ck-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
}

.ck-featured-card a {
    color: var(--ck-orange-light);
}

.ck-why-card a span {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.ck-why-card a:hover span {
    transform: translateX(6px);
}

/* Floating Key Effects */
.ck-why-floating-key {
    position: absolute;
    z-index: 1;
    width: 45px;
    height: 45px;
    border: 5px solid rgba(17, 103, 216, 0.1);
    border-radius: 50%;
    animation: ckKeyFloating 6s ease-in-out infinite;
}

.ck-why-floating-key::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 34px;
    width: 59px;
    height: 8px;
    background: rgba(17, 103, 216, 0.1);
    border-radius: 10px;
}

.ck-why-floating-key::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 75px;
    width: 8px;
    height: 20px;
    background: rgba(17, 103, 216, 0.1);
    box-shadow: 14px -7px 0 rgba(17, 103, 216, 0.1);
}

.ck-key-effect-one {
    top: 25%;
    left: 3%;
    transform: rotate(-22deg);
}

.ck-key-effect-two {
    right: 4%;
    bottom: 12%;
    transform: rotate(20deg) scale(0.75);
    animation-delay: -3s;
}

@keyframes ckKeyFloating {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -25px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .ck-why-section {
        padding: 80px 0 90px;
    }

    .ck-why-heading-row {
        margin-bottom: 35px;
    }

    .ck-why-description {
        margin-left: 0;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .ck-why-section {
        padding: 68px 0 72px;
    }

    .ck-why-section h2 {
        font-size: 39px;
        letter-spacing: -1.2px;
    }

    .ck-why-description {
        font-size: 14px;
    }

    .ck-why-card {
        min-height: 310px;
        padding: 31px 24px 27px;
    }

    .ck-why-floating-key {
        display: none;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .ck-why-section *,
    .ck-why-section *::before,
    .ck-why-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================
   Dallas Mobile Car Key Section
========================================= */

.dk-service-section {
    --dk-dark: #061421;
    --dk-dark-two: #091d30;
    --dk-dark-three: #0d2942;
    --dk-blue: #126bd8;
    --dk-blue-light: #65b4ff;
    --dk-orange: #ff7925;
    --dk-orange-dark: #dc5707;
    --dk-white: #ffffff;
    --dk-text: #b7c8d7;

    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--dk-white);
    background:
        radial-gradient(
            circle at 11% 35%,
            rgba(18, 107, 216, 0.17),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(255, 121, 37, 0.1),
            transparent 24%
        ),
        linear-gradient(
            125deg,
            #030b13 0%,
            var(--dk-dark) 47%,
            #0a2238 100%
        );
}

.dk-service-section .container {
    position: relative;
    z-index: 5;
}

/* =========================================
   Background Decorations
========================================= */

.dk-bg-lines {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.6) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.6) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
    transform: perspective(700px) rotateX(55deg) scale(1.6);
    transform-origin: bottom;
}

.dk-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.dk-glow-one {
    top: -220px;
    left: -170px;
    width: 540px;
    height: 540px;
    background: rgba(18, 107, 216, 0.09);
}

.dk-glow-two {
    right: -190px;
    bottom: -260px;
    width: 570px;
    height: 570px;
    background: rgba(255, 121, 37, 0.07);
}

.dk-shape {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(101, 180, 255, 0.12);
    animation: dkShapeFloat 8s ease-in-out infinite;
}

.dk-shape-one {
    top: 70px;
    right: 6%;
    width: 115px;
    height: 115px;
    transform: rotate(35deg);
}

.dk-shape-two {
    bottom: 55px;
    left: 4%;
    width: 75px;
    height: 75px;
    border-color: rgba(255, 121, 37, 0.17);
    border-radius: 50%;
    animation-delay: -4s;
}

/* =========================================
   Image Area
========================================= */

.dk-image-area {
    position: relative;
    width: 100%;
    max-width: 510px;
    min-height: 620px;
    padding: 35px 40px 45px 0;
}

.dk-image-box {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 535px;
    overflow: hidden;
    background: var(--dk-dark-two);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 150px 20px 90px 20px;
    box-shadow:
        0 40px 75px rgba(0, 0, 0, 0.38),
        inset 0 0 50px rgba(18, 107, 216, 0.12);
}

.dk-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.05);
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.dk-image-area:hover .dk-image-box img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.06);
}

.dk-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(4, 14, 24, 0.88),
            transparent 52%
        ),
        linear-gradient(
            120deg,
            rgba(18, 107, 216, 0.24),
            transparent 46%
        );
}

.dk-image-box::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 14px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 136px 14px 78px 14px;
}

.dk-image-corner {
    position: absolute;
    z-index: 5;
    right: 25px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    color: var(--dk-white);
    background: var(--dk-orange);
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(255, 121, 37, 0.13),
        0 15px 30px rgba(0, 0, 0, 0.25);
    font-size: 19px;
    animation: dkLocationPulse 2s ease-in-out infinite;
}

.dk-scan-line {
    position: absolute;
    z-index: 4;
    top: -10%;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        var(--dk-blue-light),
        transparent
    );
    box-shadow: 0 0 18px rgba(101, 180, 255, 0.75);
    animation: dkScanLine 5s linear infinite;
}

/* Orange Frame */

.dk-orange-frame {
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 3px;
    width: 78%;
    height: 555px;
    background: linear-gradient(
        145deg,
        var(--dk-orange),
        var(--dk-orange-dark)
    );
    border-radius: 30px 125px 25px 100px;
    box-shadow: 0 30px 60px rgba(255, 121, 37, 0.17);
    transform: rotate(5deg);
    animation: dkOrangeFrame 5s ease-in-out infinite;
}

/* Image Dots */

.dk-image-dots {
    position: absolute;
    z-index: 0;
    right: -18px;
    bottom: 4px;
    width: 175px;
    height: 175px;
    opacity: 0.42;
    background-image: radial-gradient(
        var(--dk-blue-light) 2px,
        transparent 2px
    );
    background-size: 16px 16px;
    animation: dkDotsFloat 6s ease-in-out infinite;
}

/* =========================================
   Mobile Badge
========================================= */

.dk-mobile-badge {
    position: absolute;
    z-index: 7;
    bottom: 15px;
    left: -28px;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 150px;
    padding: 16px 22px;
    background: rgba(9, 29, 48, 0.94);
    border: 1px solid rgba(101, 180, 255, 0.27);
    border-radius: 12px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        inset 0 0 20px rgba(18, 107, 216, 0.08);
    backdrop-filter: blur(12px);
    animation: dkBadgeFloat 4s ease-in-out infinite;
}

.dk-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--dk-white);
    background: var(--dk-blue);
    border-radius: 9px;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(18, 107, 216, 0.35);
}

.dk-badge-signal {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 27px;
}

.dk-badge-signal span {
    display: block;
    width: 5px;
    background: var(--dk-orange);
    border-radius: 5px;
    animation: dkSignalBars 1.1s ease-in-out infinite;
}

.dk-badge-signal span:nth-child(1) {
    height: 10px;
}

.dk-badge-signal span:nth-child(2) {
    height: 18px;
    animation-delay: 0.15s;
}

.dk-badge-signal span:nth-child(3) {
    height: 27px;
    animation-delay: 0.3s;
}

/* =========================================
   Smart Key
========================================= */

.dk-smart-key {
    position: absolute;
    z-index: 8;
    top: 86px;
    right: -5px;
    width: 92px;
    min-height: 180px;
    padding: 43px 17px 18px;
    background: linear-gradient(
        145deg,
        #334b61,
        #111f2d 42%,
        #040a11
    );
    border: 3px solid #6d8192;
    border-radius: 45px 45px 24px 24px;
    box-shadow:
        0 24px 40px rgba(0, 0, 0, 0.48),
        inset 3px 3px 8px rgba(255, 255, 255, 0.08);
    transform: rotate(10deg);
    animation: dkKeyFloat 4.2s ease-in-out infinite;
}

.dk-key-ring {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 36px;
    height: 17px;
    border: 4px solid #8ba0b1;
    border-radius: 50%;
    transform: translateX(-50%);
}

.dk-key-light {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 7px;
    height: 7px;
    background: var(--dk-orange);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--dk-orange);
    transform: translateX(-50%);
    animation: dkKeyLight 1.4s ease-in-out infinite;
}

.dk-key-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 31px;
    margin: 7px auto;
    color: #dce7ee;
    background: #101f2d;
    border: 1px solid #52687b;
    border-radius: 15px;
    font-size: 11px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dk-key-button:hover {
    color: var(--dk-white);
    background: var(--dk-blue);
    transform: scale(1.09);
}

.dk-key-button-orange {
    color: #ff9d61;
}

/* =========================================
   Content
========================================= */

.dk-content {
    position: relative;
    max-width: 760px;
    padding-left: 25px;
}

.dk-title-number {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 21px;
}

.dk-title-number span {
    color: var(--dk-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.dk-title-number i {
    position: relative;
    display: block;
    width: 85px;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
}

.dk-title-number i::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35px;
    width: 35px;
    height: 100%;
    background: var(--dk-orange);
    animation: dkTitleLine 2.4s linear infinite;
}

.dk-content h2 {
    max-width: 750px;
    margin: 0 0 35px;
    color: var(--dk-white);
    font-size: clamp(40px, 4.4vw, 62px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -2.3px;
}

.dk-content h2 em {
    display: block;
    margin-top: 6px;
    color: var(--dk-orange);
    font-style: normal;
    text-shadow: 0 10px 35px rgba(255, 121, 37, 0.2);
}

/* =========================================
   Text Glass Card
========================================= */

.dk-text-card {
    position: relative;
    padding: 30px 32px;
    overflow: hidden;
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.075),
        rgba(255, 255, 255, 0.025)
    );
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 4px solid var(--dk-blue);
    border-radius: 4px 28px 4px 28px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 0 35px rgba(18, 107, 216, 0.035);
    backdrop-filter: blur(7px);
}

.dk-text-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(18, 107, 216, 0.08);
    border-radius: 50%;
}

.dk-text-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: var(--dk-text);
    font-size: 15px;
    line-height: 1.9;
}

.dk-text-card p:last-child {
    margin-bottom: 0;
}

.dk-card-corner {
    position: absolute;
    z-index: 3;
    width: 23px;
    height: 23px;
    pointer-events: none;
}

.dk-card-corner-one {
    top: 10px;
    right: 10px;
    border-top: 2px solid var(--dk-orange);
    border-right: 2px solid var(--dk-orange);
}

.dk-card-corner-two {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid var(--dk-orange);
    border-left: 2px solid var(--dk-orange);
}

/* =========================================
   Animations
========================================= */

@keyframes dkShapeFloat {
    0%,
    100% {
        margin-top: 0;
        transform: rotate(35deg);
    }

    50% {
        margin-top: -25px;
        transform: rotate(55deg);
    }
}

@keyframes dkOrangeFrame {
    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-10px);
    }
}

@keyframes dkScanLine {
    0% {
        top: -10%;
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    75% {
        opacity: 0.8;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

@keyframes dkLocationPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 7px rgba(255, 121, 37, 0.12),
            0 15px 30px rgba(0, 0, 0, 0.25);
    }

    50% {
        box-shadow:
            0 0 0 14px rgba(255, 121, 37, 0),
            0 15px 30px rgba(0, 0, 0, 0.25);
    }
}

@keyframes dkBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

@keyframes dkSignalBars {
    0%,
    100% {
        opacity: 0.45;
        transform: scaleY(0.65);
        transform-origin: bottom;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes dkKeyFloat {
    0%,
    100% {
        transform: rotate(10deg) translateY(0);
    }

    50% {
        transform: rotate(4deg) translateY(-15px);
    }
}

@keyframes dkKeyLight {
    0%,
    100% {
        opacity: 0.45;
        box-shadow: 0 0 8px var(--dk-orange);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 20px var(--dk-orange);
    }
}

@keyframes dkDotsFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes dkTitleLine {
    from {
        left: -35px;
    }

    to {
        left: 100%;
    }
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {
    .dk-image-area {
        padding-right: 25px;
    }

    .dk-content {
        padding-left: 0;
    }

    .dk-content h2 {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .dk-service-section {
        padding: 90px 0;
    }

    .dk-image-area {
        max-width: 560px;
        margin: 0 auto;
    }

    .dk-content {
        max-width: 760px;
        margin: 10px auto 0;
    }
}

@media (max-width: 575.98px) {
    .dk-service-section {
        padding: 70px 0;
    }

    .dk-image-area {
        min-height: 510px;
        padding: 20px 20px 35px 0;
    }

    .dk-image-box {
        height: 445px;
        border-radius: 105px 16px 65px 16px;
    }

    .dk-image-box::before {
        border-radius: 94px 11px 55px 11px;
    }

    .dk-orange-frame {
        height: 460px;
    }

    .dk-smart-key {
        top: 70px;
        right: -2px;
        transform: scale(0.82) rotate(10deg);
    }

    .dk-mobile-badge {
        bottom: 8px;
        left: 4px;
        min-width: 125px;
        padding: 12px 16px;
    }

    .dk-badge-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .dk-content h2 {
        font-size: 37px;
        letter-spacing: -1.3px;
    }

    .dk-text-card {
        padding: 25px 20px;
        border-radius: 4px 20px 4px 20px;
    }

    .dk-text-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .dk-shape {
        display: none;
    }
}

@media (max-width: 390px) {
    .dk-image-area {
        min-height: 470px;
    }

    .dk-image-box {
        height: 410px;
    }

    .dk-orange-frame {
        height: 425px;
    }

    .dk-smart-key {
        right: -10px;
        transform: scale(0.7) rotate(10deg);
    }

    .dk-content h2 {
        font-size: 33px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .dk-service-section *,
    .dk-service-section *::before,
    .dk-service-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================
   Car Key Coupon Offers
========================================= */

.key-deals-section {
    --kd-navy: #07192b;
    --kd-blue: #126bd8;
    --kd-blue-dark: #0950a7;
    --kd-orange: #ff7925;
    --kd-orange-dark: #dc5709;
    --kd-light: #f5f9fd;
    --kd-white: #ffffff;
    --kd-text: #667889;
    --kd-border: #dbe7f0;

    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(18, 107, 216, 0.09),
            transparent 23%
        ),
        radial-gradient(
            circle at 94% 87%,
            rgba(255, 121, 37, 0.1),
            transparent 22%
        ),
        var(--kd-light);
}

.key-deals-section .container {
    position: relative;
    z-index: 3;
}

/* Background */

.key-deals-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(var(--kd-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--kd-blue) 1px, transparent 1px);
    background-size: 55px 55px;
}

.key-deals-circle {
    position: absolute;
    display: block;
    border: 18px solid rgba(18, 107, 216, 0.05);
    border-radius: 50%;
    animation: keyDealCircle 7s ease-in-out infinite;
}

.key-deals-circle-one {
    top: -85px;
    left: -80px;
    width: 230px;
    height: 230px;
}

.key-deals-circle-two {
    right: -100px;
    bottom: -120px;
    width: 290px;
    height: 290px;
    border-color: rgba(255, 121, 37, 0.06);
    animation-delay: -3.5s;
}

/* Heading */

.key-deals-heading {
    max-width: 730px;
    margin: 0 auto 55px;
}

.key-deals-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 15px;
    color: var(--kd-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.key-deals-label span {
    width: 32px;
    height: 2px;
    background: var(--kd-orange);
}

.key-deals-label i {
    transform: rotate(-35deg);
}

.key-deals-heading h2 {
    margin: 0 0 15px;
    color: var(--kd-navy);
    font-size: clamp(35px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.key-deals-heading p {
    max-width: 580px;
    margin: 0 auto;
    color: var(--kd-text);
    font-size: 16px;
    line-height: 1.8;
}

/* Ticket */

.key-deal-ticket {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    background: var(--kd-white);
    border: 1px solid var(--kd-border);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(17, 62, 97, 0.09);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.key-deal-ticket:hover {
    border-color: rgba(18, 107, 216, 0.32);
    box-shadow: 0 32px 65px rgba(17, 62, 97, 0.16);
    transform: translateY(-12px);
}

/* Ticket Top */

.key-deal-top {
    position: relative;
    min-height: 245px;
    padding: 40px 25px 30px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 255, 255, 0.12),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            var(--kd-navy),
            #0b2b49
        );
}

.key-deal-top::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -55px;
    width: 160px;
    height: 160px;
    border: 25px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.key-deal-top::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: -35px;
    width: 130px;
    height: 130px;
    background: rgba(18, 107, 216, 0.13);
    border-radius: 50%;
}

.key-deal-count {
    position: absolute;
    z-index: 2;
    top: 19px;
    right: 22px;
    color: rgba(255, 255, 255, 0.11);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.key-deal-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    color: var(--kd-white);
    background: linear-gradient(
        145deg,
        var(--kd-orange),
        var(--kd-orange-dark)
    );
    border: 5px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.23),
        0 0 0 8px rgba(255, 121, 37, 0.1);
    font-size: 23px;
    transition: transform 0.4s ease;
}

.key-deal-ticket:hover .key-deal-icon {
    transform: rotate(-10deg) scale(1.08);
}

.key-deal-discount {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.key-deal-discount strong {
    color: var(--kd-white);
    font-size: 66px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -4px;
}

.key-deal-discount span {
    margin: 7px 0 0 9px;
    padding: 5px 8px;
    color: var(--kd-navy);
    background: var(--kd-orange);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Perforated Coupon Line */

.key-deal-cut {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    height: 1px;
}

.key-deal-cut > span {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--kd-light);
    border-radius: 50%;
}

.key-deal-cut > span:first-child {
    left: -16px;
}

.key-deal-cut > span:last-child {
    right: -16px;
}

.key-deal-cut > div {
    width: calc(100% - 44px);
    margin: 0 auto;
    border-top: 2px dashed #d4e0e9;
}

/* Ticket Bottom */

.key-deal-bottom {
    position: relative;
    min-height: 235px;
    padding: 36px 27px 30px;
    text-align: center;
}

.key-deal-bottom h3 {
    margin: 0 0 13px;
    color: var(--kd-navy);
    font-size: 23px;
    font-weight: 850;
}

.key-deal-bottom p {
    min-height: 54px;
    margin: 0 0 24px;
    color: var(--kd-text);
    font-size: 13px;
    line-height: 1.7;
}

.key-deal-bottom .key-deal-required {
    color: var(--kd-orange-dark);
    font-weight: 750;
}

/* Button */

.key-deal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 165px;
    padding: 13px 20px;
    color: var(--kd-white);
    background: var(--kd-blue);
    border-radius: 50px;
    box-shadow: 0 12px 25px rgba(18, 107, 216, 0.22);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.key-deal-button:hover {
    color: var(--kd-white);
    background: var(--kd-orange);
    box-shadow: 0 15px 28px rgba(255, 121, 37, 0.25);
    transform: translateY(-3px);
}

.key-deal-button i {
    transition: transform 0.3s ease;
}

.key-deal-button:hover i {
    transform: translateX(5px);
}

/* Featured Ticket */

.key-deal-ticket-featured {
    border: 2px solid var(--kd-orange);
    transform: translateY(-12px);
}

.key-deal-ticket-featured:hover {
    transform: translateY(-22px);
}

.key-deal-ticket-featured .key-deal-top {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 255, 255, 0.14),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            var(--kd-blue),
            var(--kd-blue-dark)
        );
}

.key-deal-featured-label {
    position: absolute;
    z-index: 8;
    top: 18px;
    left: 0;
    padding: 8px 15px 8px 12px;
    color: var(--kd-white);
    background: var(--kd-orange);
    border-radius: 0 20px 20px 0;
    box-shadow: 0 8px 20px rgba(255, 121, 37, 0.22);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */

@keyframes keyDealCircle {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
    }
}

/* Responsive */

@media (max-width: 991.98px) {
    .key-deals-section {
        padding: 85px 0;
    }

    .key-deal-ticket-featured {
        transform: none;
    }

    .key-deal-ticket-featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 767.98px) {
    .key-deals-heading {
        margin-bottom: 40px;
    }

    .key-deal-ticket {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .key-deals-section {
        padding: 70px 0;
    }

    .key-deals-heading h2 {
        font-size: 35px;
        letter-spacing: -1px;
    }

    .key-deals-heading p {
        font-size: 14px;
    }

    .key-deal-discount strong {
        font-size: 60px;
    }

    .key-deals-circle {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .key-deals-section *,
    .key-deals-section *::before,
    .key-deals-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================
   Complete Car Key Replacement Services
========================================= */

.crs-section {
    --crs-navy: #07192b;
    --crs-navy-light: #0d2b47;
    --crs-blue: #126bd8;
    --crs-blue-dark: #0a4fa8;
    --crs-orange: #ff7925;
    --crs-orange-dark: #dc5709;
    --crs-white: #ffffff;
    --crs-light: #f4f8fc;
    --crs-text: #66788a;
    --crs-border: #dae7f1;

    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 20%,
            rgba(18, 107, 216, 0.1),
            transparent 25%
        ),
        radial-gradient(
            circle at 94% 83%,
            rgba(255, 121, 37, 0.1),
            transparent 23%
        ),
        linear-gradient(135deg, #f9fcff 0%, #edf5fb 100%);
}

.crs-section .container {
    position: relative;
    z-index: 5;
}

/* =========================================
   Left Content
========================================= */

.crs-content {
    position: relative;
    padding: 48px 42px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(18, 107, 216, 0.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--crs-navy),
            var(--crs-navy-light)
        );
    border-radius: 8px 48px 8px 48px;
    box-shadow: 0 30px 70px rgba(7, 25, 43, 0.2);
}

.crs-content::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;
    width: 210px;
    height: 210px;
    border: 35px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
    animation: crsContentCircle 8s linear infinite;
}

.crs-content::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -55px;
    width: 170px;
    height: 170px;
    background: rgba(255, 121, 37, 0.07);
    border-radius: 50%;
}

.crs-heading-line {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.crs-heading-line span {
    position: relative;
    width: 70px;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.crs-heading-line span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: var(--crs-orange);
    animation: crsHeadingLine 2.2s linear infinite;
}

.crs-heading-line i {
    color: var(--crs-orange);
    font-size: 19px;
    transform: rotate(-35deg);
    animation: crsHeadingKey 3s ease-in-out infinite;
}

.crs-content h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 25px;
    color: var(--crs-white);
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.crs-content p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #c5d4e0;
    font-size: 16px;
    line-height: 1.9;
}

.crs-content-corner {
    position: absolute;
    z-index: 3;
    width: 35px;
    height: 35px;
}

.crs-corner-top {
    top: 16px;
    right: 16px;
    border-top: 3px solid var(--crs-orange);
    border-right: 3px solid var(--crs-orange);
}

.crs-corner-bottom {
    bottom: 16px;
    left: 16px;
    border-bottom: 3px solid var(--crs-blue);
    border-left: 3px solid var(--crs-blue);
}

/* =========================================
   Services Box
========================================= */

.crs-services-box {
    position: relative;
    min-height: 535px;
    padding: 52px 44px 42px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--crs-border);
    border-radius: 45px 8px 45px 8px;
    box-shadow:
        0 28px 65px rgba(20, 65, 100, 0.12),
        inset 0 0 40px rgba(18, 107, 216, 0.025);
    backdrop-filter: blur(10px);
}

.crs-services-box::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -75px;
    width: 230px;
    height: 230px;
    background: rgba(18, 107, 216, 0.055);
    border-radius: 50%;
}

.crs-services-box::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -60px;
    width: 170px;
    height: 170px;
    border: 28px solid rgba(255, 121, 37, 0.05);
    border-radius: 50%;
}

.crs-services-box h3 {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin: 0 0 30px;
    padding-bottom: 12px;
    color: var(--crs-navy);
    font-size: 24px;
    font-weight: 850;
}

.crs-services-box h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58px;
    height: 4px;
    background: var(--crs-orange);
    border-radius: 10px;
}

.crs-services-box h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 64px;
    width: 16px;
    height: 4px;
    background: var(--crs-blue);
    border-radius: 10px;
}

/* =========================================
   Services List
========================================= */

.crs-services-list {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.crs-services-list li {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 9px 13px 9px 9px;
    color: var(--crs-navy);
    background: var(--crs-light);
    border: 1px solid transparent;
    border-radius: 9px 20px 9px 20px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.4;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.crs-services-list li:hover {
    color: var(--crs-white);
    background: var(--crs-navy);
    border-color: rgba(18, 107, 216, 0.3);
    box-shadow: 0 13px 25px rgba(7, 25, 43, 0.16);
    transform: translateX(6px);
}

.crs-list-icon {
    display: flex;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 11px;
    color: var(--crs-white);
    background:
        linear-gradient(
            145deg,
            var(--crs-blue),
            var(--crs-blue-dark)
        );
    border-radius: 10px 4px 10px 4px;
    box-shadow: 0 8px 16px rgba(18, 107, 216, 0.2);
    font-size: 12px;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.crs-list-icon i {
    transform: rotate(-35deg);
}

.crs-services-list li:hover .crs-list-icon {
    background:
        linear-gradient(
            145deg,
            var(--crs-orange),
            var(--crs-orange-dark)
        );
    transform: rotate(7deg) scale(1.06);
}

/* =========================================
   Decorative Smart Key
========================================= */

.crs-key-decoration {
    position: absolute;
    z-index: 4;
    top: 24px;
    right: 35px;
    width: 57px;
    height: 96px;
    padding: 28px 10px 9px;
    background:
        linear-gradient(
            145deg,
            #385067,
            #101e2b 48%,
            #050a10
        );
    border: 2px solid #6b7f90;
    border-radius: 28px 28px 15px 15px;
    box-shadow:
        0 15px 30px rgba(7, 25, 43, 0.3),
        inset 2px 2px 5px rgba(255, 255, 255, 0.09);
    transform: rotate(9deg);
    animation: crsKeyFloat 4s ease-in-out infinite;
}

.crs-key-ring {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 23px;
    height: 12px;
    border: 3px solid #8ea0ae;
    border-radius: 50%;
    transform: translateX(-50%);
}

.crs-key-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crs-key-body span {
    display: block;
    width: 100%;
    height: 12px;
    background: #132739;
    border: 1px solid #506578;
    border-radius: 8px;
}

.crs-key-body span:nth-child(2) {
    background: var(--crs-orange);
    border-color: var(--crs-orange-dark);
    box-shadow: 0 0 10px rgba(255, 121, 37, 0.4);
    animation: crsKeyLight 1.5s ease-in-out infinite;
}

/* =========================================
   Box Decorations
========================================= */

.crs-box-line {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 110px;
    border-right: 5px solid var(--crs-orange);
    border-bottom: 5px solid var(--crs-orange);
    border-radius: 0 0 45px 0;
    opacity: 0.65;
}

.crs-box-circle {
    position: absolute;
    top: 35%;
    right: -35px;
    width: 70px;
    height: 70px;
    border: 12px solid rgba(18, 107, 216, 0.07);
    border-radius: 50%;
    animation: crsBoxCircle 6s linear infinite;
}

/* =========================================
   Background Shapes
========================================= */

.crs-shape {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(18, 107, 216, 0.16);
    animation: crsShapeFloat 7s ease-in-out infinite;
}

.crs-shape-one {
    top: 85px;
    left: 3%;
    width: 90px;
    height: 90px;
    border-radius: 28px 8px 28px 8px;
    transform: rotate(30deg);
}

.crs-shape-two {
    right: 4%;
    bottom: 65px;
    width: 85px;
    height: 85px;
    border-color: rgba(255, 121, 37, 0.2);
    border-radius: 50%;
    animation-delay: -3s;
}

.crs-shape-three {
    top: 48%;
    left: -28px;
    width: 75px;
    height: 75px;
    border: 13px solid rgba(255, 121, 37, 0.055);
    border-radius: 50%;
    animation-delay: -5s;
}

.crs-dots {
    position: absolute;
    width: 160px;
    height: 180px;
    opacity: 0.2;
    background-image:
        radial-gradient(var(--crs-blue) 2px, transparent 2px);
    background-size: 17px 17px;
    animation: crsDotsFloat 6s ease-in-out infinite;
}

.crs-dots-one {
    top: 30px;
    right: 1%;
}

.crs-dots-two {
    bottom: 20px;
    left: 1%;
    background-image:
        radial-gradient(var(--crs-orange) 2px, transparent 2px);
    animation-delay: -3s;
}

/* =========================================
   Animations
========================================= */

@keyframes crsHeadingLine {
    from {
        left: -30px;
    }

    to {
        left: 100%;
    }
}

@keyframes crsHeadingKey {
    0%,
    100% {
        transform: rotate(-35deg) translateY(0);
    }

    50% {
        transform: rotate(-25deg) translateY(-5px);
    }
}

@keyframes crsContentCircle {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes crsKeyFloat {
    0%,
    100% {
        transform: rotate(9deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-11px);
    }
}

@keyframes crsKeyLight {
    0%,
    100% {
        opacity: 0.55;
        box-shadow: 0 0 7px rgba(255, 121, 37, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 16px rgba(255, 121, 37, 0.75);
    }
}

@keyframes crsShapeFloat {
    0%,
    100% {
        margin-top: 0;
        transform: rotate(30deg);
    }

    50% {
        margin-top: -22px;
        transform: rotate(52deg);
    }
}

@keyframes crsDotsFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-17px);
    }
}

@keyframes crsBoxCircle {
    from {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.15);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {
    .crs-content {
        padding: 42px 32px;
    }

    .crs-content h2 {
        font-size: 43px;
    }

    .crs-services-box {
        padding: 48px 30px 38px;
    }

    .crs-services-list li {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .crs-section {
        padding: 90px 0;
    }

    .crs-content,
    .crs-services-box {
        max-width: 760px;
        margin: 0 auto;
    }

    .crs-content {
        padding: 48px 42px;
    }

    .crs-services-box {
        min-height: auto;
        padding: 52px 42px 42px;
    }
}

@media (max-width: 767.98px) {
    .crs-content {
        padding: 42px 28px;
    }

    .crs-content h2 {
        font-size: 39px;
    }

    .crs-services-box {
        padding: 45px 25px 34px;
        border-radius: 32px 7px 32px 7px;
    }

    .crs-services-box h3 {
        padding-right: 70px;
    }

    .crs-services-list {
        gap: 11px;
    }
}

@media (max-width: 575.98px) {
    .crs-section {
        padding: 70px 0;
    }

    .crs-content {
        padding: 38px 23px;
        border-radius: 7px 32px 7px 32px;
    }

    .crs-content h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .crs-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .crs-services-box {
        padding: 40px 17px 28px;
    }

    .crs-services-box h3 {
        margin-bottom: 25px;
        font-size: 21px;
    }

    .crs-services-list li {
        padding-right: 9px;
        font-size: 13px;
    }

    .crs-key-decoration {
        top: 17px;
        right: 20px;
        transform: scale(0.8) rotate(9deg);
    }

    .crs-shape,
    .crs-dots {
        display: none;
    }
}

@media (max-width: 390px) {
    .crs-content h2 {
        font-size: 30px;
    }

    .crs-services-box h3 {
        max-width: 230px;
        padding-right: 45px;
    }

    .crs-key-decoration {
        right: 10px;
        transform: scale(0.7) rotate(9deg);
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .crs-section *,
    .crs-section *::before,
    .crs-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================
   Mobile Key Rescue Section
========================================= */

.key-rescue-section {
    --kr-dark: #050d16;
    --kr-navy: #07192b;
    --kr-navy-two: #0c2943;
    --kr-blue: #1678e5;
    --kr-blue-light: #48a2ff;
    --kr-orange: #ff7925;
    --kr-orange-dark: #db5509;
    --kr-white: #ffffff;
    --kr-text: #bac9d6;
    --kr-border: rgba(255, 255, 255, 0.1);

    position: relative;
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            135deg,
            rgba(2, 8, 16, 0.94) 0%,
            rgba(5, 13, 22, 0.267) 45%,
            rgba(7, 25, 43, 0.91) 100%
        ),
        url("../carkey/car-key-bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.key-rescue-section .container {
    position: relative;
    z-index: 5;
}

/* Background Grid */

.key-rescue-grid {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.8) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 1px
        );

    background-size: 58px 58px;
    animation: keyRescueGrid 20s linear infinite;
}

/* Main Shell */

.key-rescue-shell {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(15, 43, 69, 0.91),
            rgba(5, 18, 31, 0.95)
        );

    border: 1px solid var(--kr-border);
    border-radius: 48px 10px 48px 10px;

    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.key-rescue-shell::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 41.666667%;
    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(72, 162, 255, 0.5),
            rgba(255, 121, 37, 0.5),
            transparent
        );
}

.key-rescue-shell::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 41.666667%;
    width: 11px;
    height: 90px;

    background:
        linear-gradient(
            var(--kr-blue),
            var(--kr-orange)
        );

    border-radius: 10px;

    box-shadow:
        0 0 25px rgba(72, 162, 255, 0.35),
        0 0 25px rgba(255, 121, 37, 0.25);

    transform: translate(-50%, -50%);
    animation: keyRescueDivider 4s ease-in-out infinite;
}

/* =========================================
   Left Side
========================================= */

.key-rescue-lost {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 770px;
    padding: 70px 48px 60px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 0 100%,
            rgba(22, 120, 229, 0.2),
            transparent 35%
        ),
        rgba(2, 12, 22, 0.38);
}

.key-rescue-lost::before {
    content: "";
    position: absolute;
    top: -110px;
    left: -110px;
    width: 260px;
    height: 260px;

    border: 35px solid rgba(72, 162, 255, 0.04);
    border-radius: 50%;

    animation: keyRescueRotate 14s linear infinite;
}

.key-rescue-lost::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 55px;
    height: 55px;

    border-right: 3px solid var(--kr-blue-light);
    border-bottom: 3px solid var(--kr-blue-light);
}

/* Label */

.key-rescue-label {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 32px;
}

.key-rescue-label-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    color: var(--kr-white);

    background:
        linear-gradient(
            145deg,
            var(--kr-orange),
            var(--kr-orange-dark)
        );

    border: 7px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;

    box-shadow:
        0 15px 30px rgba(255, 121, 37, 0.22),
        0 0 0 8px rgba(255, 121, 37, 0.06);

    font-size: 24px;
    animation: keyRescueKeyIcon 3.4s ease-in-out infinite;
}

.key-rescue-label-icon i {
    transform: rotate(-40deg);
}

.key-rescue-label-line {
    position: relative;
    width: 105px;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.key-rescue-label-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -42px;
    width: 42px;
    height: 100%;
    background: var(--kr-orange);
    animation: keyRescueLine 2.3s linear infinite;
}

/* Left Typography */

.key-rescue-lost h2 {
    position: relative;
    z-index: 3;

    margin: 0 0 30px;
    color: var(--kr-white);

    font-size: clamp(39px, 4vw, 58px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2.2px;
}

.key-rescue-lost p {
    position: relative;
    z-index: 3;

    margin: 0 0 22px;
    color: var(--kr-text);

    font-size: 15px;
    line-height: 1.9;
}

.key-rescue-highlight {
    padding: 19px 20px;
    color: #eaf5ff !important;

    background:
        linear-gradient(
            90deg,
            rgba(22, 120, 229, 0.17),
            rgba(22, 120, 229, 0.04)
        );

    border-left: 4px solid var(--kr-blue-light);
    border-radius: 0 15px 15px 0;
}

/* Decorative Key Fob */

.key-rescue-key-fob {
    position: absolute;
    right: -18px;
    bottom: 90px;

    width: 74px;
    height: 128px;
    padding: 43px 14px 13px;

    background:
        linear-gradient(
            145deg,
            #52697b,
            #162838 45%,
            #050b10
        );

    border: 2px solid #728493;
    border-radius: 38px 38px 20px 20px;

    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.45),
        inset 3px 3px 7px rgba(255, 255, 255, 0.08);

    transform: rotate(12deg);
    animation: keyRescueFob 4s ease-in-out infinite;
}

.key-rescue-fob-hole {
    position: absolute;
    top: 10px;
    left: 50%;

    width: 27px;
    height: 15px;

    border: 3px solid #94a4b0;
    border-radius: 50%;

    transform: translateX(-50%);
}

.key-rescue-fob-button {
    display: block;
    width: 100%;
    height: 15px;
    margin-bottom: 7px;

    background: #102437;
    border: 1px solid #52697c;
    border-radius: 10px;
}

.key-rescue-fob-button:nth-child(3) {
    background: var(--kr-orange);
    border-color: var(--kr-orange-dark);
    box-shadow: 0 0 14px rgba(255, 121, 37, 0.5);
}

/* =========================================
   Right Side
========================================= */

.key-rescue-mobile {
    position: relative;
    z-index: 3;

    min-height: 770px;
    padding: 65px 52px 55px;
    overflow: hidden;
}

.key-rescue-mobile::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;

    width: 330px;
    height: 330px;

    border: 46px solid rgba(255, 121, 37, 0.035);
    border-radius: 50%;

    animation: keyRescueRotate 17s linear infinite reverse;
}

.key-rescue-mobile::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -65px;

    width: 190px;
    height: 190px;

    background: rgba(255, 121, 37, 0.045);
    border-radius: 50%;
}

/* Right Heading */

.key-rescue-title-row {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 20px;

    margin-bottom: 27px;
}

.key-rescue-location-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    color: var(--kr-white);

    background:
        linear-gradient(
            145deg,
            var(--kr-blue-light),
            var(--kr-blue)
        );

    border: 7px solid rgba(255, 255, 255, 0.055);
    border-radius: 9px 25px 9px 25px;

    box-shadow:
        0 16px 30px rgba(22, 120, 229, 0.25),
        0 0 0 8px rgba(22, 120, 229, 0.06);

    font-size: 27px;
    animation: keyRescueLocation 3.6s ease-in-out infinite;
}

.key-rescue-title-row h2 {
    margin: 0;
    color: var(--kr-white);

    font-size: clamp(35px, 3.5vw, 51px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -1.9px;
}

.key-rescue-mobile > p {
    position: relative;
    z-index: 3;

    margin: 0 0 24px;
    color: var(--kr-text);

    font-size: 15px;
    line-height: 1.9;
}

/* =========================================
   Equipment Dashboard
========================================= */

.key-rescue-equipment {
    position: relative;
    z-index: 4;

    margin: 27px 0;
    padding: 28px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 25px 7px 25px 7px;

    box-shadow:
        inset 0 0 30px rgba(22, 120, 229, 0.025);
}

.key-rescue-equipment > p {
    margin: 0 0 21px;
    color: var(--kr-white);

    font-size: 20px;
    font-weight: 800;
}

.key-rescue-equipment-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 76px;
    padding: 13px 13px 13px 11px;
    overflow: hidden;

    color: #e5eff7;

    background:
        linear-gradient(
            135deg,
            rgba(16, 52, 82, 0.88),
            rgba(7, 25, 43, 0.82)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px 19px 8px 19px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.key-rescue-equipment-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.07),
            transparent
        );

    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.key-rescue-equipment-item:hover {
    border-color: rgba(72, 162, 255, 0.4);
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.key-rescue-equipment-item:hover::after {
    left: 150%;
}

.key-rescue-item-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    margin-right: 12px;

    color: var(--kr-white);

    background:
        linear-gradient(
            145deg,
            var(--kr-orange),
            var(--kr-orange-dark)
        );

    border-radius: 12px 5px 12px 5px;
    box-shadow: 0 9px 18px rgba(255, 121, 37, 0.2);

    font-size: 14px;
    transition: transform 0.35s ease;
}

.key-rescue-equipment-item:hover .key-rescue-item-icon {
    transform: rotate(7deg) scale(1.07);
}

.key-rescue-number {
    position: absolute;
    top: 3px;
    right: 8px;

    color: rgba(255, 255, 255, 0.07);

    font-size: 29px;
    font-weight: 900;
    line-height: 1;
}

.key-rescue-location-text {
    padding: 19px 21px;
    color: #e9f3fa !important;

    background:
        linear-gradient(
            90deg,
            rgba(255, 121, 37, 0.12),
            rgba(255, 121, 37, 0.025)
        );

    border-left: 4px solid var(--kr-orange);
    border-radius: 0 15px 15px 0;
}

/* =========================================
   Decorative Glows
========================================= */

.key-rescue-glow {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}

.key-rescue-glow-one {
    top: -120px;
    left: 28%;

    width: 310px;
    height: 310px;

    background: rgba(22, 120, 229, 0.08);
}

.key-rescue-glow-two {
    right: 3%;
    bottom: -130px;

    width: 300px;
    height: 300px;

    background: rgba(255, 121, 37, 0.06);
}

.key-rescue-orbit {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    pointer-events: none;
}

.key-rescue-orbit-one {
    top: 55px;
    left: 2%;

    width: 115px;
    height: 115px;

    border: 1px solid rgba(72, 162, 255, 0.22);

    box-shadow:
        inset 0 0 25px rgba(72, 162, 255, 0.05);

    animation: keyRescueOrbit 7s ease-in-out infinite;
}

.key-rescue-orbit-two {
    right: 3%;
    bottom: 55px;

    width: 95px;
    height: 95px;

    border: 15px solid rgba(255, 121, 37, 0.07);

    animation:
        keyRescueOrbit 7s ease-in-out infinite -3.5s;
}

/* =========================================
   Animations
========================================= */

@keyframes keyRescueGrid {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 58px 58px;
    }
}

@keyframes keyRescueLine {
    from {
        left: -42px;
    }

    to {
        left: 100%;
    }
}

@keyframes keyRescueRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes keyRescueKeyIcon {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-9px) rotate(-6deg);
    }
}

@keyframes keyRescueLocation {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes keyRescueFob {
    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-17px) rotate(4deg);
    }
}

@keyframes keyRescueDivider {
    0%,
    100% {
        height: 65px;
        opacity: 0.55;
    }

    50% {
        height: 120px;
        opacity: 1;
    }
}

@keyframes keyRescueOrbit {
    0%,
    100% {
        transform: translateY(0) rotate(0) scale(1);
    }

    50% {
        transform: translateY(-22px) rotate(35deg) scale(1.1);
    }
}

/* =========================================
   Responsive - Large Tablets
========================================= */

@media (max-width: 1199.98px) {
    .key-rescue-lost {
        padding: 60px 36px 52px;
    }

    .key-rescue-mobile {
        padding: 58px 36px 50px;
    }

    .key-rescue-lost h2 {
        font-size: 45px;
    }

    .key-rescue-title-row h2 {
        font-size: 40px;
    }

    .key-rescue-equipment {
        padding: 23px;
    }
}

/* Tablets */

@media (max-width: 991.98px) {
    .key-rescue-section {
        padding: 90px 0;
        background-attachment: scroll;
        background-position: center;
    }

    .key-rescue-shell::before,
    .key-rescue-shell::after {
        display: none;
    }

    .key-rescue-lost,
    .key-rescue-mobile {
        min-height: auto;
    }

    .key-rescue-lost {
        padding: 58px 48px 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .key-rescue-mobile {
        padding: 60px 48px 55px;
    }

    .key-rescue-key-fob {
        right: 30px;
    }
}

/* Mobile Landscape */

@media (max-width: 767.98px) {
    .key-rescue-shell {
        border-radius: 35px 8px 35px 8px;
    }

    .key-rescue-lost,
    .key-rescue-mobile {
        padding-right: 28px;
        padding-left: 28px;
    }

    .key-rescue-lost h2,
    .key-rescue-title-row h2 {
        font-size: 38px;
    }

    .key-rescue-title-row {
        grid-template-columns: 68px 1fr;
        gap: 16px;
    }

    .key-rescue-location-icon {
        width: 65px;
        height: 65px;
        font-size: 23px;
    }

    .key-rescue-key-fob {
        display: none;
    }
}

/* Small Mobile */

@media (max-width: 575.98px) {
    .key-rescue-section {
        padding: 70px 0;

        background:
            linear-gradient(
                rgba(2, 8, 16, 0.94),
                rgba(7, 25, 43, 0.94)
            ),
            url("../carkey/car-key-bg.webp") center / cover no-repeat;
    }

    .key-rescue-lost,
    .key-rescue-mobile {
        padding: 43px 20px 40px;
    }

    .key-rescue-label-icon {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .key-rescue-label-line {
        width: 78px;
    }

    .key-rescue-lost h2,
    .key-rescue-title-row h2 {
        font-size: 32px;
        letter-spacing: -1.2px;
    }

    .key-rescue-lost p,
    .key-rescue-mobile > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .key-rescue-title-row {
        grid-template-columns: 1fr;
    }

    .key-rescue-equipment {
        padding: 18px 14px;
    }

    .key-rescue-equipment-item {
        min-height: 70px;
        font-size: 12px;
    }

    .key-rescue-orbit {
        display: none;
    }
}

/* Very Small Screens */

@media (max-width: 390px) {
    .key-rescue-lost,
    .key-rescue-mobile {
        padding-right: 16px;
        padding-left: 16px;
    }

    .key-rescue-lost h2,
    .key-rescue-title-row h2 {
        font-size: 29px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .key-rescue-section *,
    .key-rescue-section *::before,
    .key-rescue-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   Car Key Gallery - Complete Light Theme
========================================= */

.car-gallery-section {
    --cg-navy: #071624;
    --cg-blue: #1678e5;
    --cg-blue-light: #48a2ff;
    --cg-orange: #ff7925;
    --cg-orange-dark: #db5509;
    --cg-white: #ffffff;
    --cg-heading: #071624;
    --cg-text: #66798a;
    --cg-border: rgba(7, 22, 36, 0.11);

    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(22, 120, 229, 0.12),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(255, 121, 37, 0.11),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f9fd 52%,
            #fff8f3 100%
        );
}

.car-gallery-section .container {
    position: relative;
    z-index: 5;
}

/* =========================================
   Decorative Background
========================================= */

.car-gallery-grid-bg {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.055;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(7, 22, 36, 0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 22, 36, 0.5) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
    animation: carGalleryGrid 22s linear infinite;
}

.car-gallery-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.gallery-glow-one {
    top: -170px;
    left: -100px;
    width: 390px;
    height: 390px;
    background: rgba(22, 120, 229, 0.1);
}

.gallery-glow-two {
    right: -130px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    background: rgba(255, 121, 37, 0.09);
}

/* =========================================
   Heading
========================================= */

.car-gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 48px;
}

.car-gallery-heading-content {
    max-width: 760px;
}

.car-gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;

    color: var(--cg-orange);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.car-gallery-subtitle i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: var(--cg-white);

    background:
        linear-gradient(
            145deg,
            var(--cg-orange),
            var(--cg-orange-dark)
        );

    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(255, 121, 37, 0.25);
    transform: rotate(-35deg);
}

.car-gallery-heading h2 {
    max-width: 700px;
    margin: 0 0 17px;

    color: var(--cg-heading);

    font-size: clamp(37px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2.3px;
}

.car-gallery-heading p {
    max-width: 650px;
    margin: 0;

    color: var(--cg-text);

    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   Slider Controls
========================================= */

.car-gallery-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.car-gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    padding: 0;

    color: var(--cg-heading);
    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(7, 22, 36, 0.12);
    border-radius: 18px 6px 18px 6px;

    box-shadow:
        0 15px 35px rgba(7, 22, 36, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    cursor: pointer;
    font-size: 16px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.car-gallery-arrow:hover {
    color: var(--cg-white);

    background:
        linear-gradient(
            145deg,
            var(--cg-orange),
            var(--cg-orange-dark)
        );

    border-color: transparent;
    box-shadow: 0 16px 30px rgba(255, 121, 37, 0.25);
    transform: translateY(-5px);
}

/* =========================================
   Slider
========================================= */

.car-gallery-slider {
    width: calc(100% + 20px);
    margin: -10px;
    padding: 10px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.33);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 35px 8px 35px 8px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(5px);
}

.car-gallery-track {
    display: flex;
    margin: 0 -10px;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}

.car-gallery-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding: 0 10px;
}

.car-gallery-card {
    position: relative;
    display: block;

    width: 100%;
    height: 460px;
    padding: 0;
    overflow: hidden;

    text-align: left;
    background: var(--cg-white);

    border: 1px solid rgba(7, 22, 36, 0.1);
    border-radius: 32px 7px 32px 7px;

    box-shadow:
        0 25px 55px rgba(7, 22, 36, 0.14),
        0 4px 12px rgba(7, 22, 36, 0.05);

    cursor: pointer;

    transition:
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.car-gallery-card:hover {
    box-shadow:
        0 32px 65px rgba(7, 22, 36, 0.2),
        0 12px 30px rgba(22, 120, 229, 0.1);

    transform: translateY(-7px);
}

.car-gallery-card::before {
    content: "";

    position: absolute;
    z-index: 3;
    top: 0;
    left: -130%;

    width: 75%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.17),
            transparent
        );

    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.car-gallery-card:hover::before {
    left: 150%;
}

.car-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.car-gallery-card:hover img {
    filter: brightness(0.83);
    transform: scale(1.1);
}

/* =========================================
   Image Overlay
========================================= */

.car-gallery-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;

    display: flex;
    align-items: flex-end;
    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(3, 13, 24, 0.96) 0%,
            rgba(3, 13, 24, 0.58) 39%,
            rgba(3, 13, 24, 0.06) 75%
        );

    pointer-events: none;
}

.car-gallery-number {
    position: absolute;
    top: 22px;
    left: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 53px;
    height: 53px;

    color: var(--cg-white);
    background: rgba(7, 22, 36, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px 5px 16px 5px;

    box-shadow: 0 10px 25px rgba(7, 22, 36, 0.2);
    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 900;
}

.car-gallery-number::after {
    content: "";

    position: absolute;
    right: -5px;
    bottom: -5px;

    width: 17px;
    height: 17px;

    background: var(--cg-orange);
    border: 4px solid var(--cg-white);
    border-radius: 50%;
}

.car-gallery-info {
    display: block;
    max-width: calc(100% - 65px);

    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.car-gallery-card:hover .car-gallery-info {
    transform: translateY(0);
}

.car-gallery-info small {
    display: block;
    margin-bottom: 7px;

    color: var(--cg-orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.car-gallery-info strong {
    display: block;

    color: var(--cg-white);

    font-size: 22px;
    font-weight: 850;
    line-height: 1.2;
}

.car-gallery-view {
    position: absolute;
    right: 25px;
    bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 49px;
    height: 49px;

    color: var(--cg-white);

    background:
        linear-gradient(
            145deg,
            var(--cg-blue-light),
            var(--cg-blue)
        );

    border-radius: 50%;
    box-shadow: 0 12px 25px rgba(22, 120, 229, 0.35);

    transform: scale(0.82);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.car-gallery-card:hover .car-gallery-view {
    background:
        linear-gradient(
            145deg,
            var(--cg-orange),
            var(--cg-orange-dark)
        );

    transform: scale(1) rotate(8deg);
}

/* =========================================
   Progress Area
========================================= */

.car-gallery-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.car-gallery-progress {
    position: relative;
    flex: 1;

    height: 4px;
    overflow: hidden;

    background: rgba(7, 22, 36, 0.12);
    border-radius: 20px;
}

.car-gallery-progress-bar {
    display: block;

    width: 10%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--cg-blue-light),
            var(--cg-orange)
        );

    border-radius: inherit;
    box-shadow: 0 0 15px rgba(255, 121, 37, 0.35);

    transition: width 0.6s ease;
}

.car-gallery-counter {
    display: flex;
    align-items: baseline;
    gap: 8px;

    min-width: 85px;

    color: var(--cg-text);

    font-size: 14px;
}

.car-gallery-counter strong {
    color: var(--cg-heading);
    font-size: 25px;
    font-weight: 900;
}

/* =========================================
   Gallery Lightbox
========================================= */

.car-gallery-lightbox {
    position: fixed;
    z-index: 99999;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;

    visibility: hidden;
    opacity: 0;

    background: rgba(1, 7, 14, 0.94);
    backdrop-filter: blur(16px);

    transition:
        visibility 0.35s ease,
        opacity 0.35s ease;
}

.car-gallery-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.car-lightbox-content {
    width: min(100%, 1000px);
    max-width: 1000px;

    text-align: center;

    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.car-gallery-lightbox.active .car-lightbox-content {
    transform: scale(1);
}

.car-lightbox-content img {
    display: block;

    width: 100%;
    max-height: 75vh;
    object-fit: contain;

    background: #030a12;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px 7px 30px 7px;

    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}

.car-lightbox-content h3 {
    margin: 22px 0 0;

    color: var(--cg-white);

    font-size: 24px;
    font-weight: 800;
}

.car-lightbox-close,
.car-lightbox-arrow {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--cg-white);
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.16);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.car-lightbox-close:hover,
.car-lightbox-arrow:hover {
    background: var(--cg-orange);
    border-color: var(--cg-orange);
}

.car-lightbox-close {
    top: 25px;
    right: 25px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    font-size: 22px;
}

.car-lightbox-close:hover {
    transform: scale(1.08) rotate(8deg);
}

.car-lightbox-arrow {
    top: 50%;

    width: 58px;
    height: 58px;

    border-radius: 18px 5px 18px 5px;

    font-size: 19px;
    transform: translateY(-50%);
}

.car-lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.car-lightbox-prev {
    left: 25px;
}

.car-lightbox-next {
    right: 25px;
}

/* =========================================
   Animation
========================================= */

@keyframes carGalleryGrid {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

/* =========================================
   Responsive - Tablets
========================================= */

@media (max-width: 991.98px) {
    .car-gallery-section {
        padding: 90px 0;
    }

    .car-gallery-slide {
        flex-basis: 50%;
        width: 50%;
    }

    .car-gallery-card {
        height: 420px;
    }
}

/* =========================================
   Responsive - Mobile Landscape
========================================= */

@media (max-width: 767.98px) {
    .car-gallery-heading {
        display: block;
    }

    .car-gallery-controls {
        margin-top: 28px;
    }

    .car-gallery-heading h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .car-gallery-card {
        height: 390px;
    }

    .car-lightbox-arrow {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .car-lightbox-arrow:hover {
        transform: scale(1.08);
    }

    .car-lightbox-prev {
        left: calc(50% - 70px);
    }

    .car-lightbox-next {
        right: calc(50% - 70px);
    }
}

/* =========================================
   Responsive - Small Mobile
========================================= */

@media (max-width: 575.98px) {
    .car-gallery-section {
        padding: 70px 0;

        background:
            radial-gradient(
                circle at 15% 10%,
                rgba(22, 120, 229, 0.1),
                transparent 30%
            ),
            radial-gradient(
                circle at 90% 90%,
                rgba(255, 121, 37, 0.09),
                transparent 30%
            ),
            linear-gradient(
                160deg,
                #ffffff,
                #f3f8fc 60%,
                #fff7f1
            );
    }

    .car-gallery-slide {
        flex-basis: 100%;
        width: 100%;
    }

    .car-gallery-heading h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .car-gallery-heading p {
        font-size: 14px;
    }

    .car-gallery-card {
        height: 420px;
    }

    .car-gallery-overlay {
        padding: 24px;
    }

    .car-gallery-info strong {
        font-size: 20px;
    }

    .car-gallery-footer {
        gap: 18px;
    }

    .car-gallery-slider {
        width: calc(100% + 14px);
        margin: -7px;
        padding: 7px;
    }

    .car-gallery-lightbox {
        padding: 18px;
    }

    .car-lightbox-close {
        top: 16px;
        right: 16px;

        width: 45px;
        height: 45px;
    }
}

/* =========================================
   Responsive - Very Small Screens
========================================= */

@media (max-width: 390px) {
    .car-gallery-card {
        height: 360px;
    }

    .car-gallery-heading h2 {
        font-size: 30px;
    }

    .car-gallery-arrow {
        width: 52px;
        height: 52px;
    }

    .car-gallery-overlay {
        padding: 20px;
    }

    .car-gallery-info strong {
        font-size: 18px;
    }

    .car-gallery-view {
        right: 20px;
        bottom: 22px;

        width: 44px;
        height: 44px;
    }
}

/* =========================================
   Reduced Motion
========================================= */

@media (prefers-reduced-motion: reduce) {
    .car-gallery-section *,
    .car-gallery-section *::before,
    .car-gallery-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================
   Animated Car Keys Background
========================================= */

.car-keys-background {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-car-key {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(22, 120, 229, 0.13);

    font-size: 52px;
    filter: drop-shadow(0 12px 18px rgba(7, 22, 36, 0.08));

    transform-origin: center;
    will-change: transform;
}

.floating-car-key .fa-car-side {
    font-size: 28px;
    color: rgba(255, 121, 37, 0.15);
}

.floating-car-key .fa-key {
    animation: carKeySwing 2.8s ease-in-out infinite;
}

/* Individual Key Positions */

.key-one {
    top: 8%;
    left: 3%;
    font-size: 62px;
    animation: carKeyFloatOne 9s ease-in-out infinite;
}

.key-two {
    top: 19%;
    right: 5%;
    color: rgba(255, 121, 37, 0.13);
    font-size: 72px;
    animation: carKeyFloatTwo 11s ease-in-out infinite;
}

.key-three {
    bottom: 12%;
    left: 4%;
    font-size: 58px;
    animation: carKeyFloatThree 10s ease-in-out infinite;
}

.key-four {
    right: 2%;
    bottom: 17%;
    color: rgba(22, 120, 229, 0.12);
    font-size: 65px;
    animation: carKeyFloatOne 12s ease-in-out infinite reverse;
}

.key-five {
    top: 49%;
    left: 17%;
    color: rgba(255, 121, 37, 0.09);
    font-size: 45px;
    animation: carKeyFloatTwo 8s ease-in-out infinite;
}

.key-six {
    top: 44%;
    right: 16%;
    font-size: 49px;
    opacity: 0.75;
    animation: carKeyFloatThree 9.5s ease-in-out infinite reverse;
}

/* Key Animations */

@keyframes carKeyFloatOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-18deg);
    }

    35% {
        transform: translate3d(20px, -28px, 0) rotate(-7deg);
    }

    70% {
        transform: translate3d(-10px, 18px, 0) rotate(-25deg);
    }
}

@keyframes carKeyFloatTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(20deg);
    }

    40% {
        transform: translate3d(-24px, 25px, 0) rotate(8deg);
    }

    75% {
        transform: translate3d(12px, -18px, 0) rotate(28deg);
    }
}

@keyframes carKeyFloatThree {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
    }

    50% {
        transform: translate3d(15px, -32px, 0) rotate(12deg) scale(1.08);
    }
}

@keyframes carKeySwing {
    0%,
    100% {
        transform: rotate(-7deg);
    }

    50% {
        transform: rotate(9deg);
    }
}

/* Keep Gallery Content Above Keys */

.car-gallery-section .container {
    position: relative;
    z-index: 5;
}

/* Responsive */

@media (max-width: 767.98px) {
    .floating-car-key {
        font-size: 42px;
        opacity: 0.75;
    }

    .floating-car-key .fa-car-side {
        font-size: 22px;
    }

    .key-five,
    .key-six {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .key-one {
        top: 4%;
        left: -10px;
    }

    .key-two {
        top: 25%;
        right: -15px;
    }

    .key-three {
        bottom: 7%;
        left: -15px;
    }

    .key-four {
        right: -20px;
        bottom: 30%;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .floating-car-key,
    .floating-car-key .fa-key {
        animation: none !important;
    }
}


/* =========================================
   Solutions for Modern Vehicle Keys
========================================= */

.modern-vehicle-keys {
    --mvk-navy: #071624;
    --mvk-navy-light: #102b43;
    --mvk-blue: #1678e5;
    --mvk-blue-light: #4ca7ff;
    --mvk-orange: #ff7925;
    --mvk-orange-dark: #d9570b;
    --mvk-white: #ffffff;
    --mvk-light: #f4f9fd;
    --mvk-text: #607487;
    --mvk-border: rgba(7, 22, 36, 0.11);

    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(244, 249, 253, 0.94) 45%,
            rgba(255, 248, 243, 0.84) 100%
        ),
        radial-gradient(
            circle at 7% 12%,
            rgba(22, 120, 229, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 93% 88%,
            rgba(255, 121, 37, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f9fd 52%,
            #fff8f3 100%
        ),
        url("../carkey/modern-vehicle-keys-bg.jpg") center / cover no-repeat;
}

.modern-vehicle-keys .container {
    position: relative;
    z-index: 5;
}

/* Background Shapes */

.mvk-background {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.mvk-background::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -150px;
    width: 410px;
    height: 410px;
    border: 75px solid rgba(22, 120, 229, 0.055);
    border-radius: 50%;
    animation: mvkBackgroundSpin 24s linear infinite;
}

.mvk-background::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -190px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(255, 121, 37, 0.06);
    border-radius: 42% 58% 54% 46%;
    animation: mvkBackgroundSpin 28s linear infinite reverse;
}

.mvk-line {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(22, 120, 229, 0.12);
    transform: rotate(45deg);
}

.mvk-line-one {
    top: 15%;
    right: 8%;
    border-radius: 45px;
    animation: mvkLineMove 9s ease-in-out infinite;
}

.mvk-line-two {
    bottom: 8%;
    left: 10%;
    border-color: rgba(255, 121, 37, 0.1);
    border-radius: 50%;
    animation: mvkLineMove 11s ease-in-out infinite reverse;
}

/* Main Wrapper */

.mvk-wrapper {
    position: relative;
    padding: 65px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50px 10px 50px 10px;
    box-shadow:
        0 35px 80px rgba(7, 22, 36, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.mvk-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 65px;
    width: 120px;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--mvk-blue),
        var(--mvk-orange)
    );
    border-radius: 0 0 10px 10px;
}

/* Text Content */

.mvk-content {
    position: relative;
}

.mvk-content h2 {
    margin: 0 0 24px;
    color: var(--mvk-navy);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -2.3px;
}

.mvk-content p {
    margin: 0 0 22px;
    color: var(--mvk-text);
    font-size: 16px;
    line-height: 1.85;
}

.mvk-content p:nth-of-type(2) {
    margin-bottom: 17px;
    color: var(--mvk-navy);
    font-weight: 800;
}

/* Services List */

.mvk-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.mvk-services li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 61px;
    padding: 10px 15px 10px 10px;
    overflow: hidden;
    color: var(--mvk-navy);
    background: var(--mvk-white);
    border: 1px solid var(--mvk-border);
    border-radius: 17px 5px 17px 5px;
    box-shadow: 0 10px 25px rgba(7, 22, 36, 0.06);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.mvk-services li::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -32px;
    bottom: -36px;
    width: 70px;
    height: 70px;
    background: rgba(22, 120, 229, 0.06);
    border-radius: 50%;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.mvk-services li:hover {
    color: var(--mvk-blue);
    border-color: rgba(22, 120, 229, 0.24);
    box-shadow: 0 17px 34px rgba(22, 120, 229, 0.12);
    transform: translateY(-5px);
}

.mvk-services li:hover::after {
    background: rgba(255, 121, 37, 0.11);
    transform: scale(1.35);
}

.mvk-services li span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--mvk-white);
    background: linear-gradient(
        145deg,
        var(--mvk-blue-light),
        var(--mvk-blue)
    );
    border-radius: 12px 4px 12px 4px;
    box-shadow: 0 9px 18px rgba(22, 120, 229, 0.23);
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.mvk-services li:hover span {
    background: linear-gradient(
        145deg,
        var(--mvk-orange),
        var(--mvk-orange-dark)
    );
    transform: rotate(-8deg);
}

.mvk-services li span i {
    font-size: 14px;
    transform: rotate(-38deg);
}

/* Image Area */

.mvk-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvk-image-frame {
    position: relative;
    z-index: 2;
    width: 86%;
    height: 500px;
    padding: 10px;
    overflow: hidden;
    background: var(--mvk-white);
    border: 1px solid rgba(7, 22, 36, 0.1);
    border-radius: 45px 8px 45px 8px;
    box-shadow:
        0 35px 65px rgba(7, 22, 36, 0.2),
        18px 18px 0 rgba(22, 120, 229, 0.08);
    transform: rotate(2deg);
    transition:
        box-shadow 0.45s ease,
        transform 0.45s ease;
}

.mvk-image-frame:hover {
    box-shadow:
        0 42px 75px rgba(7, 22, 36, 0.24),
        22px 22px 0 rgba(255, 121, 37, 0.1);
    transform: rotate(0) translateY(-7px);
}

.mvk-image-frame::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 10px;
    background:
        linear-gradient(
            to top,
            rgba(7, 22, 36, 0.42),
            transparent 50%
        );
    border-radius: 36px 5px 36px 5px;
    pointer-events: none;
}

.mvk-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px 5px 36px 5px;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mvk-image-frame:hover img {
    transform: scale(1.07);
}

/* Smart Key Fob Shape */

.mvk-smart-fob {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 104px;
    min-height: 195px;
    padding: 30px 20px 20px;
    background:
        linear-gradient(
            155deg,
            #1a344a 0%,
            #071624 55%,
            #030b12 100%
        );
    border: 5px solid var(--mvk-white);
    border-radius: 49px 49px 35px 35px;
    box-shadow:
        0 30px 55px rgba(7, 22, 36, 0.33),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: mvkFobFloat 5s ease-in-out infinite;
}

.mvk-smart-fob::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 34px;
    height: 42px;
    border: 9px solid #0d2335;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    transform: translateX(-50%);
}

.mvk-fob-light {
    width: 9px;
    height: 9px;
    margin-bottom: 3px;
    background: var(--mvk-orange);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px rgba(255, 121, 37, 0.1),
        0 0 18px rgba(255, 121, 37, 0.75);
    animation: mvkFobLight 1.8s ease-in-out infinite;
}

.mvk-fob-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 35px;
    color: var(--mvk-white);
    background: linear-gradient(145deg, #1a3850, #0b1d2c);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* Signal Shapes */

.mvk-signal {
    position: absolute;
    z-index: 1;
    top: 65px;
    right: 30px;
    border: 3px solid var(--mvk-orange);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transform: rotate(-45deg);
    animation: mvkSignal 2.4s ease-out infinite;
}

.mvk-signal-one {
    width: 35px;
    height: 35px;
}

.mvk-signal-two {
    width: 60px;
    height: 60px;
    animation-delay: 0.6s;
}

.mvk-signal-three {
    width: 85px;
    height: 85px;
    animation-delay: 1.2s;
}

/* Orbit Shapes */

.mvk-orbit {
    position: absolute;
    border: 1px dashed rgba(22, 120, 229, 0.22);
    border-radius: 50%;
    animation: mvkOrbitRotate 18s linear infinite;
}

.mvk-orbit::after {
    content: "";
    position: absolute;
    top: 13%;
    right: 10%;
    width: 14px;
    height: 14px;
    background: var(--mvk-orange);
    border: 4px solid var(--mvk-white);
    border-radius: 50%;
    box-shadow: 0 7px 16px rgba(255, 121, 37, 0.25);
}

.mvk-orbit-one {
    width: 520px;
    height: 520px;
}

.mvk-orbit-two {
    width: 450px;
    height: 450px;
    border-color: rgba(255, 121, 37, 0.16);
    animation-duration: 23s;
    animation-direction: reverse;
}

/* Floating Background Keys */

.mvk-floating-key {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(22, 120, 229, 0.12);
    filter: drop-shadow(0 12px 18px rgba(7, 22, 36, 0.07));
}

.mvk-floating-key .fa-car-side {
    color: rgba(255, 121, 37, 0.15);
    font-size: 30px;
}

.mvk-key-one {
    top: 8%;
    left: 3%;
    font-size: 68px;
    animation: mvkKeyFloatOne 9s ease-in-out infinite;
}

.mvk-key-two {
    top: 21%;
    right: 3%;
    font-size: 55px;
    animation: mvkKeyFloatTwo 11s ease-in-out infinite;
}

.mvk-key-three {
    bottom: 9%;
    left: 7%;
    color: rgba(255, 121, 37, 0.1);
    font-size: 60px;
    animation: mvkKeyFloatOne 10s ease-in-out infinite reverse;
}

/* Animations */

@keyframes mvkBackgroundSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mvkLineMove {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(45deg);
    }

    50% {
        transform: translate3d(20px, -25px, 0) rotate(58deg);
    }
}

@keyframes mvkOrbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mvkFobFloat {
    0%,
    100% {
        transform: translateY(0) rotate(7deg);
    }

    50% {
        transform: translateY(-18px) rotate(2deg);
    }
}

@keyframes mvkFobLight {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes mvkSignal {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0.55);
    }

    45% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
        transform: rotate(-45deg) scale(1.2);
    }
}

@keyframes mvkKeyFloatOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-18deg);
    }

    50% {
        transform: translate3d(18px, -30px, 0) rotate(-4deg);
    }
}

@keyframes mvkKeyFloatTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(18deg);
    }

    50% {
        transform: translate3d(-25px, 24px, 0) rotate(5deg);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .mvk-wrapper {
        padding: 50px 40px;
    }

    .mvk-image-frame {
        width: 88%;
        height: 460px;
    }

    .mvk-visual {
        min-height: 520px;
    }

    .mvk-orbit-one {
        width: 470px;
        height: 470px;
    }

    .mvk-orbit-two {
        width: 405px;
        height: 405px;
    }
}

@media (max-width: 991.98px) {
    .modern-vehicle-keys {
        padding: 85px 0;
    }

    .mvk-wrapper {
        padding: 48px 35px;
    }

    .mvk-visual {
        margin-top: 15px;
    }

    .mvk-image-frame {
        width: 82%;
    }
}

@media (max-width: 767.98px) {
    .modern-vehicle-keys {
        padding: 70px 0;
    }

    .mvk-wrapper {
        padding: 40px 25px;
        border-radius: 35px 8px 35px 8px;
    }

    .mvk-content h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .mvk-services {
        grid-template-columns: 1fr;
    }

    .mvk-visual {
        min-height: 480px;
    }

    .mvk-image-frame {
        width: 90%;
        height: 430px;
    }

    .mvk-smart-fob {
        right: 2px;
        transform-origin: center;
    }

    .mvk-key-two {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .modern-vehicle-keys {
        padding: 55px 0;
    }

    .mvk-wrapper {
        padding: 34px 18px;
    }

    .mvk-wrapper::before {
        left: 28px;
        width: 90px;
    }

    .mvk-content h2 {
        font-size: 34px;
        letter-spacing: -1.1px;
    }

    .mvk-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .mvk-visual {
        min-height: 415px;
    }

    .mvk-image-frame {
        width: 96%;
        height: 370px;
        border-radius: 30px 6px 30px 6px;
    }

    .mvk-image-frame img,
    .mvk-image-frame::after {
        border-radius: 23px 4px 23px 4px;
    }

    .mvk-smart-fob {
        right: -5px;
        bottom: 4px;
        width: 82px;
        min-height: 158px;
        padding: 24px 14px 14px;
        border-width: 4px;
    }

    .mvk-fob-button {
        width: 39px;
        height: 28px;
    }

    .mvk-orbit-one {
        width: 390px;
        height: 390px;
    }

    .mvk-orbit-two {
        width: 325px;
        height: 325px;
    }

    .mvk-key-one,
    .mvk-key-three {
        font-size: 44px;
    }
}

@media (max-width: 390px) {
    .mvk-wrapper {
        padding-inline: 15px;
    }

    .mvk-content h2 {
        font-size: 30px;
    }

    .mvk-services li {
        font-size: 13px;
    }

    .mvk-visual {
        min-height: 365px;
    }

    .mvk-image-frame {
        height: 325px;
    }

    .mvk-smart-fob {
        transform: scale(0.88);
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .modern-vehicle-keys *,
    .modern-vehicle-keys *::before,
    .modern-vehicle-keys *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================
   Simple Spare Key Section
========================================= */

.simple-spare-section {
    --simple-navy: #071624;
    --simple-blue: #1678e5;
    --simple-orange: #ff7925;
    --simple-white: #ffffff;
    --simple-light: #f5f9fc;
    --simple-text: #607487;
    --simple-border: #e2eaf0;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #f5f9fc 0%,
            #ffffff 50%,
            #fff8f3 100%
        );
}

.simple-spare-wrapper {
    position: relative;

    max-width: 1050px;
    margin: 0 auto;
    padding: 65px;

    text-align: center;

    background: var(--simple-white);
    border: 1px solid var(--simple-border);
    border-radius: 30px;

    box-shadow:
        0 20px 55px rgba(7, 22, 36, 0.09);
}

/* Top Heading */

.simple-spare-heading {
    max-width: 800px;
    margin: 0 auto;
}

.simple-spare-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;
    margin-bottom: 18px;

    color: var(--simple-white);

    background:
        linear-gradient(
            135deg,
            var(--simple-orange),
            #e55c0a
        );

    border-radius: 50%;

    box-shadow:
        0 12px 25px rgba(255, 121, 37, 0.25);
}

.simple-spare-icon i {
    font-size: 27px;
    transform: rotate(-35deg);
}

.simple-spare-label {
    display: block;
    margin-bottom: 12px;

    color: var(--simple-blue);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.simple-spare-heading h2 {
    margin: 0 0 20px;

    color: var(--simple-navy);

    font-size: clamp(36px, 5vw, 54px);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.simple-spare-heading p {
    margin: 0;

    color: var(--simple-text);

    font-size: 16px;
    line-height: 1.8;
}

/* List Title */

.simple-list-title {
    margin: 38px 0 20px;

    color: var(--simple-navy);

    font-size: 20px;
    font-weight: 800;
}

/* Benefits */

.simple-spare-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;

    max-width: 880px;
    margin: 0 auto;
    padding: 0;

    list-style: none;
}

.simple-spare-benefits li {
    display: flex;
    align-items: center;
    gap: 11px;

    flex: 0 0 calc(33.333% - 9px);
    min-height: 64px;
    padding: 12px 16px;

    color: var(--simple-navy);
    background: var(--simple-light);

    border: 1px solid var(--simple-border);
    border-radius: 13px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.simple-spare-benefits li:hover {
    background: var(--simple-white);
    border-color: rgba(22, 120, 229, 0.35);
    transform: translateY(-3px);
}

.simple-check {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    color: var(--simple-white);
    background: var(--simple-blue);
    border-radius: 50%;

    font-size: 12px;
}

/* Bottom Note */

.simple-spare-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    max-width: 790px;
    margin: 35px auto 0;
    padding: 17px 24px;

    color: var(--simple-white);
    background: var(--simple-navy);

    border-radius: 13px;
}

.simple-spare-note i {
    flex: 0 0 auto;

    color: var(--simple-orange);

    font-size: 20px;
}

.simple-spare-note p {
    margin: 0;

    color: var(--simple-white);

    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

/* Responsive */

@media (max-width: 991.98px) {
    .simple-spare-wrapper {
        padding: 55px 40px;
    }

    .simple-spare-benefits li {
        flex-basis: calc(50% - 6px);
    }
}

@media (max-width: 767.98px) {
    .simple-spare-section {
        padding: 70px 0;
    }

    .simple-spare-wrapper {
        padding: 45px 25px;
        border-radius: 22px;
    }

    .simple-spare-heading h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }
}

@media (max-width: 575.98px) {
    .simple-spare-section {
        padding: 50px 0;
    }

    .simple-spare-wrapper {
        padding: 38px 17px;
    }

    .simple-spare-icon {
        width: 62px;
        height: 62px;
    }

    .simple-spare-icon i {
        font-size: 23px;
    }

    .simple-spare-heading h2 {
        font-size: 31px;
    }

    .simple-spare-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .simple-spare-benefits li {
        flex-basis: 100%;
    }

    .simple-spare-note {
        align-items: flex-start;
        padding: 16px 18px;
    }

    .simple-spare-note p {
        font-size: 14px;
    }
}


/* =========================================
   Why Choose Car Keys Section
========================================= */

.why-car-keys-section {
    --why-navy: #071624;
    --why-navy-light: #102d45;
    --why-blue: #1678e5;
    --why-blue-light: #50a8ff;
    --why-orange: #ff7925;
    --why-orange-dark: #df5c0b;
    --why-white: #ffffff;
    --why-light: #f3f8fc;
    --why-text: #607487;

    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            rgba(7, 22, 36, 0.9),
            rgba(7, 22, 36, 0.94)
        ),
        url("../carkey/modern-vehicle-keys-bg.jpg") center / cover no-repeat;
}

.why-car-keys-section .container {
    position: relative;
    z-index: 3;
}

/* =========================================
   Background Shapes
========================================= */

.why-car-keys-bg {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-shape {
    position: absolute;
    border-radius: 50%;
}

.why-shape-one {
    top: -230px;
    left: -190px;

    width: 510px;
    height: 510px;

    border: 75px solid rgba(22, 120, 229, 0.08);

    animation: whyShapeRotate 26s linear infinite;
}

.why-shape-two {
    right: -250px;
    bottom: -260px;

    width: 560px;
    height: 560px;

    border: 90px solid rgba(255, 121, 37, 0.07);

    animation: whyShapeRotate 31s linear infinite reverse;
}

.why-shape-three {
    top: 40%;
    left: 50%;

    width: 730px;
    height: 730px;

    border: 1px dashed rgba(255, 255, 255, 0.08);

    transform: translate(-50%, -50%);

    animation: whyCenterRotate 40s linear infinite;
}

.why-floating-icon {
    position: absolute;

    color: rgba(255, 255, 255, 0.07);

    filter:
        drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

.why-icon-one {
    top: 15%;
    left: 4%;

    font-size: 70px;

    animation: whyIconFloatOne 9s ease-in-out infinite;
}

.why-icon-two {
    top: 11%;
    right: 6%;

    color: rgba(255, 121, 37, 0.09);
    font-size: 65px;

    animation: whyIconFloatTwo 11s ease-in-out infinite;
}

.why-icon-three {
    right: 5%;
    bottom: 28%;

    color: rgba(22, 120, 229, 0.12);
    font-size: 58px;

    animation: whyIconFloatOne 10s ease-in-out infinite reverse;
}

/* =========================================
   Section Heading
========================================= */

.why-section-heading {
    max-width: 900px;
    margin: 0 auto 48px;

    text-align: center;
}

.why-section-heading h2 {
    position: relative;

    margin: 0 0 22px;
    padding-bottom: 24px;

    color: var(--why-white);

    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -2.3px;
}

.why-section-heading h2::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 50%;

    width: 90px;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--why-blue),
            var(--why-orange)
        );

    border-radius: 20px;

    transform: translateX(-50%);
}

.why-section-heading p {
    max-width: 850px;
    margin: 0 auto 13px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.8;
}

.why-section-heading p:last-child {
    margin-top: 17px;

    color: var(--why-white);

    font-size: 18px;
    font-weight: 800;
}

/* =========================================
   Services Grid
========================================= */

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.why-service-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 245px;
    padding: 35px 25px 28px;
    overflow: hidden;

    color: var(--why-navy);

    background:
        linear-gradient(
            145deg,
            var(--why-white),
            #f4f8fb
        );

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 3px 24px 3px 24px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.22);

    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;

    transition:
        border-radius 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.why-service-card::before {
    content: "";

    position: absolute;
    right: -65px;
    bottom: -70px;

    width: 155px;
    height: 155px;

    background: rgba(22, 120, 229, 0.06);
    border-radius: 50%;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.why-service-card::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--why-blue),
            var(--why-orange)
        );

    transition: width 0.45s ease;
}

.why-service-card:hover {
    border-radius: 24px 3px 24px 3px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3);

    transform: translateY(-10px);
}

.why-service-card:hover::before {
    background: rgba(255, 121, 37, 0.11);
    transform: scale(1.35);
}

.why-service-card:hover::after {
    width: 100%;
}

.why-card-number {
    position: absolute;
    top: 21px;
    right: 20px;

    color: rgba(7, 22, 36, 0.08);

    font-size: 39px;
    font-weight: 900;
    line-height: 1;
}

.why-card-icon {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 66px;
    height: 66px;
    margin-bottom: 29px;

    color: var(--why-white);

    background:
        linear-gradient(
            145deg,
            var(--why-blue-light),
            var(--why-blue)
        );

    border-radius: 21px 7px 21px 7px;

    box-shadow:
        0 14px 28px rgba(22, 120, 229, 0.27);

    transition:
        background 0.35s ease,
        border-radius 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.why-card-icon i {
    font-size: 23px;
}

.why-service-card:hover .why-card-icon {
    background:
        linear-gradient(
            145deg,
            var(--why-orange),
            var(--why-orange-dark)
        );

    border-radius: 7px 21px 7px 21px;

    box-shadow:
        0 14px 29px rgba(255, 121, 37, 0.3);

    transform: rotate(-7deg) scale(1.07);
}

.why-service-card > span:last-child {
    position: relative;
    z-index: 2;
}

/* =========================================
   Goal Box
========================================= */

.why-goal-box {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    max-width: 960px;
    margin: 42px auto 0;
    padding: 21px 28px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.why-goal-box::after {
    content: "";

    position: absolute;
    right: -55px;

    width: 150px;
    height: 150px;

    background: rgba(255, 121, 37, 0.08);
    border-radius: 50%;
}

.why-goal-icon {
    position: relative;
    z-index: 2;

    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    color: var(--why-white);
    background: var(--why-orange);

    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(255, 121, 37, 0.3);

    animation: whyGoalPulse 2.5s ease-in-out infinite;
}

.why-goal-icon i {
    font-size: 20px;
    transform: rotate(-35deg);
}

.why-goal-box p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.86);

    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
}

/* =========================================
   Contact Panel
========================================= */

.why-contact-panel {
    position: relative;

    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;

    margin-top: 65px;
    min-height: 325px;
    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            var(--why-orange) 0%,
            #ff8a3d 43%,
            var(--why-blue) 43.2%,
            #0d5ebc 100%
        );

    border-radius: 34px 6px 34px 6px;

    box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.3);
}

.why-contact-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-contact-decoration span {
    position: absolute;

    width: 420px;
    height: 420px;

    border: 45px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.why-contact-decoration span:nth-child(1) {
    top: -300px;
    right: 3%;
}

.why-contact-decoration span:nth-child(2) {
    right: -210px;
    bottom: -320px;
}

.why-contact-decoration span:nth-child(3) {
    bottom: -360px;
    left: 15%;

    border-color: rgba(7, 22, 36, 0.06);
}

.why-contact-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 180px;
    margin: 0 auto;

    color: var(--why-white);

    background:
        linear-gradient(
            145deg,
            var(--why-navy-light),
            var(--why-navy)
        );

    border: 9px solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;

    box-shadow:
        0 25px 48px rgba(7, 22, 36, 0.35);

    animation: whyCarFloat 5s ease-in-out infinite;
}

.why-contact-icon > i {
    font-size: 68px;
}

.why-contact-key {
    position: absolute;
    right: -11px;
    bottom: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 63px;
    height: 63px;

    color: var(--why-white);
    background: var(--why-orange);

    border: 5px solid var(--why-white);
    border-radius: 50%;

    box-shadow:
        0 12px 24px rgba(7, 22, 36, 0.25);
}

.why-contact-key i {
    font-size: 23px;
    transform: rotate(-35deg);
}

.why-contact-content {
    position: relative;
    z-index: 2;

    padding: 50px 60px 50px 25px;
}

.why-contact-content h2 {
    max-width: 760px;
    margin: 0 0 20px;

    color: var(--why-white);

    font-size: clamp(30px, 4vw, 47px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.why-contact-content p {
    max-width: 880px;
    margin: 0 0 13px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.75;
}

.why-contact-content p:last-child {
    margin-bottom: 0;
    color: var(--why-white);
    font-weight: 700;
}

/* =========================================
   Animations
========================================= */

@keyframes whyShapeRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes whyCenterRotate {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes whyIconFloatOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-20deg);
    }

    50% {
        transform: translate3d(22px, -28px, 0) rotate(-4deg);
    }
}

@keyframes whyIconFloatTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(12deg);
    }

    50% {
        transform: translate3d(-25px, 25px, 0) rotate(2deg);
    }
}

@keyframes whyGoalPulse {
    0%,
    100% {
        box-shadow:
            0 10px 25px rgba(255, 121, 37, 0.3),
            0 0 0 0 rgba(255, 121, 37, 0.25);
    }

    50% {
        box-shadow:
            0 10px 25px rgba(255, 121, 37, 0.3),
            0 0 0 12px rgba(255, 121, 37, 0);
    }
}

@keyframes whyCarFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {
    .why-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .why-service-card {
        padding-inline: 20px;
    }

    .why-contact-panel {
        grid-template-columns: 240px 1fr;
    }

    .why-contact-content {
        padding-right: 42px;
    }
}

@media (max-width: 991.98px) {
    .why-car-keys-section {
        padding: 90px 0;
    }

    .why-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-service-card {
        min-height: 220px;
    }

    .why-contact-panel {
        grid-template-columns: 1fr;

        padding-top: 45px;

        background:
            linear-gradient(
                150deg,
                var(--why-orange) 0%,
                #ff8a3d 35%,
                var(--why-blue) 35.2%,
                #0d5ebc 100%
            );

        text-align: center;
    }

    .why-contact-icon {
        width: 155px;
        height: 155px;
    }

    .why-contact-icon > i {
        font-size: 56px;
    }

    .why-contact-content {
        padding: 35px 45px 50px;
    }

    .why-contact-content h2,
    .why-contact-content p {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .why-car-keys-section {
        padding: 70px 0;
    }

    .why-section-heading {
        margin-bottom: 38px;
    }

    .why-section-heading h2 {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .why-section-heading p {
        font-size: 16px;
    }

    .why-services-grid {
        gap: 14px;
    }

    .why-service-card {
        min-height: 205px;
        padding: 28px 20px 24px;
    }

    .why-card-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 23px;
    }

    .why-card-icon i {
        font-size: 20px;
    }

    .why-goal-box {
        align-items: flex-start;
    }

    .why-contact-panel {
        margin-top: 50px;
        border-radius: 26px 5px 26px 5px;
    }

    .why-contact-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .why-car-keys-section {
        padding: 55px 0;
    }

    .why-section-heading h2 {
        font-size: 33px;
        letter-spacing: -1px;
    }

    .why-section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .why-services-grid {
        grid-template-columns: 1fr;
    }

    .why-service-card {
        min-height: auto;
        padding: 24px 20px;

        font-size: 16px;
    }

    .why-card-icon {
        margin-bottom: 18px;
    }

    .why-goal-box {
        gap: 14px;
        padding: 18px;
    }

    .why-goal-icon {
        width: 47px;
        height: 47px;
    }

    .why-goal-box p {
        font-size: 14px;
    }

    .why-contact-panel {
        padding-top: 38px;
    }

    .why-contact-icon {
        width: 135px;
        height: 135px;
    }

    .why-contact-icon > i {
        font-size: 47px;
    }

    .why-contact-key {
        width: 53px;
        height: 53px;
    }

    .why-contact-content {
        padding: 30px 20px 38px;
    }

    .why-contact-content h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .why-contact-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-icon-two,
    .why-icon-three {
        display: none;
    }
}

/* =========================================
   Reduced Motion
========================================= */

@media (prefers-reduced-motion: reduce) {
    .why-car-keys-section *,
    .why-car-keys-section *::before,
    .why-car-keys-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================
   Car Brands Marquee Section
========================================= */

.car-brands-section {
    --brands-navy: #071624;
    --brands-blue: #1678e5;
    --brands-orange: #ff7925;
    --brands-white: #ffffff;
    --brands-light: #f4f8fb;
    --brands-text: #607487;
    --brands-border: #dfe8ef;

    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(22, 120, 229, 0.09),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(255, 121, 37, 0.09),
            transparent 24%
        ),
        var(--brands-light);
}

/* Heading */

.car-brands-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.car-brands-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 14px;
    padding: 8px 16px;

    color: var(--brands-blue);
    background: rgba(22, 120, 229, 0.09);

    border: 1px solid rgba(22, 120, 229, 0.15);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.car-brands-label i {
    color: var(--brands-orange);
}

.car-brands-heading h2 {
    margin: 0 0 17px;

    color: var(--brands-navy);

    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.car-brands-heading p {
    margin: 0;

    color: var(--brands-text);

    font-size: 16px;
    line-height: 1.75;
}

/* Marquee */

.car-brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.car-brands-marquee::before,
.car-brands-marquee::after {
    content: "";

    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;

    width: 130px;

    pointer-events: none;
}

.car-brands-marquee::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            var(--brands-light),
            rgba(244, 248, 251, 0)
        );
}

.car-brands-marquee::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            var(--brands-light),
            rgba(244, 248, 251, 0)
        );
}

.car-brands-track {
    display: flex;
    width: max-content;

    animation: brandsMarquee 45s linear infinite;
}

.car-brands-marquee:hover .car-brands-track {
    animation-play-state: paused;
}

.car-brands-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 16px;

    padding-right: 16px;
}

/* Brand Items */

.car-brands-group span {
    position: relative;

    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-width: 155px;
    min-height: 78px;
    padding: 18px 26px;
    overflow: hidden;

    color: var(--brands-navy);
    background: var(--brands-white);

    border: 1px solid var(--brands-border);
    border-radius: 17px;

    box-shadow:
        0 12px 28px rgba(7, 22, 36, 0.07);

    font-size: 17px;
    font-weight: 850;
    white-space: nowrap;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.car-brands-group span::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 34px;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--brands-blue),
            var(--brands-orange)
        );

    border-radius: 0 0 6px 6px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.car-brands-group span:hover {
    color: var(--brands-white);

    background:
        linear-gradient(
            135deg,
            var(--brands-navy),
            #123654
        );

    border-color: var(--brands-navy);

    box-shadow:
        0 18px 35px rgba(7, 22, 36, 0.18);

    transform: translateY(-6px);
}

.car-brands-group span:hover::before {
    width: 100%;
}

/* Animation */

@keyframes brandsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 767.98px) {
    .car-brands-section {
        padding: 70px 0;
    }

    .car-brands-heading {
        margin-bottom: 35px;
        padding: 0 20px;
    }

    .car-brands-heading h2 {
        font-size: 38px;
        letter-spacing: -1.3px;
    }

    .car-brands-marquee::before,
    .car-brands-marquee::after {
        width: 65px;
    }

    .car-brands-group {
        gap: 12px;
        padding-right: 12px;
    }

    .car-brands-group span {
        min-width: 135px;
        min-height: 68px;
        padding: 15px 21px;

        font-size: 15px;
    }

    .car-brands-track {
        animation-duration: 36s;
    }
}

@media (max-width: 575.98px) {
    .car-brands-section {
        padding: 55px 0;
    }

    .car-brands-heading h2 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .car-brands-heading p {
        font-size: 15px;
    }

    .car-brands-marquee::before,
    .car-brands-marquee::after {
        width: 35px;
    }

    .car-brands-group span {
        min-width: 125px;
        min-height: 62px;
        padding: 13px 18px;

        font-size: 14px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .car-brands-track {
        animation: none;
    }

    .car-brands-marquee {
        overflow-x: auto;
    }
}


/* =========================================
   Contact Form And Map Section
========================================= */

.contact-map-section {
    --contact-navy: #071624;
    --contact-navy-light: #102d45;
    --contact-blue: #1678e5;
    --contact-blue-dark: #0c5fbd;
    --contact-orange: #ff7925;
    --contact-orange-dark: #e45e0c;
    --contact-white: #ffffff;
    --contact-light: #f3f8fc;
    --contact-text: #607487;
    --contact-border: #dce7ef;

    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 5% 12%,
            rgba(22, 120, 229, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(255, 121, 37, 0.11),
            transparent 26%
        ),
        var(--contact-light);
}

.contact-map-section .container {
    position: relative;
    z-index: 2;
}

/* Background Shapes */

.contact-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.contact-shape-one {
    top: -170px;
    left: -160px;
    width: 430px;
    height: 430px;
    border: 65px solid rgba(22, 120, 229, 0.06);
    animation: contactShape 25s linear infinite;
}

.contact-shape-two {
    right: -180px;
    bottom: -190px;
    width: 470px;
    height: 470px;
    border: 70px solid rgba(255, 121, 37, 0.06);
    animation: contactShape 30s linear infinite reverse;
}

/* Heading */

.contact-map-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.contact-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;
    padding: 8px 16px;

    color: var(--contact-blue);
    background: rgba(22, 120, 229, 0.09);
    border: 1px solid rgba(22, 120, 229, 0.15);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-small-title i {
    color: var(--contact-orange);
}

.contact-map-heading h2 {
    margin: 0 0 17px;

    color: var(--contact-navy);

    font-size: clamp(37px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-map-heading p {
    margin: 0;
    color: var(--contact-text);
    font-size: 16px;
    line-height: 1.75;
}

/* Main Wrapper */

.contact-map-wrapper {
    position: relative;
    overflow: hidden;

    background: var(--contact-white);
    border: 1px solid var(--contact-border);
    border-radius: 32px;

    box-shadow:
        0 30px 75px rgba(7, 22, 36, 0.13);
}

/* Form Side */

.contact-form-side {
    height: 100%;
    padding: 48px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(22, 120, 229, 0.07),
            transparent 31%
        ),
        var(--contact-white);
}

.contact-form-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-title-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    color: var(--contact-white);
    background:
        linear-gradient(
            135deg,
            var(--contact-orange),
            var(--contact-orange-dark)
        );

    border-radius: 18px 6px 18px 6px;

    box-shadow:
        0 13px 27px rgba(255, 121, 37, 0.26);
}

.contact-title-icon i {
    font-size: 21px;
    transform: rotate(-35deg);
}

.contact-form-title h3 {
    margin: 0 0 4px;
    color: var(--contact-navy);
    font-size: 27px;
    font-weight: 900;
}

.contact-form-title p {
    margin: 0;
    color: var(--contact-text);
    font-size: 14px;
}

/* Form Reset */

.cc-fcf-form,
.cc-fcf-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

.cc-fcf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

/* Form Fields */

.cc-fcf-form input:not([type="submit"]):not([type="hidden"]),
.cc-fcf-form textarea,
.cc-fcf-form select {
    display: block;
    width: 100%;
    height: 54px;
    margin: 0;

    padding: 0 17px;

    color: var(--contact-navy);
    background: #f7fafc;

    border: 1px solid var(--contact-border);
    border-radius: 11px;
    outline: none;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cc-fcf-form input::placeholder,
.cc-fcf-form textarea::placeholder {
    color: #8293a2;
    opacity: 1;
}

.cc-fcf-form input:not([type="submit"]):focus,
.cc-fcf-form textarea:focus,
.cc-fcf-form select:focus {
    background: var(--contact-white);
    border-color: var(--contact-blue);

    box-shadow:
        0 0 0 4px rgba(22, 120, 229, 0.1);

    transform: translateY(-1px);
}

.cc-fcf-form textarea {
    min-height: 125px;
    height: 125px;
    margin-top: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    resize: vertical;
}

.cc-fcf-label {
    display: block;
    margin: 20px 0 9px;

    color: var(--contact-navy);

    font-size: 14px;
    font-weight: 800;
}

.cc-fcf-date {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 10px;
}

.cc-fcf-form fieldset > select {
    margin-bottom: 0;
}

/* Submit Button */

.cc-fcf-form input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 57px;
    margin-top: 24px;
    padding: 14px 25px;

    color: var(--contact-white);

    background:
        linear-gradient(
            135deg,
            var(--contact-orange),
            var(--contact-orange-dark)
        );

    border: 0;
    border-radius: 12px;
    cursor: pointer;

    box-shadow:
        0 15px 30px rgba(255, 121, 37, 0.25);

    font-family: inherit;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.3px;

    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cc-fcf-form input[type="submit"]:hover {
    box-shadow:
        0 20px 36px rgba(255, 121, 37, 0.34);

    transform: translateY(-3px);
}

.cc-fcf-form input[type="submit"]:active {
    transform: translateY(-1px);
}

/* Map Side */

.contact-map-side {
    position: relative;
    height: 100%;
    min-height: 720px;
    overflow: hidden;

    background: var(--contact-navy);
}

.contact-map-side::before {
    content: "";

    position: absolute;
    z-index: 2;
    inset: 0;

    border: 9px solid rgba(7, 22, 36, 0.08);
    pointer-events: none;
}

.contact-map-side iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;

    border: 0;
    filter: saturate(0.85) contrast(1.04);
}

/* Map Card */

.map-service-card {
    position: absolute;
    z-index: 4;
    left: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 14px;

    max-width: calc(100% - 60px);
    padding: 16px 20px;

    background: rgba(7, 22, 36, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;

    box-shadow:
        0 18px 40px rgba(7, 22, 36, 0.28);

    backdrop-filter: blur(12px);

    animation: mapCardFloat 4s ease-in-out infinite;
}

.map-card-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: var(--contact-white);
    background: var(--contact-orange);
    border-radius: 12px;

    font-size: 19px;
}

.map-service-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.map-service-card span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 600;
}

.map-service-card strong {
    color: var(--contact-white);
    font-size: 16px;
    font-weight: 800;
}

/* Floating Key */

.map-floating-key {
    position: absolute;
    z-index: 4;
    top: 30px;
    right: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    color: var(--contact-white);

    background:
        linear-gradient(
            135deg,
            var(--contact-blue),
            var(--contact-blue-dark)
        );

    border: 4px solid var(--contact-white);
    border-radius: 50%;

    box-shadow:
        0 14px 32px rgba(7, 22, 36, 0.3);

    animation: mapKeyMove 5s ease-in-out infinite;
}

.map-floating-key i {
    font-size: 21px;
    transform: rotate(-35deg);
}

/* Animations */

@keyframes contactShape {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mapCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes mapKeyMove {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(10px) rotate(5deg);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .contact-form-side {
        padding: 40px 34px;
    }

    .contact-map-side,
    .contact-map-side iframe {
        min-height: 740px;
    }
}

@media (max-width: 991.98px) {
    .contact-map-section {
        padding: 80px 0;
    }

    .contact-map-wrapper {
        border-radius: 26px;
    }

    .contact-form-side {
        padding: 45px;
    }

    .contact-map-side,
    .contact-map-side iframe {
        min-height: 480px;
    }
}

@media (max-width: 767.98px) {
    .contact-map-section {
        padding: 65px 0;
    }

    .contact-map-heading {
        margin-bottom: 35px;
    }

    .contact-map-heading h2 {
        font-size: 38px;
        letter-spacing: -1.3px;
    }

    .contact-form-side {
        padding: 35px 25px;
    }

    .cc-fcf-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-side,
    .contact-map-side iframe {
        min-height: 420px;
    }
}

@media (max-width: 575.98px) {
    .contact-map-section {
        padding: 50px 0;
    }

    .contact-map-heading h2 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .contact-map-heading p {
        font-size: 15px;
    }

    .contact-map-wrapper {
        border-radius: 20px;
    }

    .contact-form-side {
        padding: 30px 17px;
    }

    .contact-form-title {
        align-items: flex-start;
        gap: 13px;
    }

    .contact-title-icon {
        width: 50px;
        height: 50px;
    }

    .contact-form-title h3 {
        font-size: 23px;
    }

    .cc-fcf-date {
        grid-template-columns: 1fr 0.65fr;
    }

    .cc-fcf-date input {
        grid-column: 1 / -1;
    }

    .contact-map-side,
    .contact-map-side iframe {
        min-height: 380px;
    }

    .map-service-card {
        left: 15px;
        bottom: 15px;
        max-width: calc(100% - 30px);
        padding: 13px 15px;
    }

    .map-floating-key {
        top: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .contact-map-section *,
    .contact-map-section *::before,
    .contact-map-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================
   Car Keys Houston Footer
========================================= */

.ck-footer {
    --footer-navy: #071624;
    --footer-navy-light: #102d45;
    --footer-blue: #1678e5;
    --footer-orange: #ff7925;
    --footer-orange-dark: #e45e0c;
    --footer-white: #ffffff;
    --footer-text: #c6d1dc;
    --footer-muted: #8497a8;

    position: relative;
    padding: 80px 0 20px;
    overflow: hidden;
    isolation: isolate;

    color: var(--footer-white);

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(22, 120, 229, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(255, 121, 37, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #071624 0%,
            #0b2034 55%,
            #071624 100%
        );
}

.ck-footer-pattern {
    position: absolute;
    z-index: -1;
    inset: 0;

    opacity: 0.13;
    pointer-events: none;

    background-image:
        linear-gradient(
            30deg,
            rgba(255, 255, 255, 0.04) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.04) 87.5%
        ),
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.04) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.04) 87.5%
        );

    background-size: 44px 76px;
}

.ck-footer .container {
    position: relative;
    z-index: 2;
}

.ck-footer-main {
    padding-bottom: 70px;
}

/* Logo */

.ck-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;

    color: var(--footer-white);
    text-decoration: none;
}

.ck-footer-logo-icon {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: var(--footer-white);

    background:
        linear-gradient(
            135deg,
            var(--footer-orange),
            var(--footer-orange-dark)
        );

    border: 4px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    box-shadow:
        0 12px 25px rgba(255, 121, 37, 0.28);
}

.ck-footer-logo-icon::after {
    content: "";

    position: absolute;
    inset: -7px;

    border: 2px dashed var(--footer-orange);
    border-radius: 50%;

    animation: ckFooterLogoRotate 15s linear infinite;
}

.ck-footer-logo-icon i {
    font-size: 20px;
    transform: rotate(-35deg);
}

.ck-footer-logo > span:last-child {
    display: flex;
    flex-direction: column;
}

.ck-footer-logo strong {
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.4px;
}

.ck-footer-logo small {
    margin-top: 5px;

    color: var(--footer-text);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ck-footer-about p {
    max-width: 270px;
    margin: 0 0 22px;

    color: var(--footer-text);

    font-size: 14px;
    line-height: 1.75;
}

/* Social Icons */

.ck-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ck-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: var(--footer-white);
    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.ck-footer-social a:hover {
    color: var(--footer-white);
    background: var(--footer-orange);
    border-color: var(--footer-orange);

    box-shadow:
        0 10px 22px rgba(255, 121, 37, 0.27);

    transform: translateY(-4px);
}

/* Footer Columns */

.ck-footer-column h3,
.ck-footer-newsletter h3 {
    display: flex;
    align-items: center;
    gap: 9px;

    margin: 4px 0 24px;

    color: var(--footer-white);

    font-size: 18px;
    font-weight: 850;
}

.ck-footer-column h3 i,
.ck-footer-newsletter h3 i {
    color: var(--footer-orange);
    font-size: 15px;
}

.ck-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ck-footer-column li {
    margin-bottom: 13px;
}

.ck-footer-column li:last-child {
    margin-bottom: 0;
}

.ck-footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--footer-text);

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ck-footer-column a i {
    color: var(--footer-orange);
    font-size: 11px;

    transition: transform 0.3s ease;
}

.ck-footer-location-list li {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--footer-text);

    font-size: 14px;
    font-weight: 500;
}

.ck-footer-location-list li i {
    color: var(--footer-orange);
    font-size: 11px;
}

.ck-footer-column a:hover {
    color: var(--footer-white);
    transform: translateX(5px);
}

.ck-footer-column a:hover i {
    transform: translateX(3px);
}

/* Newsletter */

.ck-footer-newsletter > p {
    margin: 0 0 21px;

    color: var(--footer-text);

    font-size: 14px;
    line-height: 1.65;
}

.ck-footer-newsletter form {
    margin: 0;
}

.ck-footer-newsletter input {
    display: block;

    width: 100%;
    height: 51px;
    margin-bottom: 12px;
    padding: 0 17px;

    color: var(--footer-navy);
    background: var(--footer-white);

    border: 1px solid transparent;
    border-radius: 0;
    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ck-footer-newsletter input:focus {
    border-color: var(--footer-orange);

    box-shadow:
        0 0 0 4px rgba(255, 121, 37, 0.14);
}

.ck-footer-newsletter button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;
    min-height: 51px;
    padding: 13px 20px;

    color: var(--footer-white);

    background:
        linear-gradient(
            135deg,
            var(--footer-orange),
            var(--footer-orange-dark)
        );

    border: 0;
    cursor: pointer;

    font-family: inherit;
    font-size: 14px;
    font-weight: 750;

    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.ck-footer-newsletter button:hover {
    box-shadow:
        0 14px 28px rgba(255, 121, 37, 0.27);

    transform: translateY(-3px);
}

.ck-footer-newsletter button i {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.ck-footer-newsletter button:hover i {
    transform: translateX(4px);
}

/* Contact Bar */

.ck-footer-contact-bar {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 0.8fr 1.45fr 0.95fr;
    align-items: center;

    min-height: 108px;
    padding: 0 50px;

    color: var(--footer-navy);
    background: var(--footer-white);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18);

    clip-path:
        polygon(
            3% 0,
            97% 0,
            100% 100%,
            0 100%
        );
}

.ck-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    min-height: 72px;
    padding: 0 30px;

    border-right: 1px solid #d9e0e6;
}

.ck-footer-contact-item:last-child {
    border-right: 0;
}

.ck-contact-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    color: var(--footer-orange);

    font-size: 25px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ck-footer-contact-item:hover .ck-contact-icon {
    color: var(--footer-blue);
    transform: scale(1.1) rotate(-5deg);
}

.ck-footer-contact-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;

    min-width: 0;
}

.ck-footer-contact-item small {
    color: #53697b;
    font-size: 12px;
    font-weight: 750;
}

.ck-footer-contact-item a {
    color: var(--footer-navy);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;

    overflow-wrap: anywhere;

    transition: color 0.3s ease;
}

.ck-footer-contact-item strong {
    color: var(--footer-navy);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    white-space: nowrap;
}

.ck-footer-contact-item a:hover {
    color: var(--footer-orange);
}

/* Bottom Footer */

.ck-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding-top: 20px;
}

.ck-footer-bottom p {
    margin: 0;

    color: var(--footer-text);

    font-size: 13px;
}

.ck-footer-bottom p a {
    color: var(--footer-orange);
    font-weight: 750;
    text-decoration: none;
}

.ck-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ck-footer-bottom-links a {
    color: var(--footer-text);

    font-size: 12px;
    text-decoration: none;

    transition: color 0.3s ease;
}

.ck-footer-bottom-links a:hover {
    color: var(--footer-orange);
}

.ck-footer-bottom-links span {
    width: 12px;
    height: 1px;
    background: var(--footer-orange);
}

/* Scroll Top */

.ck-scroll-top {
    position: absolute;
    right: 28px;
    bottom: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    color: var(--footer-orange);
    background: var(--footer-white);

    border: 4px solid var(--footer-orange);
    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.ck-scroll-top:hover {
    color: var(--footer-white);
    background: var(--footer-orange);
    transform: translateY(-5px);
}

/* Animation */

@keyframes ckFooterLogoRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .ck-footer-contact-bar {
        padding: 0 25px;
    }

    .ck-footer-contact-item {
        padding: 0 18px;
    }

    .ck-scroll-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 991.98px) {
    .ck-footer {
        padding-top: 70px;
    }

    .ck-footer-main {
        padding-bottom: 50px;
    }

    .ck-footer-contact-bar {
        grid-template-columns: 1fr;
        padding: 15px 45px;

        clip-path:
            polygon(
                3% 0,
                97% 0,
                100% 4%,
                100% 96%,
                97% 100%,
                3% 100%,
                0 96%,
                0 4%
            );
    }

    .ck-footer-contact-item {
        min-height: 80px;
        padding: 10px 0;

        border-right: 0;
        border-bottom: 1px solid #d9e0e6;
    }

    .ck-footer-contact-item:last-child {
        border-bottom: 0;
    }

    .ck-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 60px;
    }
}

@media (max-width: 767.98px) {
    .ck-footer {
        padding-top: 60px;
    }

    .ck-footer-main {
        padding-bottom: 42px;
    }

    .ck-footer-about p {
        max-width: 100%;
    }

    .ck-footer-contact-bar {
        padding: 15px 28px;
    }
}

@media (max-width: 575.98px) {
    .ck-footer {
        padding: 50px 0 22px;
    }

    .ck-footer-main {
        padding-bottom: 35px;
    }

    .ck-footer-column h3,
    .ck-footer-newsletter h3 {
        margin-bottom: 18px;
    }

    .ck-footer-contact-bar {
        padding: 13px 20px;
        clip-path: none;
        border-radius: 16px;
    }

    .ck-footer-contact-item {
        align-items: flex-start;
        gap: 10px;
        min-height: 74px;
    }

    .ck-contact-icon {
        width: 36px;
        height: 40px;
        font-size: 21px;
    }

    .ck-footer-contact-item a {
        font-size: 12px;
    }

    .ck-footer-bottom {
        align-items: center;
        padding-right: 0;
        padding-bottom: 50px;
        text-align: center;
    }

    .ck-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 9px;
    }

    .ck-scroll-top {
        right: 50%;
        bottom: 14px;
        transform: translateX(50%);
    }

    .ck-scroll-top:hover {
        transform: translateX(50%) translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ck-footer *,
    .ck-footer *::before,
    .ck-footer *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================
   Creative Car Key FAQ Section
========================================= */

.ck-faq-section {
    --faq-navy: #071624;
    --faq-navy-light: #102d45;
    --faq-blue: #1678e5;
    --faq-blue-dark: #0c5fbd;
    --faq-orange: #ff7925;
    --faq-orange-dark: #e45e0c;
    --faq-white: #ffffff;
    --faq-light: #f3f8fc;
    --faq-text: #607487;
    --faq-border: #dce7ef;

    position: relative;
    padding: 105px 0;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 7% 20%,
            rgba(22, 120, 229, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(255, 121, 37, 0.1),
            transparent 24%
        ),
        var(--faq-light);
}

.ck-faq-section .container {
    position: relative;
    z-index: 3;
}

/* Background Glows */

.ck-faq-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(5px);
}

.ck-faq-glow-one {
    top: -180px;
    left: -180px;
    width: 440px;
    height: 440px;
    border: 70px solid rgba(22, 120, 229, 0.05);
    animation: ckFaqRotate 28s linear infinite;
}

.ck-faq-glow-two {
    right: -170px;
    bottom: -190px;
    width: 470px;
    height: 470px;
    border: 75px solid rgba(255, 121, 37, 0.05);
    animation: ckFaqRotate 34s linear infinite reverse;
}

/* Floating Background Keys */

.ck-faq-floating-key {
    position: absolute;
    z-index: 0;
    color: rgba(7, 22, 36, 0.045);
    pointer-events: none;
}

.ck-faq-floating-key i {
    display: block;
    font-size: 90px;
}

.ck-key-one {
    top: 12%;
    right: 4%;
    transform: rotate(-38deg);
    animation: ckFaqKeyOne 7s ease-in-out infinite;
}

.ck-key-two {
    bottom: 7%;
    left: 3%;
    transform: rotate(26deg);
    animation: ckFaqKeyTwo 8s ease-in-out infinite;
}

/* Left Introduction */

.ck-faq-intro {
    position: relative;
    max-width: 500px;
}

.ck-faq-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding: 8px 15px;

    color: var(--faq-blue);
    background: rgba(22, 120, 229, 0.09);

    border: 1px solid rgba(22, 120, 229, 0.15);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ck-faq-subtitle i {
    color: var(--faq-orange);
}

.ck-faq-intro h2 {
    max-width: 490px;
    margin: 0 0 20px;

    color: var(--faq-navy);

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -2.7px;
}

.ck-faq-intro h2 span {
    position: relative;
    display: inline-block;
    color: var(--faq-orange);
}

.ck-faq-intro h2 span::after {
    content: "";

    position: absolute;
    left: 2px;
    bottom: -8px;

    width: 68%;
    height: 5px;

    background: var(--faq-blue);
    border-radius: 10px;

    transform: rotate(-2deg);
}

.ck-faq-intro > p {
    max-width: 460px;
    margin: 0;

    color: var(--faq-text);

    font-size: 16px;
    line-height: 1.8;
}

/* Visual Car Key Illustration */

.ck-faq-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 315px;
    height: 230px;
    margin: 32px auto 27px;
}

.ck-faq-visual::before {
    content: "";

    position: absolute;
    bottom: 21px;
    left: 50%;

    width: 205px;
    height: 27px;

    background: rgba(7, 22, 36, 0.14);
    border-radius: 50%;

    filter: blur(13px);
    transform: translateX(-50%);
}

.ck-faq-orbit {
    position: absolute;
    left: 50%;
    top: 50%;

    border-style: dashed;
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 205px;
    height: 205px;

    border-width: 2px;
    border-color: rgba(22, 120, 229, 0.25);

    transform: translate(-50%, -50%);
    animation: ckFaqOrbit 18s linear infinite;
}

.orbit-two {
    width: 260px;
    height: 165px;

    border-width: 1px;
    border-color: rgba(255, 121, 37, 0.28);

    transform: translate(-50%, -50%) rotate(-12deg);
    animation: ckFaqOrbitTwo 22s linear infinite reverse;
}

.ck-faq-main-icon {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 145px;
    height: 145px;

    color: var(--faq-white);

    background:
        linear-gradient(
            145deg,
            var(--faq-navy-light),
            var(--faq-navy)
        );

    border: 8px solid var(--faq-white);
    border-radius: 50%;

    box-shadow:
        0 24px 45px rgba(7, 22, 36, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.09);

    animation: ckFaqCarFloat 4.5s ease-in-out infinite;
}

.ck-faq-main-icon > i {
    font-size: 54px;
}

.ck-faq-key-badge {
    position: absolute;
    right: -13px;
    bottom: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    color: var(--faq-white);

    background:
        linear-gradient(
            135deg,
            var(--faq-orange),
            var(--faq-orange-dark)
        );

    border: 5px solid var(--faq-white);
    border-radius: 50%;

    box-shadow:
        0 12px 24px rgba(255, 121, 37, 0.28);
}

.ck-faq-key-badge i {
    font-size: 19px;
    transform: rotate(-36deg);
}

.ck-faq-question {
    position: absolute;
    z-index: 4;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--faq-white);
    border: 4px solid var(--faq-white);
    border-radius: 50%;

    font-weight: 900;

    box-shadow:
        0 12px 25px rgba(7, 22, 36, 0.15);
}

.question-one {
    top: 21px;
    left: 28px;

    width: 46px;
    height: 46px;

    background: var(--faq-blue);
    font-size: 22px;

    animation: ckFaqQuestion 4s ease-in-out infinite;
}

.question-two {
    top: 22px;
    right: 24px;

    width: 37px;
    height: 37px;

    background: var(--faq-orange);
    font-size: 17px;

    animation: ckFaqQuestion 4.7s ease-in-out infinite reverse;
}

.question-three {
    left: 16px;
    bottom: 31px;

    width: 34px;
    height: 34px;

    background: var(--faq-navy);
    font-size: 15px;

    animation: ckFaqQuestion 5.2s ease-in-out infinite;
}

/* Call Card */

.ck-faq-help-card {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 13px 20px 13px 13px;

    background: var(--faq-white);

    border: 1px solid var(--faq-border);
    border-radius: 16px;

    box-shadow:
        0 15px 35px rgba(7, 22, 36, 0.09);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.ck-faq-help-card:hover {
    border-color: rgba(255, 121, 37, 0.4);

    box-shadow:
        0 21px 42px rgba(7, 22, 36, 0.13);

    transform: translateY(-4px);
}

.ck-faq-help-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: var(--faq-white);
    background: var(--faq-blue);
    border-radius: 13px;

    font-size: 19px;
}

.ck-faq-help-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ck-faq-help-card small {
    color: var(--faq-text);
    font-size: 11px;
    font-weight: 750;
}

.ck-faq-help-card a {
    color: var(--faq-navy);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ck-faq-help-card a:hover {
    color: var(--faq-orange);
}

/* Accordion */

.ck-faq-accordion {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow:
        0 30px 70px rgba(7, 22, 36, 0.11);
    backdrop-filter: blur(12px);
}

.ck-faq-accordion .accordion-item {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;

    background: var(--faq-white);

    border: 1px solid var(--faq-border);
    border-radius: 17px;

    box-shadow:
        0 8px 24px rgba(7, 22, 36, 0.045);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.ck-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.ck-faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(22, 120, 229, 0.34);

    box-shadow:
        0 17px 35px rgba(7, 22, 36, 0.09);

    transform: translateX(-5px);
}

.ck-faq-accordion .accordion-header {
    margin: 0;
}

.ck-faq-accordion .accordion-button {
    position: relative;

    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 15px;

    width: 100%;
    min-height: 84px;
    padding: 15px 18px;

    color: var(--faq-navy);
    background: var(--faq-white);

    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;

    font-family: inherit;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.45;
    text-align: left;

    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.ck-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--faq-white);

    background:
        linear-gradient(
            135deg,
            var(--faq-navy-light),
            var(--faq-navy)
        );

    box-shadow: none;
}

.ck-faq-accordion .accordion-button::after {
    display: none;
}

.ck-faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: var(--faq-blue);
    background: rgba(22, 120, 229, 0.09);

    border: 1px solid rgba(22, 120, 229, 0.14);
    border-radius: 15px 5px 15px 5px;

    font-size: 14px;
    font-weight: 950;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.accordion-button:not(.collapsed) .ck-faq-number {
    color: var(--faq-white);
    background: var(--faq-orange);
    border-color: var(--faq-orange);
    transform: rotate(-5deg);
}

.ck-faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    color: var(--faq-white);
    background: var(--faq-orange);
    border-radius: 50%;

    box-shadow:
        0 9px 19px rgba(255, 121, 37, 0.24);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease;
}

.accordion-button:not(.collapsed) .ck-faq-toggle {
    color: var(--faq-navy);
    background: var(--faq-white);
    transform: rotate(135deg);
}

.ck-faq-toggle i {
    font-size: 13px;
}

.ck-faq-accordion .accordion-body {
    position: relative;
    padding: 4px 75px 24px 85px;

    color: var(--faq-text);
    background: var(--faq-white);

    font-size: 15px;
    line-height: 1.78;
}

.ck-faq-accordion .accordion-body::before {
    content: "";

    position: absolute;
    top: 6px;
    left: 65px;

    width: 3px;
    height: calc(100% - 24px);

    background:
        linear-gradient(
            to bottom,
            var(--faq-orange),
            rgba(255, 121, 37, 0.08)
        );

    border-radius: 10px;
}

/* Animations */

@keyframes ckFaqRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ckFaqOrbit {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ckFaqOrbitTwo {
    to {
        transform: translate(-50%, -50%) rotate(348deg);
    }
}

@keyframes ckFaqCarFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes ckFaqQuestion {
    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-9px) rotate(6deg);
    }
}

@keyframes ckFaqKeyOne {
    0%,
    100% {
        transform: translateY(0) rotate(-38deg);
    }

    50% {
        transform: translateY(17px) rotate(-30deg);
    }
}

@keyframes ckFaqKeyTwo {
    0%,
    100% {
        transform: translateY(0) rotate(26deg);
    }

    50% {
        transform: translateY(-16px) rotate(18deg);
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .ck-faq-intro h2 {
        font-size: 52px;
    }

    .ck-faq-accordion .accordion-button {
        grid-template-columns: 48px minmax(0, 1fr) 38px;
        gap: 12px;
        padding-right: 15px;
    }

    .ck-faq-number {
        width: 48px;
        height: 48px;
    }

    .ck-faq-accordion .accordion-body {
        padding-right: 55px;
        padding-left: 76px;
    }
}

@media (max-width: 991.98px) {
    .ck-faq-section {
        padding: 85px 0;
    }

    .ck-faq-intro {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .ck-faq-intro h2,
    .ck-faq-intro > p {
        margin-right: auto;
        margin-left: auto;
    }

    .ck-faq-help-card {
        text-align: left;
    }

    .ck-faq-accordion {
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .ck-faq-section {
        padding: 65px 0;
    }

    .ck-faq-intro h2 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .ck-faq-visual {
        transform: scale(0.92);
        margin-top: 22px;
        margin-bottom: 17px;
    }

    .ck-faq-accordion {
        padding: 10px;
        border-radius: 22px;
    }

    .ck-faq-accordion .accordion-button {
        grid-template-columns: 45px minmax(0, 1fr) 36px;
        min-height: 76px;
        padding: 13px 14px;
        font-size: 15px;
    }

    .ck-faq-number {
        width: 45px;
        height: 45px;
    }

    .ck-faq-toggle {
        width: 36px;
        height: 36px;
    }

    .ck-faq-accordion .accordion-body {
        padding: 3px 30px 22px 72px;
        font-size: 14px;
    }

    .ck-faq-accordion .accordion-body::before {
        left: 56px;
    }

    .ck-faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .ck-faq-section {
        padding: 52px 0;
    }

    .ck-faq-intro h2 {
        font-size: 36px;
        letter-spacing: -1.3px;
    }

    .ck-faq-intro > p {
        font-size: 15px;
    }

    .ck-faq-visual {
        width: 285px;
        height: 215px;
        margin-left: 50%;
        transform: translateX(-50%) scale(0.88);
    }

    .ck-faq-help-card {
        width: 100%;
        justify-content: flex-start;
    }

    .ck-faq-accordion {
        padding: 8px;
        border-radius: 18px;
    }

    .ck-faq-accordion .accordion-item {
        margin-bottom: 9px;
        border-radius: 13px;
    }

    .ck-faq-accordion .accordion-button {
        grid-template-columns: 38px minmax(0, 1fr) 32px;
        gap: 9px;
        min-height: 72px;
        padding: 11px 10px;
        font-size: 13px;
    }

    .ck-faq-number {
        width: 38px;
        height: 38px;
        border-radius: 11px 4px 11px 4px;
        font-size: 11px;
    }

    .ck-faq-toggle {
        width: 32px;
        height: 32px;
    }

    .ck-faq-toggle i {
        font-size: 11px;
    }

    .ck-faq-accordion .accordion-body {
        padding: 2px 18px 19px 54px;
        font-size: 13px;
        line-height: 1.7;
    }

    .ck-faq-accordion .accordion-body::before {
        left: 40px;
    }

    .ck-faq-floating-key {
        display: none;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .ck-faq-section *,
    .ck-faq-section *::before,
    .ck-faq-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}



/* =====================================
   Automotive Services FAQ
===================================== */

.service-faq-section {
    --sf-navy: #071624;
    --sf-navy-light: #102b42;
    --sf-blue: #1678e5;
    --sf-orange: #ff7925;
    --sf-orange-dark: #e75d0b;
    --sf-white: #ffffff;
    --sf-light: #f4f8fb;
    --sf-text: #607487;
    --sf-border: #dce6ed;

    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--sf-white);
}

.service-faq-section .container {
    position: relative;
    z-index: 2;
}

/* Background Shapes */

.service-faq-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-faq-shape.shape-one {
    top: -210px;
    right: -170px;
    width: 470px;
    height: 470px;
    border: 75px solid rgba(22, 120, 229, 0.055);
}

.service-faq-shape.shape-two {
    bottom: -180px;
    left: -160px;
    width: 390px;
    height: 390px;
    border: 65px solid rgba(255, 121, 37, 0.055);
}

/* Heading */

.service-faq-heading {
    max-width: 760px;
    margin: 0 auto 52px;
}

.service-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 16px;
    color: var(--sf-orange);
    background: rgba(255, 121, 37, 0.09);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.service-faq-label i {
    color: var(--sf-blue);
    transform: rotate(-35deg);
}

.service-faq-heading h2 {
    margin: 0 0 15px;
    color: var(--sf-navy);
    font-size: clamp(35px, 5vw, 55px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.service-faq-heading p {
    max-width: 670px;
    margin: auto;
    color: var(--sf-text);
    font-size: 16px;
    line-height: 1.8;
}

/* Information Card */

.service-faq-info {
    position: sticky;
    top: 30px;
    padding: 42px 34px;
    overflow: hidden;
    color: var(--sf-white);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(22, 120, 229, 0.42),
            transparent 38%
        ),
        linear-gradient(145deg, var(--sf-navy-light), var(--sf-navy));
    border-radius: 27px 6px 27px 6px;
    box-shadow: 0 28px 60px rgba(7, 22, 36, 0.2);
}

.service-faq-info::after {
    content: "?";
    position: absolute;
    right: -9px;
    bottom: -65px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
}

.faq-info-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    margin-bottom: 29px;
    color: var(--sf-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 45px;
    animation: serviceFaqFloat 4s ease-in-out infinite;
}

.faq-info-icon > span {
    position: absolute;
    right: -8px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--sf-white);
    background: var(--sf-orange);
    border: 4px solid var(--sf-navy);
    border-radius: 50%;
    font-size: 14px;
}

.faq-info-icon > span i {
    transform: rotate(-35deg);
}

.service-faq-info h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: var(--sf-white);
    font-size: 28px;
    font-weight: 850;
    line-height: 1.2;
}

.service-faq-info > p {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: #b9cad7;
    font-size: 14px;
    line-height: 1.75;
}

.service-faq-info ul {
    position: relative;
    z-index: 2;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.service-faq-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #e8f0f5;
    font-size: 14px;
    font-weight: 650;
}

.service-faq-info li i {
    color: var(--sf-orange);
}

/* Phone Button */

.service-faq-call {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    color: var(--sf-navy);
    background: var(--sf-white);
    border-radius: 14px;
    text-decoration: none;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.service-faq-call:hover {
    color: var(--sf-navy);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.service-faq-call > span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--sf-white);
    background: var(--sf-orange);
    border-radius: 12px;
}

.service-faq-call > div {
    display: flex;
    flex-direction: column;
}

.service-faq-call small {
    color: var(--sf-text);
    font-size: 11px;
    font-weight: 700;
}

.service-faq-call strong {
    color: var(--sf-navy);
    font-size: 17px;
    font-weight: 900;
}

/* Accordion */

.service-faq-accordion .accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--sf-light);
    border: 1px solid var(--sf-border);
    border-radius: 5px 20px 5px 20px;
    box-shadow: 0 10px 28px rgba(7, 22, 36, 0.055);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.service-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.service-faq-accordion .accordion-item:hover {
    border-color: rgba(255, 121, 37, 0.4);
    box-shadow: 0 17px 34px rgba(7, 22, 36, 0.1);
    transform: translateY(-3px);
}

.service-faq-accordion .accordion-header {
    margin: 0;
}

.service-faq-accordion .accordion-button {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 91px;
    padding: 15px 65px 15px 18px;
    color: var(--sf-navy);
    background: var(--sf-white);
    border: 0;
    box-shadow: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
}

.service-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--sf-white);
    background: linear-gradient(
        135deg,
        var(--sf-blue),
        #0d5fae
    );
    box-shadow: none;
}

.service-faq-accordion .accordion-button::after {
    position: absolute;
    right: 22px;
    width: 35px;
    height: 35px;
    margin: 0;
    background-image: none;
    border: 2px solid var(--sf-orange);
    border-radius: 50%;
    content: "+";
    color: var(--sf-orange);
    font-size: 23px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    transform: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.35s ease;
}

.service-faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--sf-navy);
    background: var(--sf-white);
    border-color: var(--sf-white);
    transform: rotate(45deg);
}

.faq-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--sf-blue);
    background: rgba(22, 120, 229, 0.09);
    border: 1px solid rgba(22, 120, 229, 0.14);
    border-radius: 16px 5px 16px 5px;
    font-size: 20px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-service-icon {
    color: var(--sf-white);
    background: var(--sf-orange);
    border-color: var(--sf-orange);
    transform: rotate(-4deg);
}

.faq-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-title-wrap small {
    color: var(--sf-orange);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.accordion-button:not(.collapsed) .faq-title-wrap small {
    color: #ffd8bf;
}

.service-faq-accordion .accordion-body {
    padding: 5px 65px 25px 94px;
    color: var(--sf-text);
    background: var(--sf-white);
    font-size: 14px;
    line-height: 1.8;
}

/* Animation */

@keyframes serviceFaqFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-9px) rotate(2deg);
    }
}

/* Responsive */

@media (max-width: 991.98px) {
    .service-faq-section {
        padding: 80px 0;
    }

    .service-faq-info {
        position: relative;
        top: auto;
        max-width: 650px;
        margin: 0 auto 15px;
    }
}

@media (max-width: 767.98px) {
    .service-faq-section {
        padding: 65px 0;
    }

    .service-faq-heading {
        margin-bottom: 38px;
    }

    .service-faq-heading h2 {
        letter-spacing: -1.3px;
    }

    .service-faq-accordion .accordion-button {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 12px;
        min-height: 82px;
        padding: 13px 57px 13px 13px;
        font-size: 14px;
    }

    .faq-service-icon {
        width: 50px;
        height: 50px;
        font-size: 17px;
    }

    .service-faq-accordion .accordion-button::after {
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 20px;
        line-height: 27px;
    }

    .service-faq-accordion .accordion-body {
        padding: 3px 25px 22px 75px;
    }
}

@media (max-width: 575.98px) {
    .service-faq-section {
        padding: 52px 0;
    }

    .service-faq-heading h2 {
        font-size: 34px;
    }

    .service-faq-heading p {
        font-size: 14px;
    }

    .service-faq-info {
        padding: 32px 23px;
    }

    .service-faq-info h3 {
        font-size: 24px;
    }

    .service-faq-accordion .accordion-item {
        margin-bottom: 11px;
        border-radius: 4px 15px 4px 15px;
    }

    .service-faq-accordion .accordion-button {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 9px;
        min-height: 75px;
        padding: 11px 47px 11px 10px;
        font-size: 12px;
    }

    .faq-service-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px 4px 12px 4px;
        font-size: 15px;
    }

    .faq-title-wrap small {
        font-size: 8px;
        letter-spacing: 0.6px;
    }

    .service-faq-accordion .accordion-button::after {
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 18px;
        line-height: 23px;
    }

    .service-faq-accordion .accordion-body {
        padding: 2px 17px 19px 61px;
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-faq-section *,
    .service-faq-section *::before,
    .service-faq-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.ford-key-page .hero-person {
    right: -95px;
    bottom: 18px;
   
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .ford-key-page .hero-person {
        left: 50%;
        right: auto;
        width: min(760px, 135%);
        max-height: 560px;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .ford-key-page .hero-person {
        width: min(560px, 140%);
        max-height: 430px;
    }
}

.honda-key-page .hero-person {
    right: -115px;
    bottom: 22px;
   
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .honda-key-page .hero-person {
        left: 50%;
        right: auto;
        width: min(790px, 140%);
        max-height: 560px;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .honda-key-page .hero-person {
        width: min(580px, 145%);
        max-height: 430px;
    }
}

.toyota-key-page .hero-person {
    right: -105px;
    bottom: 18px;

    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .toyota-key-page .hero-person {
        left: 50%;
        right: auto;
        width: min(780px, 140%);
        max-height: 560px;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .toyota-key-page .hero-person {
        width: min(570px, 145%);
        max-height: 430px;
    }
}
