/*
|--------------------------------------------------------------------------
| Singh Saarthi Front Style
|--------------------------------------------------------------------------
| Lightweight, CLS-safe, no external font dependency.
| Uses system font stack for better LCP/CLS.
|--------------------------------------------------------------------------
*/
:root {
    --ss-orange: #f97316;
    --ss-orange-dark: #ea580c;
    --ss-orange-soft: rgba(249, 115, 22, 0.12);
    --ss-navy: #0b1f3a;
    --ss-navy-dark: #07162b;
    --ss-navy-soft: #102a4c;
    --ss-red: #f97316;
    --ss-red-dark: #ea580c;
    --ss-dark: #0b1f3a;
    --ss-dark-soft: #102a4c;
    --ss-black: #07162b;
    --ss-white: #ffffff;
    --ss-light: #f8fafc;
    --ss-muted: #64748b;
    --ss-border: #e2e8f0;
    --ss-yellow: #f97316;
    --ss-radius-sm: 12px;
    --ss-radius-md: 18px;
    --ss-radius-lg: 28px;
    --ss-shadow: 0 24px 70px rgba(11, 31, 58, 0.14);
    --ss-shadow-dark: 0 24px 80px rgba(7, 22, 43, 0.35);
    --ss-header-height: 82px;
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    /*font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;*/
	font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ss-dark);
    background: var(--ss-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a:hover {
    color: var(--ss-red);
}

button,
input,
select,
textarea {
    font: inherit;
}
textarea {
    resize: none;
}
::selection {
    color: var(--ss-white);
    background: var(--ss-red);
}

/*
|--------------------------------------------------------------------------
| Utilities
|--------------------------------------------------------------------------
*/

.section-padding {
    padding: 96px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--ss-red);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ss-red);
    box-shadow: 0 0 0 6px rgba(229, 37, 42, 0.12);
}

.section-title {
    max-width: 720px;
    margin: 0 0 18px;
    color: var(--ss-dark);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -0.035em;
}
.section-title {
    max-width: 820px;
    margin: 0 auto 44px;
}

.section-title span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--ss-orange);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title h2 {
    margin-bottom: 14px;
    color: var(--ss-navy);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-title p {
    max-width: 680px;
    margin: 0 auto;
    color:#111111;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}
.section-text {
    color: var(--ss-muted);
    font-size: 17px;
    line-height: 1.85;
}

.rounded-ss {
    border-radius: var(--ss-radius-lg);
}

.shadow-ss {
    box-shadow: var(--ss-shadow);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1;
    padding: 14px 24px;
}

.btn-ss-primary {
    color: var(--ss-white);
    background: var(--ss-red);
    border: 1px solid var(--ss-red);
    box-shadow: 0 14px 28px rgba(229, 37, 42, 0.22);
}

.btn-ss-primary:hover {
    color: var(--ss-white);
    background: var(--ss-red-dark);
    border-color: var(--ss-red-dark);
    transform: translateY(-1px);
}

.btn-ss-light {
    color: var(--ss-red);
    background: var(--ss-white);
    border: 1px solid var(--ss-white);
}

.btn-ss-light:hover {
    color: var(--ss-dark);
    background: var(--ss-light);
    border-color: var(--ss-light);
    transform: translateY(-1px);
}

.btn-ss-search {
    min-height: 64px;
    color: var(--ss-white);
    background: var(--ss-red);
    border: 1px solid var(--ss-red);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 850;
    box-shadow: 0 16px 32px rgba(229, 37, 42, 0.22);
}

.btn-ss-search:hover {
    color: var(--ss-white);
    background: var(--ss-red-dark);
    border-color: var(--ss-red-dark);
    transform: translateY(-1px);
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    min-height: var(--ss-header-height);
    background: rgba(7, 22, 43, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-sticky {
    min-height: 72px;
    background: rgba(7, 22, 43, 0.96);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.site-header .navbar {
    min-height: var(--ss-header-height);
    padding: 14px 0;
    transition: min-height 0.25s ease, padding 0.25s ease;
}

.site-header.is-sticky .navbar {
    min-height: 72px;
    padding: 10px 0;
}

.ss-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ss-white);
}

.ss-brand:hover {
    color: var(--ss-white);
}

.ss-brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-red), var(--ss-red-dark));
    font-weight: 900;
    letter-spacing: -0.05em;
    box-shadow: 0 12px 26px rgba(229, 37, 42, 0.28);
}

.ss-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ss-brand-text strong {
    color: var(--ss-white);
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.ss-brand-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
}

.ss-toggler {
    width: 46px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 9px;
    box-shadow: none;
}

.ss-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(229, 37, 42, 0.22);
}

.ss-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--ss-white);
}
.site-logo {
    width: 190px;
    height: 56px;
    object-fit: contain;
    display: block;
}
.navbar .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-weight:700;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--ss-orange) !important;
}

/* underline only for normal menu links, not dropdown-toggle */
.navbar .nav-link:not(.dropdown-toggle)::before {
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--ss-orange);
    opacity: 0;
    transition: width 0.22s ease, opacity 0.22s ease;
}

.navbar .nav-link:not(.dropdown-toggle):hover::before,
.navbar .nav-link:not(.dropdown-toggle).active::before {
    width: 100%;
    opacity: 1;
}

/* keep Bootstrap dropdown arrow clean */
.navbar .dropdown-toggle::after {
    position: static;
    width: auto;
    height: auto;
    margin-left: 8px;
    vertical-align: 0.12em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    background: transparent;
    opacity: 1;
    content: "";
}
.ss-dropdown-menu {
    min-width: 240px;
    padding: 10px;
    border: 1px solid rgba(11, 31, 58, 0.10);
    border-radius: 18px;
    background: var(--ss-white);
    box-shadow: 0 22px 60px rgba(11, 31, 58, 0.16);
}

.ss-dropdown-menu .dropdown-item {
    padding:7px 14px;
    border-radius: 12px;
    color: var(--ss-navy);
    font-size: 14px;
    font-weight: 800;
    transition: color 0.22s ease, background 0.22s ease;
}

.ss-dropdown-menu .dropdown-item:hover,
.ss-dropdown-menu .dropdown-item:focus,
.ss-dropdown-menu .dropdown-item.active {
    color: var(--ss-orange);
    background: #fff7ed;
}

.navbar .dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: 0.12em;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu {
        margin-top: 14px;
    }
}

@media (max-width: 991.98px) {
    .ss-dropdown-menu {
        margin-top: 8px;
        border-radius: 14px;
        box-shadow: none;
    }

    .ss-dropdown-menu .dropdown-item {
        padding: 10px 12px;
    }
}
.btn-ss-header {
    min-height: 44px;
    padding: 10px 22px;
    border: 0;
    border-radius: 999px;
    color: var(--ss-white) !important;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-ss-header:hover,
.btn-ss-header:focus {
    color: var(--ss-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.42);
    background: linear-gradient(135deg, var(--ss-orange-dark), var(--ss-orange));
}

.btn-ss-header:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

@media (max-width: 991.98px) {
    .btn-ss-header {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
}
/*
|--------------------------------------------------------------------------
| Autocomplete
|--------------------------------------------------------------------------
*/
.autocomplete-wrap {
	position: relative;
	width: 100%;
}

.autocomplete-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 99999;
	display: none;
	max-height: 240px;
	overflow-y: auto;
	padding: 8px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(11, 31, 58, 0.12);
	box-shadow: 0 22px 60px rgba(11, 31, 58, 0.18);
}

.autocomplete-dropdown.is-visible {
	display: block;
}

.autocomplete-item {
	width: 100%;
	display: block;
	padding: 12px 14px;
	border: 0;
	border-radius: 14px;
	background: transparent;
	color: var(--ss-navy);
	text-align: left;
	cursor: pointer;
}

.autocomplete-item:hover,
.autocomplete-item:focus {
	background: #fff7ed;
}

.autocomplete-item strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ss-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
	white-space: normal;
	word-break: break-word;
}

.autocomplete-item span,
.autocomplete-empty {
	display: block;
	color: var(--ss-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	white-space: normal;
	word-break: break-word;
}

.autocomplete-empty {
	padding: 12px 14px;
}

/* Airport transfer mobile spacing fix */
#airportTransferFields {
	overflow: visible !important;
}

#airportTransferFields #airportFieldBox,
#airportTransferFields #airportCityFieldBox {
	position: relative;
	z-index: 1;
	overflow: visible !important;
}

#airportTransferFields #airportFieldBox.autocomplete-open,
#airportTransferFields #airportCityFieldBox.autocomplete-open {
	z-index: 9999;
}

@media (max-width: 575.98px) {
	#airportTransferFields #airportFieldBox.autocomplete-open,
	#airportTransferFields #airportCityFieldBox.autocomplete-open {
		padding-bottom: 96px;
	}

	#airportTransferFields .autocomplete-dropdown {
		max-height: 180px;
		padding: 6px;
		border-radius: 16px;
	}

	#airportTransferFields .autocomplete-item {
		padding: 10px 12px;
	}

	#airportTransferFields .autocomplete-item strong {
		font-size: 14px;
	}

	#airportTransferFields .autocomplete-item span,
	#airportTransferFields .autocomplete-empty {
		font-size: 12px;
	}
}
/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/
.airport-switch-box {
    transition: transform 0.28s ease, opacity 0.28s ease;
    will-change: transform, opacity;
}

.airport-switch-box.is-moving-left {
    animation: airportMoveLeft 0.28s ease;
}

.airport-switch-box.is-moving-right {
    animation: airportMoveRight 0.28s ease;
}
@keyframes airportMoveLeft {
    0% {
        opacity: 0.65;
        transform: translateX(18px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes airportMoveRight {
    0% {
        opacity: 0.65;
        transform: translateX(-18px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-section {
    position: relative;
    min-height: 820px;
    padding: 150px 0 96px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--ss-white);
    background:
        radial-gradient(circle at 10% 12%, rgba(249, 115, 22, 0.22), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.12), transparent 32%),
        linear-gradient(135deg, var(--ss-navy-dark) 0%, var(--ss-navy) 52%, var(--ss-navy-soft) 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 76%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.28;
    pointer-events: none;
}

.hero-glow-one {
    top: -170px;
    left: -120px;
    background: var(--ss-red);
}

.hero-glow-two {
    right: -140px;
    bottom: 80px;
    background: var(--ss-yellow);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    margin-bottom: 28px;
    padding: 10px 20px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(229, 37, 42, 0.16);
    border: 1px solid rgba(255,255,255, 0.36);
    font-size: 15px;
    font-weight: 800;
}

.hero-pill span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background:#ffffff;
    box-shadow: 0 0 0 6px rgba(255,255,255, 0.18);
}

.hero-content h1 {
    margin: 0;
    color: var(--ss-white);
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing:0.02em;
}

.hero-content h1 span {
    color: var(--ss-red);
}

.hero-content p {
    max-width:1140px;
    margin:38px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(16px, 1.5vw,20px);
    line-height: 1.45;
    font-weight: 400;
}

/*
|--------------------------------------------------------------------------
| Booking Card
|--------------------------------------------------------------------------
*/
.front-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.booking-card {
    position: relative;
    z-index: 3;
    max-width:98%;
    min-height: 236px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 22px;
    background: var(--ss-white);
    box-shadow: var(--ss-shadow-dark);
}
.booking-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px;
    margin: 0 0 24px;
    border: 1px solid rgba(11, 31, 58, 0.10);
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.95);
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.booking-tabs.nav-tabs {
    border-bottom: 1px solid rgba(11, 31, 58, 0.10);
}

.booking-tabs::-webkit-scrollbar {
    display: none;
}

.booking-tabs .nav-item {
    margin: 0;
}

.booking-tabs .nav-link {
    position: relative;
    white-space: nowrap;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 15px;
    color: var(--ss-navy);
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.booking-tabs .nav-link:hover {
    color: var(--ss-orange);
    background: rgba(249, 115, 22, 0.08);
}

.booking-tabs .nav-link.active {
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    box-shadow: 0 14px 34px rgba(11, 31, 58, 0.22);
    transform: translateY(-1px);
}

.booking-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 14px;
    height: 14px;
    background: var(--ss-orange);
    border-radius: 4px;
    transform: translateX(-50%) rotate(45deg);
}

.booking-tabs .nav-link:focus {
    box-shadow: none;
}

.booking-tabs .nav-link:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.28);
    outline-offset: 3px;
}

.front-booking-form {
    padding-top: 24px;
}

.front-booking-form .form-label {
    color: var(--ss-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.front-booking-form .form-control,
.front-booking-form .form-select {
    min-height: 58px;
    border: 1px solid var(--ss-border);
    border-radius: 12px;
    color: var(--ss-dark);
    background-color: var(--ss-white);
    font-size: 16px;
    font-weight: 500;
    padding: 13px 16px;
    box-shadow: none;
}

.front-booking-form .form-control::placeholder {
    color: #9ca3af;
}

.front-booking-form .form-control:focus,
.front-booking-form .form-select:focus {
    border-color: rgba(0, 0, 0, 0.55);
    box-shadow: 0 0 0 0rem rgba(229, 37, 42, 0.12);
}
.front-message-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 22, 43, 0.76);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.front-message-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.front-message-box {
    width: min(520px, 100%);
    padding: 42px 34px;
    border-radius: 28px;
    background: var(--ss-white);
    text-align: center;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
    transform: translateY(18px) scale(0.96);
    transition: transform 0.35s ease;
}

.front-message-overlay.is-visible .front-message-box {
    transform: translateY(0) scale(1);
}

.front-message-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    color: var(--ss-white);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.front-message-overlay.is-error .front-message-icon {
    background: linear-gradient(135deg, #7f1d1d, #ef4444);
}

.front-message-title {
    margin-bottom: 10px;
    color: var(--ss-navy);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}

.front-message-text {
    color: var(--ss-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}
.front-duplicate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px 24px;
    background: rgba(7, 22, 43, 0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.front-duplicate-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.front-duplicate-box {
    width: min(980px, 100%);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    margin: auto 0;
}

.front-duplicate-overlay.is-visible .front-duplicate-box {
    transform: translateY(0) scale(1);
}

.front-duplicate-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    color: var(--ss-white);
    font-size: 38px;
    font-weight: 900;
}

.front-duplicate-box h3 {
    margin: 0 0 12px;
    color: var(--ss-navy);
    font-size: 28px;
    font-weight: 900;
}

.front-duplicate-box p {
    margin: 0;
    color: var(--ss-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.front-duplicate-meta {
    margin: 20px 0 26px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff7ed;
    color: var(--ss-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.front-duplicate-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.front-duplicate-actions .btn {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 800;
}
.front-duplicate-box {
    width: min(920px, 100%);
}

.front-duplicate-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 22px 0 28px;
}

.front-duplicate-panel {
    text-align: left;
    border: 1px solid var(--ss-border);
    border-radius: 20px;
    background: #fff7ed;
    overflow: hidden;
}

.front-duplicate-panel-title {
    padding: 13px 16px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    font-size: 15px;
    font-weight: 900;
}

.front-duplicate-meta {
    margin: 0;
    padding: 14px 16px;
    border-radius: 0;
    background: transparent;
    color: var(--ss-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.front-duplicate-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.front-duplicate-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(11, 31, 58, 0.10);
}

.front-duplicate-table td {
    padding: 8px 0;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.5;
}

.front-duplicate-table td:first-child {
    width: 42%;
    padding-right: 10px;
    color: var(--ss-navy);
    font-weight: 900;
}

.front-duplicate-table td:last-child {
    color: var(--ss-muted);
    font-weight: 700;
}
@media (max-height: 760px) {
    .front-duplicate-overlay {
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .front-duplicate-box {
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 768px) {
    .front-duplicate-overlay {
        padding: 16px;
    }

    .front-duplicate-box {
        max-height: calc(100vh - 32px);
    }

    .front-duplicate-compare {
        grid-template-columns: 1fr;
    }

    .front-duplicate-actions {
        flex-direction: column;
    }

    .front-duplicate-actions .btn {
        width: 100%;
    }
}
.front-booking-form .btn{
	margin-top:1.9rem!important
}
.package-empty-box {
    max-width: 760px;
    margin: 0 auto 46px;
    padding: 28px 30px;
    border-radius: 24px;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.22);
    box-shadow: 0 18px 44px rgba(249, 115, 22, 0.08);
}

.package-empty-box h2 {
    margin-bottom: 10px;
    color: var(--ss-navy);
    font-size: 24px;
    font-weight: 900;
}

.package-empty-box p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}
.front-package-card {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.front-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.16);
}

.front-package-image {
    position: relative;
    flex: 0 0 230px;
    height: 230px;
    overflow: hidden;
    background: var(--ss-navy);
}
.front-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front-package-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ss-white);
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
}
.front-package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    font-size: 12px;
    font-weight: 900;
}

.front-package-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.front-package-body h3 {
    min-height: 58px;
    margin-bottom: 10px;
    color: var(--ss-navy);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
}

.front-package-body p {
    min-height: 74px;
    margin-bottom: 16px;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}

.front-package-meta,
.front-package-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.front-package-meta {
    min-height: 36px;
}

.front-package-inclusions {
    min-height: 72px;
}

.front-package-meta span,
.front-package-inclusions span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: var(--ss-navy);
    font-size: 12px;
    font-weight: 800;
}

.front-package-inclusions span {
    background: #fff7ed;
    color: var(--ss-orange-dark);
}

.front-package-action {
    margin-top: auto;
    padding-top: 6px;
}

.front-package-action .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.package-listing-section {
    padding: 30px 0 90px;
    background: #f8fafc;
}

.package-listing-section .section-title {
    max-width: 820px;
    margin: 0 auto 34px;
}

.package-listing-section .section-title span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--ss-orange);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-listing-section .section-title h1 {
    margin-bottom: 12px;
    color: var(--ss-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.package-listing-section .section-title p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--ss-muted);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}
.chosen-packages-title {
    margin-bottom: 28px;
}

.chosen-packages-title span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--ss-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.chosen-packages-title h2 {
    margin-bottom: 8px;
    color: var(--ss-navy);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.chosen-packages-title p {
    margin: 0;
    color: var(--ss-muted);
    font-size: 17px;
    font-weight: 600;
}
.front-breadcrumb-wrap {
    padding: calc(var(--ss-header-height) + 40px) 0 0;
    background: #f8fafc;
}
.front-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.front-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--ss-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.front-breadcrumb-item + .front-breadcrumb-item::before {
    content: "/";
    margin: 0 10px;
    color: rgba(100, 116, 139, 0.65);
    font-weight: 900;
}

.front-breadcrumb-item a {
    color: var(--ss-navy);
    text-decoration: none;
    transition: color 0.25s ease;
}

.front-breadcrumb-item a:hover {
    color: var(--ss-orange);
}

.front-breadcrumb-item.active {
    color: var(--ss-orange);
}
/*
|--------------------------------------------------------------------------
| About
|--------------------------------------------------------------------------
*/

.about-section {
    background: var(--ss-white);
}

.why-box {
    min-height: 118px;
    padding: 20px;
    border: 1px solid var(--ss-border);
    border-radius: 18px;
    background: var(--ss-white);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}

.why-box strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ss-dark);
    font-size: 17px;
    font-weight: 850;
}

.why-box span {
    display: block;
    color: var(--ss-muted);
    font-size: 14px;
    line-height: 1.6;
}

/*
|--------------------------------------------------------------------------
| Services
|--------------------------------------------------------------------------
*/

.services-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:24px;
}

.service-card {
    height: 100%;
}
.service-card {
    min-height: 292px;
    padding: 30px;
    border: 1px solid var(--ss-border);
    border-radius: 24px;
    background: var(--ss-white);
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 37, 42, 0.28);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    color: var(--ss-white);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.22);
}

.service-card h3 {
    margin: 0 0 12px;
    color: var(--ss-dark);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.service-card p {
    margin: 0;
    color: var(--ss-muted);
    font-size: 15px;
    line-height: 1.8;
}

/*
|--------------------------------------------------------------------------
| Highlights / Packages
|--------------------------------------------------------------------------
*/

.packages-section {
    background: var(--ss-white);
}

.highlight-card {
    min-height: 248px;
    padding: 30px;
    border-radius: 26px;
    color: var(--ss-white);
    background:
        radial-gradient(circle at 85% 12%, rgba(249, 115, 22, 0.34), transparent 32%),
        linear-gradient(145deg, var(--ss-navy-dark), var(--ss-navy));
    box-shadow: var(--ss-shadow);
    overflow: hidden;
    position: relative;
}

.highlight-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -32px;
    bottom: -32px;
    border-radius: 999px;
    background: rgba(229, 37, 42, 0.18);
}

.highlight-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.highlight-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.cta-section {
    padding: 30px 0 96px;
    background: var(--ss-white);
}

.cta-box {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
    border-radius: 32px;
    color: var(--ss-white);
    background:
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.22);
}

.cta-box .section-label {
    color: var(--ss-white);
}

.cta-box .section-label::before {
    background: var(--ss-white);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.cta-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer {
    color: rgba(255, 255, 255, 0.74);
    background: var(--ss-navy-dark);
    padding: 76px 0 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ss-white);
    margin-bottom: 22px;
}

.footer-brand:hover {
    color: var(--ss-white);
}

.footer-brand strong {
    display: block;
    color: var(--ss-white);
    font-size: 21px;
    line-height: 1.1;
    font-weight: 850;
}

.footer-brand small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 600;
}

.footer-text {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 20px;
    color: var(--ss-white);
    font-size: 17px;
    font-weight: 850;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li + li {
    margin-top: 11px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    font-weight: 600;
}

.site-footer a:hover {
    color: var(--ss-white);
}

.footer-bottom {
    margin-top: 56px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
}

/*
|--------------------------------------------------------------------------
| Scroll Top
|--------------------------------------------------------------------------
*/

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--ss-white);
    background: var(--ss-red);
    box-shadow: 0 16px 34px rgba(229, 37, 42, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--ss-red-dark);
}

/*
|--------------------------------------------------------------------------
| Reveal Animation
|--------------------------------------------------------------------------
*/

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*---Package Details----*/
.package-detail-hero {
    padding: 38px 0 42px;
    background: #f8fafc;
}

.package-detail-hero-card {
    padding: 34px;
    border-radius: 30px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.10);
}

.package-detail-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.package-detail-hero h1 {
    margin-bottom: 16px;
    color: var(--ss-navy);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.package-detail-hero p {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--ss-muted);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}

.package-detail-image {
    height: 360px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--ss-navy);
}

.package-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-detail-section {
    padding: 42px 0 90px;
    background: #f8fafc;
}

.package-detail-content-card,
.package-detail-side-card {
    padding: 28px;
    border-radius: 24px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
}

.package-detail-content-card + .package-detail-content-card {
    margin-top: 24px;
}

.package-detail-content-card h2,
.package-detail-side-card h3 {
    margin-bottom: 14px;
    color: var(--ss-navy);
    font-size: 24px;
    font-weight: 900;
}

.package-detail-content {
    color: var(--ss-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.package-detail-content p:last-child {
    margin-bottom: 0;
}

.package-detail-content ul,
.package-detail-content ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.package-detail-content li {
    margin-bottom: 8px;
}

.package-detail-side-card {
    /*position: sticky;*/
    top: calc(var(--ss-header-height) + 24px);
}
.front-package-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.18);
}

.front-package-price span {
    color: var(--ss-muted);
    font-size: 13px;
    font-weight: 800;
}

.front-package-price strong {
    color: var(--ss-orange-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.front-package-price-muted {
    background: #f8fafc;
    border-color: var(--ss-border);
}

.front-package-price-muted strong {
    color: var(--ss-navy);
    font-size: 18px;
}
/*-----Service Details--*/
.service-detail-section {
    padding: 40px 0 90px;
    background: #f8fafc;
}

.service-detail-card {
    padding: 44px;
    border-radius: 30px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.10);
}

.service-detail-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--ss-orange);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-detail-card h1 {
    margin-bottom: 14px;
    color: var(--ss-navy);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.service-detail-card p {
    max-width: 780px;
    margin: 0;
    color: var(--ss-muted);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
}
.service-page-hero {
    padding: 42px 0 54px;
    background: #f8fafc;
}

.service-page-hero-card {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-navy-dark));
    box-shadow: 0 28px 80px rgba(11, 31, 58, 0.18);
}

.service-page-hero-card::before {
    content: "";
    position: absolute;
    inset: -80px -120px auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.22);
    filter: blur(8px);
}

.service-page-hero-card::after {
    content: "";
    position: absolute;
    inset: auto auto -110px -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(10px);
}

.service-page-hero-card > .row {
    position: relative;
    z-index: 2;
}

.service-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--ss-white);
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.38);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-page-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    color: var(--ss-white);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.service-page-hero p {
    max-width: 700px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.service-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.service-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--ss-white);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 800;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-ss-outline {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    color: var(--ss-white) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn-ss-outline:hover,
.btn-ss-outline:focus {
    color: var(--ss-white) !important;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-2px);
}

.service-hero-stat-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.service-hero-stat-card h3 {
    margin-bottom: 16px;
    color: var(--ss-navy);
    font-size: 24px;
    font-weight: 900;
}

.service-hero-stat-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-hero-stat-card li {
    margin-bottom: 10px;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.service-hero-stat-card li:last-child {
    margin-bottom: 0;
}

.emergency-card {
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.24);
}

.emergency-card p {
    margin-bottom: 0;
    color: var(--ss-navy);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.75;
}

.service-info-section,
.service-process-section,
.service-checklist-section,
.service-trust-section {
    padding: 74px 0;
    background: #f8fafc;
}

.service-info-section {
    padding-top: 82px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-feature-card {
    height: 100%;
    padding: 26px;
    border-radius: 24px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 52px rgba(11, 31, 58, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.13);
}

.service-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-size: 25px;
    font-weight: 900;
}

.service-feature-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    color: var(--ss-white);
}
.service-feature-card h3 {
    margin-bottom: 10px;
    color: var(--ss-navy);
    font-size: 21px;
    font-weight: 900;
}

.service-feature-card p {
    margin-bottom: 0;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.service-side-title span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--ss-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-side-title h2 {
    margin-bottom: 14px;
    color: var(--ss-navy);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.service-side-title p {
    margin-bottom: 0;
    color: var(--ss-muted);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.service-step-list {
    display: grid;
    gap: 16px;
}

.service-step-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 16px 44px rgba(11, 31, 58, 0.07);
}

.service-step-item strong {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    font-size: 18px;
    font-weight: 900;
}

.service-step-item h3 {
    margin-bottom: 6px;
    color: var(--ss-navy);
    font-size: 20px;
    font-weight: 900;
}

.service-step-item p {
    margin-bottom: 0;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}

.service-two-column-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-list-box {
    height: 100%;
    padding: 26px;
    border-radius: 24px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 52px rgba(11, 31, 58, 0.08);
}

.service-list-box h3 {
    margin-bottom: 14px;
    color: var(--ss-navy);
    font-size: 22px;
    font-weight: 900;
}

.service-list-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-list-box li {
    margin-bottom: 10px;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.service-list-box li:last-child {
    margin-bottom: 0;
}

.service-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-trust-card {
    padding: 28px;
    border-radius: 24px;
    text-align: center;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 52px rgba(11, 31, 58, 0.08);
}

.service-trust-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ss-orange);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.service-trust-card span {
    color: var(--ss-navy);
    font-size: 15px;
    font-weight: 900;
}

.service-checklist-card {
    padding: 34px;
    border-radius: 30px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 22px 70px rgba(11, 31, 58, 0.10);
}

.service-checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.service-checklist-grid span {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--ss-navy);
    background: #f8fafc;
    border: 1px solid var(--ss-border);
    font-size: 14px;
    font-weight: 800;
}

.service-highlight-section {
    padding: 24px 0 90px;
    background: #f8fafc;
}

.service-highlight-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-navy-dark));
    box-shadow: 0 26px 76px rgba(11, 31, 58, 0.18);
}

.service-highlight-card span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--ss-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-highlight-card h2 {
    margin-bottom: 10px;
    color: var(--ss-white);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.service-highlight-card p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .service-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-checklist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .service-page-hero-card {
        padding: 32px;
    }

    .service-two-column-list,
    .service-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-highlight-card {
        display: block;
    }

    .service-highlight-card .btn {
        margin-top: 22px;
    }
}

@media (max-width: 575.98px) {
    .service-page-hero-card,
    .service-checklist-card,
    .service-highlight-card {
        padding: 24px;
        border-radius: 24px;
    }

    .service-page-hero h1 {
        font-size: 36px;
    }

    .service-feature-grid,
    .service-two-column-list,
    .service-trust-grid,
    .service-checklist-grid {
        grid-template-columns: 1fr;
    }

    .service-step-item {
        grid-template-columns: 1fr;
    }

    .service-hero-actions .btn {
        width: 100%;
    }
}

.journey-promise-section {
    padding: 56px 0;
}

.journey-promise-card {
    position: relative;
    padding: 46px 24px 28px;
    border: 2px solid rgba(11, 31, 58, 0.20);
    border-radius: 28px;
    background:radial-gradient(circle at top right, rgba(255, 193, 7, 0.24), transparent 32%),
        linear-gradient(135deg, #071f3a 0%, #0b315b 55%, #08223f 100%);
    box-shadow: 0 18px 52px rgba(11, 31, 58, 0.08);
}

.journey-promise-title {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 360px;
    padding: 10px 28px;
    border-radius: 12px;
    color: var(--ss-white);
    background: var(--ss-orange);
    text-align: center;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.18);
}

.journey-promise-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.journey-promise-item {
    position: relative;
    min-height: 150px;
    padding: 8px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.journey-promise-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.24);
}

.journey-promise-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ss-white);
    background: var(--ss-orange);
    border: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.journey-promise-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.journey-promise-item h3 {
    margin: 0;
    color: var(--ss-white);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.38;
}

@media (max-width: 1199.98px) {
    .journey-promise-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 18px;
    }

    .journey-promise-item:nth-child(3)::after,
    .journey-promise-item:nth-child(6)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .journey-promise-title {
        min-width: auto;
        width: calc(100% - 48px);
        font-size: 15px;
        padding: 10px 14px;
    }

    .journey-promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-promise-item:nth-child(2)::after,
    .journey-promise-item:nth-child(4)::after,
    .journey-promise-item:nth-child(6)::after {
        display: none;
    }

    .journey-promise-item:nth-child(3)::after {
        display: block;
    }
}

@media (max-width: 480px) {
    .journey-promise-card {
        padding: 42px 16px 20px;
    }

    .journey-promise-grid {
        grid-template-columns: 1fr;
    }

    .journey-promise-item::after {
        display: none !important;
    }
}
/*----Responsive CSS-----*/
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
	.airport-switch-box,
    .airport-switch-box.is-moving-left,
    .airport-switch-box.is-moving-right {
        transition: none;
        animation: none;
        transform: none;
    }
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media (max-width: 1399.98px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
    }
}

@media (max-width: 1199.98px) {
    .hero-section {
        min-height: 780px;
    }
    .booking-card {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    :root {
        --ss-header-height: 76px;
    }

    .site-header .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(7, 22, 43, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link {
        padding: 12px 8px;
    }

    .hero-section {
        min-height: auto;
        padding: 130px 0 74px;
    }

    .hero-content {
        margin-bottom: 34px;
    }

    .booking-card {
        padding: 22px;
        border-radius: 20px;
    }
	.booking-tabs {
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
    }

    .booking-tabs .nav-link {
        min-height: 46px;
        padding: 11px 15px;
        font-size: 14px;
        border-radius: 14px;
    }
	.services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .section-padding {
        padding: 72px 0;
    }
	.front-breadcrumb-wrap {
        padding-top: calc(var(--ss-header-height) + 40px);
    }
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px;
    }
	.package-detail-side-card {
        position: static;
    }

    .package-detail-image {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        letter-spacing: -0.045em;
    }

    .hero-content p {
        margin-top: 22px;
    }

    .booking-card {
        padding: 18px;
    }

    .booking-tabs {
        gap: 8px;
        padding-bottom: 16px;
    }

    .booking-tabs .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }

    .front-booking-form .form-control,
    .front-booking-form .form-select {
        min-height: 54px;
    }
	
	.front-breadcrumb-wrap {
        padding-top: calc(var(--ss-header-height) + 40px);
    }
    .btn-ss-search {
        min-height: 58px;
        font-size: 16px;
    }

    .section-title {
        letter-spacing: -0.035em;
    }

    .service-card,
    .highlight-card {
        min-height: auto;
    }

    .cta-section {
        padding-bottom: 72px;
    }

    .cta-box {
        padding: 30px;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {
    .ss-brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 14px;
    }

    .ss-brand-text strong {
        font-size: 17px;
    }

    .ss-brand-text small {
        display: none;
    }

    .hero-section {
        padding-top: 118px;
    }

    .hero-pill {
        min-height: 38px;
        padding: 9px 15px;
        font-size: 13px;
    }
	.front-message-box {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .front-message-title {
        font-size: 24px;
    }

    .front-message-icon {
        width: 68px;
        height: 68px;
        font-size: 32px;
    }
	.front-duplicate-box {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .front-duplicate-actions .btn {
        width: 100%;
    }
    .booking-card {
        border-radius: 18px;
    }
	.booking-tabs {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .booking-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .booking-tabs .nav-link.active::after {
        display: none;
    }
	.services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        min-height: auto;
    }
    .section-padding {
        padding: 58px 0;
    }

    .why-box {
        min-height: auto;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
	.front-duplicate-compare {
        grid-template-columns: 1fr;
    }
	 .front-breadcrumb-wrap {
        padding-top: calc(var(--ss-header-height) + 40px);
    }

    .front-breadcrumb-item {
        font-size: 13px;
    }

    .front-breadcrumb-item + .front-breadcrumb-item::before {
        margin: 0 7px;
    }
	.package-detail-hero-card,
    .package-detail-content-card,
    .package-detail-side-card {
        padding: 22px;
        border-radius: 22px;
    }

    .package-detail-image {
        height: 240px;
    }
	.booking-card,
    .airport-switch-box,
    .tab-pane,
    .tab-content {
        overflow: visible;
    }

    .autocomplete-wrap {
        position: relative;
        z-index: 50;
    }

    .autocomplete-wrap:focus-within {
        z-index: 9999;
    }

    .autocomplete-wrap .autocomplete-results,
    .autocomplete-wrap .front-autocomplete-results,
    .autocomplete-wrap .autocomplete-suggestions,
    .autocomplete-wrap .js-autocomplete-results {
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        max-height: 220px;
        padding: 6px;
        border-radius: 16px;
    }

    .autocomplete-wrap .autocomplete-item,
    .autocomplete-wrap .front-autocomplete-item,
    .autocomplete-wrap .autocomplete-suggestion,
    .autocomplete-wrap .js-autocomplete-item {
        padding: 11px 12px;
    }
}
/* Front autocomplete final mobile fix */
.booking-form-group,
.front-form-group,
.airport-field-box,
.autocomplete-parent {
    position: relative;
    z-index: 1;
}

.booking-form-group.autocomplete-open,
.front-form-group.autocomplete-open,
.airport-field-box.autocomplete-open,
.autocomplete-parent.autocomplete-open {
    z-index: 99999;
}

.autocomplete-wrap {
    position: relative;
    width: 100%;
}

.autocomplete-wrap .autocomplete-results {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
    display: none;
    max-height: 240px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 22px 60px rgba(11, 31, 58, 0.20);
}

.autocomplete-wrap .autocomplete-results.show {
    display: block;
}

.autocomplete-wrap .autocomplete-item {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--ss-navy);
    text-align: left;
    cursor: pointer;
}

.autocomplete-wrap .autocomplete-item:hover,
.autocomplete-wrap .autocomplete-item:focus {
    background: #fff7ed;
}

.autocomplete-wrap .autocomplete-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ss-navy);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

.autocomplete-wrap .autocomplete-item small {
    display: block;
    color: var(--ss-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .booking-card,
    .tab-content,
    .tab-pane,
    .airport-switch-box,
    .booking-form-group,
    .front-form-group,
    .airport-field-box {
        overflow: visible !important;
    }

    .booking-form-group.autocomplete-open,
    .front-form-group.autocomplete-open,
    .airport-field-box.autocomplete-open,
    .autocomplete-parent.autocomplete-open {
        padding-bottom: 86px;
    }

    .autocomplete-wrap .autocomplete-results {
        top: calc(100% + 6px) !important;
        max-height: 180px;
        padding: 6px;
        border-radius: 16px;
    }

    .autocomplete-wrap .autocomplete-item {
        padding: 10px 12px;
    }

    .autocomplete-wrap .autocomplete-item strong {
        font-size: 14px;
    }

    .autocomplete-wrap .autocomplete-item small {
        font-size: 12px;
    }
}
.airport-autocomplete-parent {
    position: relative;
    z-index: 20;
}

.airport-autocomplete-parent.airport-autocomplete-open {
    z-index: 99999;
}

.airport-autocomplete-wrap {
    position: relative;
    width: 100%;
}

.airport-autocomplete-wrap .autocomplete-results {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
    max-height: 230px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 22px 60px rgba(11, 31, 58, 0.20);
}

.airport-autocomplete-wrap .autocomplete-item {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--ss-navy);
    text-align: left;
    cursor: pointer;
}

.airport-autocomplete-wrap .autocomplete-item:hover,
.airport-autocomplete-wrap .autocomplete-item:focus {
    background: #fff7ed;
}

.airport-autocomplete-wrap .autocomplete-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ss-navy);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

.airport-autocomplete-wrap .autocomplete-item small {
    display: block;
    color: var(--ss-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .airport-autocomplete-parent.airport-autocomplete-open {
        padding-bottom: 86px;
    }

    .airport-autocomplete-wrap .autocomplete-results {
        top: calc(100% + 6px) !important;
        max-height: 180px;
        padding: 6px;
        border-radius: 16px;
    }

    .airport-autocomplete-wrap .autocomplete-item {
        padding: 10px 12px;
    }

    .airport-autocomplete-wrap .autocomplete-item strong {
        font-size: 14px;
    }
}
/* Airport transfer autocomplete spacing fix */
#airportTransferFields {
    overflow: visible !important;
}

#airportTransferFields #airportFieldBox,
#airportTransferFields #airportCityFieldBox {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

#airportTransferFields #airportFieldBox.autocomplete-open,
#airportTransferFields #airportCityFieldBox.autocomplete-open {
    z-index: 9999;
}

#airportTransferFields .autocomplete-wrap {
    position: relative;
    width: 100%;
}

#airportTransferFields .autocomplete-results {
    display: none;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    max-height: 220px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 22px 60px rgba(11, 31, 58, 0.18);
}

#airportTransferFields .autocomplete-results.show {
    display: block;
}

#airportTransferFields .autocomplete-item {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--ss-navy);
    text-align: left;
    cursor: pointer;
}

#airportTransferFields .autocomplete-item:hover,
#airportTransferFields .autocomplete-item:focus {
    background: #fff7ed;
}

#airportTransferFields .autocomplete-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ss-navy);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

#airportTransferFields .autocomplete-item small {
    display: block;
    color: var(--ss-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    #airportTransferFields #airportFieldBox.autocomplete-open,
    #airportTransferFields #airportCityFieldBox.autocomplete-open {
        padding-bottom: 92px;
    }

    #airportTransferFields .autocomplete-results {
        max-height: 180px;
        padding: 6px;
        border-radius: 16px;
    }

    #airportTransferFields .autocomplete-item {
        padding: 10px 12px;
    }

    #airportTransferFields .autocomplete-item strong {
        font-size: 14px;
    }

    #airportTransferFields .autocomplete-item small {
        font-size: 12px;
    }
}
/*-----About Section----*/
.about-preview-action {
    margin-top: 26px;
}
.about-page-hero {
    padding: 42px 0 58px;
    background: #f8fafc;
}

.about-page-hero-card {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-navy-dark));
    box-shadow: 0 28px 80px rgba(11, 31, 58, 0.18);
}

.about-page-kicker,
.about-page-content-card span,
.about-rating-content span,
.about-cta-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--ss-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-page-hero h1 {
    max-width: 820px;
    margin-bottom: 18px;
    color: var(--ss-white);
    font-size: clamp(38px, 5.4vw, 68px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.about-page-hero p {
    max-width: 760px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-ss-outline-dark {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    color: var(--ss-white) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.btn-ss-outline-dark:hover,
.btn-ss-outline-dark:focus {
    color: var(--ss-white) !important;
    background: rgba(255, 255, 255, 0.15);
}

.about-page-trust-box {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.about-page-trust-box span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--ss-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-page-trust-box h2 {
    margin-bottom: 18px;
    color: var(--ss-navy);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.16;
}

.about-page-state-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.about-page-state-grid strong {
    padding: 12px;
    border-radius: 14px;
    color: var(--ss-navy);
    background: #f8fafc;
    border: 1px solid var(--ss-border);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.about-page-trust-box p {
    margin: 0;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.about-page-intro,
.about-mission-section,
.about-services-section,
.about-rating-section,
.about-testimonial-section {
    padding: 76px 0;
    background: #f8fafc;
}
.about-services-section p{
	letter-spacing:0.1px
}
.about-page-content-card {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 28px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 52px rgba(11, 31, 58, 0.08);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
	color:#ffffff
}

.about-page-content-card h2 {
    margin-bottom: 16px;
    color: var(--ss-navy);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.about-page-content-card p {
    margin-bottom: 14px;
    color: var(--ss-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.78;
}

.about-page-content-card p:last-child {
    margin-bottom: 0;
}

.about-page-list-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.about-page-list-card li {
    margin-bottom: 11px;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
}

.about-page-list-card li:last-child {
    margin-bottom: 0;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-mission-card,
.about-service-card,
.about-testimonial-card {
    height: 100%;
    padding: 28px;
    border-radius: 26px;
    background: var(--ss-white);
    border: 1px solid var(--ss-border);
    box-shadow: 0 18px 52px rgba(11, 31, 58, 0.08);
}

.about-mission-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
}

.about-mission-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.about-mission-card h3,
.about-service-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ss-navy);
    font-size: 23px;
    font-weight: 900;
}

.about-mission-card p,
.about-service-card p,
.about-testimonial-card p {
    margin: 0;
    color:#111111;
    font-size: 15px;
    font-weight:400;
    line-height: 1.65;
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-service-card {
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(11, 31, 58, 0.13);
}

.about-rating-card {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-navy-dark));
    box-shadow: 0 26px 76px rgba(11, 31, 58, 0.18);
}

.about-rating-content h2 {
    margin-bottom: 12px;
    color: var(--ss-white);
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 900;
    line-height: 1.12;
}

.about-rating-content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.about-rating-display {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.about-rating-stars {
    margin-bottom: 10px;
    color: #facc15;
    font-size: 22px;
    letter-spacing: 2px;
}

.about-rating-display strong {
    margin-bottom: 8px;
    color: var(--ss-white);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.about-rating-display small {
    max-width: 160px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.about-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-testimonial-stars {
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.about-testimonial-card p {
    margin-bottom: 22px;
}

.about-testimonial-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ss-navy);
    font-size: 16px;
    font-weight: 900;
}

.about-testimonial-card span {
    color: var(--ss-muted);
    font-size: 13px;
    font-weight: 700;
}

.about-cta-section {
    padding: 24px 0 90px;
    background: #f8fafc;
}

.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-navy-dark));
    box-shadow: 0 26px 76px rgba(11, 31, 58, 0.18);
}

.about-cta-card h2 {
    margin-bottom: 10px;
    color: var(--ss-white);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.about-cta-card p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .about-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .about-page-hero-card {
        padding: 32px;
    }

    .about-mission-grid,
    .about-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-rating-card {
        grid-template-columns: 1fr;
    }

    .about-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-cta-card {
        display: block;
    }

    .about-cta-card .btn {
        margin-top: 22px;
    }
}

@media (max-width: 575.98px) {
    .about-page-hero-card,
    .about-page-content-card,
    .about-mission-card,
    .about-service-card,
    .about-testimonial-card,
    .about-rating-card,
    .about-cta-card {
        padding: 24px;
        border-radius: 24px;
    }

    .about-page-hero h1 {
        font-size: 36px;
    }

    .about-service-grid {
        grid-template-columns: 1fr;
    }

    .about-page-actions .btn {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Footer Contact + Inline SVG Icons
|--------------------------------------------------------------------------
*/
.footer-link-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.footer-contact-list li + li {
    margin-top: 13px;
}

.footer-contact-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-grid;
    place-items: center;
    color: var(--ss-orange);
}

.footer-contact-icon svg,
.footer-social-links svg,
.scroll-top-btn svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
}

.footer-social-links a:hover {
    color: var(--ss-white);
    background: var(--ss-orange);
    border-color: var(--ss-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 650;
}

.footer-bottom-links a:hover {
    color: var(--ss-white);
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 58px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/*
|--------------------------------------------------------------------------
| Homepage Polish: Hero Trust, Service SVG Cards, Steps, CTA
|--------------------------------------------------------------------------
*/
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
    margin: 34px auto 0;
}

.hero-trust-item {
    min-height: 86px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.hero-trust-item strong {
    display: block;
    color: var(--ss-white);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.hero-trust-item span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.home-section-lead {
    max-width: 820px;
    margin-top: 14px;
    margin-bottom: 0;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.10), transparent 32%);
    pointer-events: none;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 30px;
    letter-spacing: 0;
}

.service-icon svg,
.highlight-icon svg,
.home-step-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.service-card p {
    text-align: center;
}

.service-card-action {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
}

.service-card-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ss-red);
    font-size: 14px;
    font-weight: 900;
}

.service-card-action a:hover {
    color: var(--ss-orange-dark);
}

.home-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    color: var(--ss-white);
    background: rgba(255, 255, 255, 0.14);
    font-size: 28px;
}

.home-highlight-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    color: var(--ss-white);
    font-size: 14px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.home-highlight-card a:hover {
    color: var(--ss-yellow);
}

.home-steps-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(229, 37, 42, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.home-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-step-card {
    min-height: 268px;
    padding: 30px;
    border: 1px solid var(--ss-border);
    border-radius: 26px;
    background: var(--ss-white);
    box-shadow: 0 14px 46px rgba(15, 23, 42, 0.06);
}

.home-step-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 20px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-orange));
    font-size: 30px;
    box-shadow: 0 18px 38px rgba(11, 31, 58, 0.16);
}

.home-step-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--ss-red);
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.home-step-card h3 {
    margin: 0 0 12px;
    color: var(--ss-dark);
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.home-step-card p {
    margin: 0;
    color: var(--ss-muted);
    font-size: 15px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-ss-outline-light {
    color: var(--ss-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.62);
}

.btn-ss-outline-light:hover {
    color: var(--ss-navy);
    background: var(--ss-white);
    border-color: var(--ss-white);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .hero-trust-grid,
    .home-steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-item {
        min-height: auto;
    }

    .cta-actions {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-trust-grid {
        gap: 10px;
        margin-top: 24px;
    }

    .service-card,
    .home-step-card {
        padding: 24px;
        border-radius: 22px;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Service & Package Listing Polish
|--------------------------------------------------------------------------
*/
.package-listing-hero {
    padding: 42px 0 0;
    background: #f8fafc;
}

.package-listing-hero-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    color: var(--ss-white);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-navy-dark));
    box-shadow: 0 28px 80px rgba(11, 31, 58, 0.18);
}

.package-listing-hero-card::before {
    content: "";
    position: absolute;
    inset: -70px -100px auto auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.22);
    filter: blur(8px);
}

.package-listing-hero-card > .row {
    position: relative;
    z-index: 2;
}

.package-listing-hero h1 {
    max-width: 830px;
    margin-bottom: 16px;
    color: var(--ss-white);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.package-listing-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.package-listing-mini-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.package-listing-mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ss-navy);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.package-listing-mini-card span {
    display: block;
    margin-bottom: 16px;
    color: var(--ss-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.package-listing-mini-card a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    color: var(--ss-white);
    background: var(--ss-orange);
    font-size: 14px;
    font-weight: 900;
}

.package-listing-mini-card a:hover {
    color: var(--ss-white);
    background: var(--ss-orange-dark);
    transform: translateY(-1px);
}

.package-listing-section {
    background: #f8fafc;
}

.package-listing-section .row > [class*="col-"] {
    align-items: stretch;
}

.front-package-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.front-package-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.front-package-action {
    margin-top: auto;
}

.package-listing-cta-section {
    padding-top: 0;
}

.service-feature-card .service-feature-icon.d-flex {
    display: flex !important;
}

.service-feature-card h3.text-center + p {
    text-align: center;
}

@media (max-width: 991.98px) {
    .package-listing-hero-card {
        padding: 32px;
    }
}

@media (max-width: 575.98px) {
    .package-listing-hero-card {
        padding: 24px;
        border-radius: 24px;
    }

    .package-listing-hero h1 {
        font-size: 36px;
    }
}
.policy-hero-section {
    padding: 70px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.20), transparent 32%),
        linear-gradient(135deg, #071f3a 0%, #0b315b 52%, #08223f 100%);
}

.policy-hero-card {
    border-radius: 28px;
    padding: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.policy-hero-card:before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.18);
}

.policy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: #ffc107;
    font-size: 13px;
    font-weight:800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.policy-hero-card h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.policy-hero-card p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.policy-update-box {
    position: relative;
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    color: #071f3a;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.policy-update-box span {
    display: block;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-update-box strong {
    display: block;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.2;
    color: #071f3a;
}

.policy-update-box small {
    display: block;
    color: #5c6670;
    line-height: 1.6;
}

.policy-page-section {
    padding: 54px 0 80px;
    background:
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.policy-side-card {
    top: 96px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(7, 31, 58, 0.08);
    box-shadow: 0 18px 45px rgba(7, 31, 58, 0.08);
}

.policy-side-card h2 {
    margin: 0 0 16px;
    color: #071f3a;
    font-size: 20px;
    font-weight:900;
}

.policy-index-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-index-list li {
    margin-bottom: 8px;
}

.policy-index-list a {
    display: flex;
    padding: 11px 13px;
    border-radius: 14px;
    color: #334155;
    background: #f8fafc;
    text-decoration: none;
    font-size: 14px;
    font-weight:700;
    transition: all 0.2s ease;
}

.policy-index-list a:hover {
    color: #071f3a;
    background: #fff4d6;
    transform: translateX(4px);
}

.policy-help-box {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: #071f3a;
    color: #ffffff;
}

.policy-help-box span {
    display: block;
    margin-bottom: 8px;
    color: #ffc107;
    font-weight:900;
}

.policy-help-box p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.6;
}

.policy-help-box a {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: #ffc107;
    color: #071f3a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.policy-content-card {
    padding: 32px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(7, 31, 58, 0.08);
    box-shadow: 0 18px 55px rgba(7, 31, 58, 0.08);
}

.policy-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.policy-summary-item {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    border: 1px solid rgba(7, 31, 58, 0.08);
}

.policy-summary-item span {
    display: block;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 12px;
    font-weight:900;
    text-transform: uppercase;
}

.policy-summary-item strong {
    display: block;
    color: #071f3a;
    font-size: 15px;
    line-height: 1.45;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.policy-block {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(7, 31, 58, 0.08);
    box-shadow: 0 8px 24px rgba(7, 31, 58, 0.05);
    scroll-margin-top: 100px;
}

.policy-number {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #071f3a;
    color: #ffc107;
    font-size: 15px;
    font-weight: 900;
}

.policy-block h2 {
    margin: 0 0 10px;
    color: #071f3a;
    font-size: 22px;
    line-height: 1.25;
    font-weight:900;
}

.policy-block p {
    margin: 0 0 10px;
    color: #4b5563;
    font-size: 15.5px;
    line-height: 1.85;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-contact-btn {
    display: inline-flex;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #071f3a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight:900;
    transition: all 0.2s ease;
}

.policy-contact-btn:hover {
    background: #ffc107;
    color: #071f3a;
    transform: translateY(-2px);
}
.front-global-cta-section {
    padding: 54px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.front-global-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(255, 193, 7, 0.24), transparent 32%),
        linear-gradient(135deg, #071f3a 0%, #0b315b 55%, #08223f 100%);
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(7, 31, 58, 0.20);
}

.front-global-cta-card:before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.16);
}

.front-global-cta-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: #ffc107;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.front-global-cta-card h2 {
    position: relative;
    margin: 0 0 12px;
    max-width: 720px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.front-global-cta-card p {
    position: relative;
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 1.75;
}

.front-global-cta-actions {
    position: relative;
    display: grid;
    gap: 14px;
}

.front-global-cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    color: #071f3a;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: all 0.2s ease;
}

.front-global-cta-btn:hover {
    transform: translateY(-3px);
    color: #071f3a;
}

.front-global-cta-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.front-global-cta-whatsapp:hover {
    color: #ffffff;
}

.front-global-cta-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(7, 31, 58, 0.08);
}

.front-global-cta-whatsapp .front-global-cta-icon {
    background: rgba(255, 255, 255, 0.18);
}

.front-global-cta-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.front-global-cta-btn small {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.72;
}

.front-global-cta-btn strong {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}
.front-global-cta-book{
    background:#f97316;
    color: #ffffff;
}
.cta-action-box {
    width: 100%;
    display: grid;
    gap: 16px;
}

.cta-contact-btn {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
}
.cta-booking-btn {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.cta-booking-btn svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.cta-booking-btn span {
    display: inline-block;
}
@media (max-width: 991.98px) {
    .policy-hero-section {
        padding: 46px 0 18px;
    }

    .policy-hero-card {
        padding: 28px;
        border-radius: 22px;
    }

    .policy-content-card {
        padding: 22px;
        border-radius: 22px;
    }

    .policy-summary-grid {
        grid-template-columns: 1fr;
    }

    .policy-side-card {
		position: static !important;
	}
	.front-global-cta-section {
        padding-top: 40px;
    }

    .front-global-cta-card {
        padding: 28px;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {
    .policy-hero-card h1 {
        font-size: 32px;
    }

    .policy-hero-card p {
        font-size: 15px;
    }

    .policy-block {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .policy-number {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .policy-block h2 {
        font-size: 20px;
    }

    .policy-content-card {
        padding: 16px;
    }
	.front-global-cta-card {
        padding: 24px;
    }

    .front-global-cta-btn {
        align-items: flex-start;
    }

    .front-global-cta-btn strong {
        font-size: 15px;
        word-break: break-word;
    }
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #000000;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}
.fleet-filter-card {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 22, 43, 0.10);
    border: 1px solid rgba(7, 22, 43, 0.08);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fleet-card,
.fleet-category-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(7, 22, 43, 0.08);
    box-shadow: 0 18px 45px rgba(7, 22, 43, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover,
.fleet-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(7, 22, 43, 0.14);
}

.fleet-card-image {
    height: 220px;
    display: block;
    background: #f7f9fc;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.fleet-card-placeholder,
.vehicle-detail-placeholder {
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #072b54;
    background: linear-gradient(135deg, #f7f9fc, #ffffff);
}

.fleet-card-placeholder svg,
.vehicle-detail-placeholder svg {
    width: 90px;
    height: 90px;
    fill: currentColor;
    opacity: 0.85;
}

.fleet-card-body,
.fleet-category-card {
    padding: 24px;
}

.fleet-card-category {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fleet-card-category a {
    color: #d48a00;
    text-decoration: none;
}

.fleet-card h3,
.fleet-category-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.fleet-card h3 a,
.fleet-category-card h3 a {
    color: #07162b;
    text-decoration: none;
}

.fleet-card p,
.fleet-category-card p {
    color: #5f6b7a;
    margin-bottom: 18px;
}

.fleet-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.fleet-card-meta span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(7, 43, 84, 0.08);
    color: #072b54;
    font-size: 13px;
    font-weight: 700;
}

.fleet-card-action a {
    color: #072b54;
    font-weight: 800;
    text-decoration: none;
}

.fleet-card-action a:hover {
    color: #d48a00;
}

.empty-state-card {
    padding: 40px 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(7, 22, 43, 0.08);
    box-shadow: 0 18px 45px rgba(7, 22, 43, 0.08);
}

.vehicle-detail-image-card {
    min-height: 340px;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(7, 22, 43, 0.12);
    border: 1px solid rgba(7, 22, 43, 0.08);
}

.vehicle-detail-image-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: contain;
    padding: 20px;
}

.vehicle-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vehicle-spec-item {
    padding:5px 7px;
    border-radius: 18px;
    background: rgba(7, 43, 84, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-spec-item span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vehicle-spec-item strong {
    color: #07162b;
    font-size: 16px;
}

@media (max-width: 991px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-filter-card {
        padding: 18px;
    }

    .vehicle-spec-grid {
        grid-template-columns: 1fr;
    }

    .fleet-card-image {
        height: 190px;
    }
}
