@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #1E88E5; /* Sky Blue */
    --primary-dark: #1565C0; /* Deeper Sky Blue */
    --royal: #1E88E5;
    --accent: #F5A623; /* Bright amber gold */
    --accent-hover: #E0921B;
    --accent-dark: #C58014;
    --bg-light: #F4F8FB; /* Very light cool sky gray */
    --bg-alt: #E3F2FD; /* Extremely soft sky blue background */
    --bg-white: #ffffff;
    --text-dark: #000000; /* Dark slate blue headings */
    --text-gray: #556677; /* Cool gray body text */
    --text-light: #ffffff;
    --border-color: #CFD8DC;
    --success: #00B090;
    --danger: #FC5185;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --shadow-sm: 0 4px 12px rgba(30, 136, 229, 0.08);
    --shadow-md: 0 8px 24px rgba(30, 136, 229, 0.12);
    --shadow-lg: 0 12px 32px rgba(30, 136, 229, 0.16);
    --transition: all 0.2s ease;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:var(--font-body);
}
body {
    overflow-x:hidden;
    background:#ffffff;
    color:var(--text-dark);
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.6;
}
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    height: 140px;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: 0.3s ease;
}
.header.scrolled {
    position: fixed;
    height: 100px;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}
.header.scrolled .navbar ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s ease;
    padding: 8px 0;
    text-transform: uppercase;
}
.header.scrolled .navbar ul li a:hover {
    color:var(--accent);
}
.logo {
    display:flex;
    align-items:center;
    height:100%;
    transition:0.3s ease;
}
.logo a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    border-radius:0;
    padding:0;
    box-shadow:none;
    transition:all 0.3s ease;
    z-index:1001;
}
.logo a:hover {
    background:transparent;
    box-shadow:none;
    transform:scale(1.03);
}
.logo img {
    width: auto;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}
.logo a:hover img {
    transform:none;
}
.header.scrolled .logo {
}
.header.scrolled .logo a {
    background:transparent;
    padding:0;
    box-shadow:none;
}
.header.scrolled .logo img {
    max-height: 85px;
}
.mobile-nav-header,
.mobile-nav-footer,
.nav-icon {
    display: none;
}
.navbar ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.navbar ul li {
    position:relative;
}
.navbar ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s ease;
    padding: 8px 0;
    text-transform: uppercase;
}
.navbar ul li a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--accent);
    border-radius:10px;
    transition:0.3s ease;
}
.navbar ul li a:hover {
    color:var(--accent-hover);
}
.navbar ul li a:hover::after {
    width:100%;
}
.navbar ul li a span {
    margin-left:6px;
    font-size:10px;
    display:inline-block;
    color:var(--accent-hover);
}
.navbar ul li a[href="quote.php"] {
    background: var(--accent) !important;
    color: #000000 !important;
    border: 1px solid var(--accent) !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important;
    margin-left: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar ul li a[href="quote.php"]::after {
    display:none !important;
}
.navbar ul li a[href="quote.php"]:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.header.scrolled .navbar ul li a[href="quote.php"] {
    background: var(--accent) !important;
    color: #000000 !important;
    border: 1px solid var(--accent) !important;
    padding: 8px 18px !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header.scrolled .navbar ul li a[href="quote.php"]:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@keyframes shimmerSweep {
    0% {
    background-position:180% 0;
}
100% {
    background-position:-180% 0;
}
}
@keyframes buttonGlow {
    0%, 100% {
    box-shadow:0 4px 15px rgba(212, 175, 55, 0.4), 0 0 0 rgba(212, 175, 55, 0);
}
50% {
    box-shadow:0 8px 28px rgba(212, 175, 55, 0.75), 0 0 15px rgba(212, 175, 55, 0.5);
}
}
@keyframes buttonGlowScrolled {
    0%, 100% {
    box-shadow:0 3px 12px rgba(212, 175, 55, 0.3), 0 0 0 rgba(212, 175, 55, 0);
}
50% {
    box-shadow:0 6px 20px rgba(212, 175, 55, 0.6), 0 0 10px rgba(212, 175, 55, 0.4);
}
}
.dropdown .dropdown-menu, .dropdown .mega-menu {
    position:absolute;
    left:50%;
    top:calc(100% + 8px);
    transform:translateX(-50%) translateY(12px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    background:#ffffff;
    border-top:3px solid var(--accent);
    border-radius:0 0 18px 18px;
    box-shadow:0 24px 60px rgba(0, 0, 0, 0.1);
    transition:opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index:999;
}
.dropdown:hover .dropdown-menu, .dropdown:hover .mega-menu {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}
.dropdown .dropdown-menu {
    width:240px;
    padding:18px 20px;
}
.dropdown .dropdown-menu a {
    display:block;
    margin-bottom:10px;
    color:#333333;
    font-size:14px;
    text-decoration:none;
    padding:10px 15px;
    border-radius:6px;
    transition:all 0.25s ease;
    font-weight:500;
}
.dropdown .dropdown-menu a:last-child {
    margin-bottom:0;
}
.dropdown .dropdown-menu a:hover {
    color:var(--accent);
    background:#fafafa;
    padding-left:20px;
}
.mega-menu {
    left:50%;
    width:600px;
    max-width:90vw;
    padding:30px 40px;
    display:flex;
    justify-content:space-between;
}
.mega-menu .mega-links {
    width:100%;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
}
.mega-menu .mega-links ul {
    list-style:none;
    display:block;
}
.mega-menu .mega-links ul li {
    margin-bottom:12px;
}
.mega-menu .mega-links ul li a {
    color:#333333 !important;
    font-size:15px;
    text-decoration:none;
    transition:all 0.2s ease;
    text-transform:none;
    font-weight:500;
}
.mega-menu .mega-links ul li a:hover {
    color:var(--accent) !important;
    padding-left:5px;
}
.hero {
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}
.hero-bg {
    position:absolute;
    inset:-15% 0;
    background-image:linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), var(--hero-bg, url('images/Switzerland_Home.avif'));
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    will-change:transform;
    transition:transform 0.05s linear;
    z-index:0;
}
.hero-content {
    position:relative;
    z-index:5;
    color:white;
    max-width:1200px;
    padding:20px;
    animation:fadeUp 1.5s ease;
}
.hero-content h2 {
    font-size:24px;
    font-family:var(--font-heading);
    font-weight:500;
    margin-bottom:18px;
    line-height:1.3;
    color:var(--accent);
    letter-spacing:0.5px;
    text-shadow:0 3px 8px rgba(0, 0, 0, 0.4);
}
.hero-content h1 {
    font-size:52px;
    line-height:1.2;
    font-family:var(--font-heading);
    font-weight:700;
    margin-bottom:24px;
    letter-spacing:0.8px;
    text-shadow:0 4px 10px rgba(0, 0, 0, 0.4);
}
.hero-content p {
    font-size:18px;
    font-weight:400;
    line-height:1.6;
    text-shadow:0 2px 6px rgba(0, 0, 0, 0.4);
    color:var(--bg-light);
}
@keyframes fadeUp {
    from {
    opacity:0;
    transform:translateY(60px);
}
to {
    opacity:1;
    transform:translateY(0);
}
}
.arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:70px;
    height:70px;
    border:1px solid rgba(212, 175, 55, 0.5);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:20;
    backdrop-filter:blur(8px);
    background:rgba(255, 255, 255, 0.1);
    box-shadow:0 5px 20px rgba(0, 0, 0, 0.2);
    transition:0.4s ease;
}
.arrow:hover {
    background:var(--accent);
    border-color:var(--accent);
    color:white;
    transform:translateY(-50%) scale(1.1);
}
.left-arrow {
    left:40px;
}
.right-arrow {
    right:40px;
}
.section-title {
    text-align:center;
    margin-bottom:25px;
}
.section-title h2 {
    font-size:34px;
    font-family:var(--font-heading);
    color:var(--text-dark);
    font-weight:700;
    position:relative;
    display:inline-block;
    letter-spacing:0.8px;
}
.section-title h2::after {
    content:'';
    display:block;
    width:60%;
    height:3px;
    background:var(--accent);
    margin:15px auto 0;
    border-radius:2px;
}
.about-section {
    width:100%;
    padding:48px 8%;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
}
.about-image {
    flex:1;
    display:flex;
    justify-content:center;
}
.about-image img {
    width:100%;
    max-width:520px;
    height:650px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 15px 45px rgba(0, 0, 0, 0.1);
    transition:0.5s ease;
}
.about-image img:hover {
    transform:scale(1.02);
}
.about-content {
    flex:1;
    max-width:650px;
}
.about-content h4 {
    font-size:24px;
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    font-weight:600;
}
.about-content h2 {
    font-size:46px;
    line-height:1.25;
    margin-bottom:28px;
    font-family:var(--font-heading);
    font-weight:700;
    color:var(--text-dark);
}
.about-content p {
    font-size:17px;
    line-height:1.9;
    color:#555555;
    margin-bottom:40px;
}
.about-btn {
    display:inline-block;
    padding:14px 30px;
    background:var(--accent) !important;
    color:#000000 !important;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    border-radius:6px;
    transition:var(--transition);
    text-transform:uppercase;
    letter-spacing:1px;
    border:none;
    box-shadow:var(--shadow-sm);
    cursor:pointer;
}
.about-btn:hover {
    background:#000000 !important;
    color:var(--accent) !important;
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);
}
/* Secondary style helper */
.btn-secondary {
    background:var(--accent) !important;
}
.btn-secondary:hover {
    background:var(--primary) !important;
}
.services-section {
    width:100%;
    background:var(--bg-alt);
    padding:48px 5%;
}
.services-container {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}
.service-card, .place-card {
    background:#ffffff;
    border-radius:8px;
    overflow:hidden;
    transition:0.5s ease;
    box-shadow:0 8px 30px rgba(0, 0, 0, 0.06);
    border:1px solid rgba(0, 0, 0, 0.03);
}
.service-card:hover, .place-card:hover {
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(212, 175, 55, 0.15);
}
.service-card img, .place-card img {
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.5s ease;
}
.service-card:hover img, .place-card:hover img {
    transform:scale(1.05);
}
.service-content, .place-content {
    padding:30px 25px;
    text-align:center;
}
.service-content h3, .place-content h3 {
    font-size:24px;
    font-family:var(--font-heading);
    margin-bottom:15px;
    color:var(--text-dark);
    font-weight:700;
}
.service-content p, .place-content p {
    font-size:15px;
    line-height:1.7;
    color:#666666;
}
.destination-section {
    padding:48px 8%;
    background:#ffffff;
}
.destination-container {
    max-width:900px;
    margin:0 auto;
    text-align:center;
}
.destination-container h2 {
    font-size:48px;
    font-family:var(--font-heading);
    color:#111;
    margin-bottom:30px;
}
.destination-container p {
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}
.places-section {
    padding:48px 5%;
    background:#fafafa;
}
.places-container {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}
.service-box {
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:8px;
    box-shadow:0 5px 25px rgba(0, 0, 0, 0.05);
    transition:0.4s;
    border:1px solid #eaeaea;
}
.service-box:hover {
    transform:translateY(-8px);
    border-color:var(--accent);
    box-shadow:0 10px 30px rgba(212, 175, 55, 0.1);
}
.service-box i {
    font-size:45px;
    color:var(--accent);
    margin-bottom:20px;
}
.service-box h3 {
    font-size:22px;
    color:#111;
    margin-bottom:15px;
    font-family:var(--font-heading);
}
.service-box p {
    color:#666;
    font-size:15px;
    line-height:1.6;
}
.contact-strip {
    background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Global_Home.avif');
    background-size:cover;
    background-position:center;
    padding:48px 20px;
    text-align:center;
    color:#fff;
}
.contact-strip h2 {
    font-size:45px;
    font-family:var(--font-heading);
    margin-bottom:20px;
    color:var(--accent);
}
.contact-strip p {
    font-size:20px;
    margin-bottom:30px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}
.contact-info {
    display:flex;
    justify-content:center;
    gap:40px;
    font-size:18px;
}
.contact-info i {
    color:var(--accent);
    margin-right:10px;
}
.inquiry-section {
    padding:48px 5%;
    background:#ffffff;
}
.inquiry-container {
    max-width:800px;
    margin:0 auto;
    background:#fafafa;
    padding:50px;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0, 0, 0, 0.06);
    border-top:4px solid var(--accent);
}
.inquiry-form {
    display:flex;
    flex-direction:column;
    gap:20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    background: #ffffff;
    font-family: var(--font-body);
    transition: var(--transition);
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}
.inquiry-btn {
    padding:16px;
    background:var(--accent);
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    text-transform:uppercase;
}
.inquiry-btn:hover {
    background:#111;
}
.gallery-section {
    padding:48px 5%;
    background:#ffffff;
}
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:15px;
}
.gallery-item {
    position:relative;
    overflow:hidden;
    border-radius:8px;
    height:250px;
}
.gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}
.gallery-item:hover img {
    transform:scale(1.1);
}
.testimonials-section {
    padding:48px 5%;
    background:#fafafa;
    text-align:center;
}
.testi-container {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}
.testi-card {
    background:#fff;
    padding:40px;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.05);
}
.testi-card i {
    font-size:30px;
    color:var(--accent);
    margin-bottom:20px;
}
.testi-card p {
    font-size:16px;
    font-style:italic;
    color:#666;
    margin-bottom:20px;
}
.testi-card h5 {
    font-size:18px;
    color:#111;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: #ffffff !important;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    background: #1ebd5a;
    color: #ffffff !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.booking-float {
    position:fixed;
    bottom:40px;
    right:40px;
    background:var(--accent);
    color:var(--text-dark);
    width:60px;
    height:60px;
    border-radius:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(212, 175, 55, 0.3);
    z-index:1000;
    transition:all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor:pointer;
    border:2px solid #ffffff;
    outline:none;
    overflow:hidden;
    white-space:nowrap;
    animation:booking-pulse 2s infinite;
}
.booking-float i {
    font-size:24px;
    transition:transform 0.3s ease;
}
.booking-float-text {
    font-size:15px;
    font-weight:700;
    max-width:0;
    opacity:0;
    margin-left:0;
    transition:max-width 0.4s ease, opacity 0.3s ease, margin-left 0.4s ease;
    text-transform:uppercase;
    letter-spacing:0.5px;
    font-family:var(--font-body);
}
.booking-float:hover {
    width:250px;
    background:var(--primary);
    color:var(--accent);
    box-shadow:0 12px 30px rgba(0, 0, 0, 0.3);
    transform:translateY(-3px);
}
.booking-float:hover .booking-float-text {
    max-width:180px;
    opacity:1;
    margin-left:10px;
}
.booking-float:hover i {
    transform:scale(1.1);
}
@keyframes booking-pulse {
    0% {
    box-shadow:0 0 0 0 rgba(212, 175, 55, 0.4);
}
70% {
    box-shadow:0 0 0 15px rgba(212, 175, 55, 0);
}
100% {
    box-shadow:0 0 0 0 rgba(212, 175, 55, 0);
}
}
.booking-modal-overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.6);
    backdrop-filter:blur(8px);
    z-index:2000;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.3s ease, visibility 0.3s ease;
    padding:20px;
}
.booking-modal-overlay.active {
    opacity:1;
    visibility:visible;
}
.booking-modal {
    width:100%;
    max-width:500px;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0, 0, 0, 0.25);
    overflow:hidden;
    transform:scale(0.9) translateY(40px);
    transition:transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display:flex;
    flex-direction:column;
}
.booking-modal-overlay.active .booking-modal {
    transform:scale(1) translateY(0);
}
.booking-modal-header {
    background:var(--primary);
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:2px solid var(--accent);
}
.booking-modal-header h3 {
    color:#ffffff;
    font-family:var(--font-heading);
    font-size:22px;
    margin:0;
    font-weight:700;
    letter-spacing:0.5px;
}
.booking-modal-close {
    background:none;
    border:none;
    color:#aaaaaa;
    font-size:32px;
    cursor:pointer;
    line-height:0.8;
    transition:color 0.2s;
    padding:0;
}
.booking-modal-close:hover {
    color:var(--accent);
}
.booking-modal-body {
    padding:30px 24px;
    overflow-y:auto;
    max-height:calc(85vh - 70px);
}
.booking-progress {
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
    position:relative;
    padding:0 10px;
}
.booking-progress::before {
    content:'';
    position:absolute;
    top:19px;
    left:10%;
    right:10%;
    height:3px;
    background:#eaeaea;
    z-index:1;
}
.booking-progress-bar {
    position:absolute;
    top:19px;
    left:10%;
    height:3px;
    background:#ff763c;
    z-index:1;
    transition:width 0.3s ease;
    width:0%;
}
.booking-progress-step {
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ffffff;
    border:3px solid #eaeaea;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
    font-weight:700;
    color:#999999;
    z-index:2;
    transition:all 0.3s;
}
.booking-progress-step.active {
    border-color:#ff763c;
    color:#ff763c;
    box-shadow:0 0 10px rgba(255, 118, 60, 0.2);
}
.booking-progress-step.completed {
    border-color:#ff763c;
    background:#ff763c;
    color:#ffffff;
}
.booking-step {
    display:none;
    animation:booking-fadeIn 0.4s ease;
}
.booking-step.active {
    display:block;
}
@keyframes booking-fadeIn {
    from {
    opacity:0;
    transform:translateY(10px);
}
to {
    opacity:1;
    transform:translateY(0);
}
}
.booking-step-title {
    font-family:var(--font-heading);
    font-size:18px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:20px;
    border-left:3px solid var(--accent);
    padding-left:10px;
    line-height:1.2;
}
.booking-form-group {
    margin-bottom:18px;
}
.booking-form-group label {
    display:block;
    font-size:13px;
    font-weight:600;
    color:#555555;
    margin-bottom:6px;
}
.booking-form-group input[type="text"], .booking-form-group input[type="email"], .booking-form-group input[type="tel"], .booking-form-group input[type="date"], .booking-form-group input[type="time"], .booking-form-group select, .booking-form-group textarea {
    width:100%;
    padding:12px 14px;
    border:1px solid #dddddd;
    border-radius:6px;
    font-size:14px;
    color:#333333;
    font-family:var(--font-body);
    background:#ffffff;
    transition:border-color 0.2s;
    box-sizing:border-box;
}
.booking-form-group input:focus, .booking-form-group select:focus, .booking-form-group textarea:focus {
    border-color:#ff763c;
    outline:none;
}
.booking-form-row {
    display:flex;
    gap:15px;
}
.booking-form-row > div {
    flex:1;
}
.booking-return-container {
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    margin-bottom:10px;
}
.booking-return-container input[type="checkbox"] {
    width:18px;
    height:18px;
    accent-color:#ff763c;
    cursor:pointer;
    margin:0;
}
.booking-return-container label {
    margin-bottom:0;
    cursor:pointer;
    font-weight:600;
}
.booking-return-fields {
    display:none;
    border-top:1px dashed #eaeaea;
    padding-top:15px;
    margin-top:10px;
}
.booking-phone-group {
    display:flex;
    gap:10px;
}
.booking-phone-group select {
    width:110px;
    flex-shrink:0;
}
.booking-actions {
    display:flex;
    justify-content:flex-end;
    gap:15px;
    margin-top:30px;
}
.booking-btn {
    padding:13px 25px;
    border:none;
    border-radius:6px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:all 0.3s;
    text-transform:uppercase;
    font-family:var(--font-body);
}
.booking-btn-prev {
    background:#eeeeee;
    color:#555555;
}
.booking-btn-prev:hover {
    background:#dddddd;
    color:var(--text-dark);
}
.booking-btn-next, .booking-btn-submit {
    background:#ff763c;
    color:#ffffff;
    box-shadow:0 4px 10px rgba(255, 118, 60, 0.2);
}
.booking-btn-next:hover, .booking-btn-submit:hover {
    background:#e65f24;
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(255, 118, 60, 0.3);
}
.booking-btn:disabled {
    opacity:0.6;
    cursor:not-allowed;
    transform:none !important;
}
.form-control.is-invalid,
.booking-form-group input.is-invalid,
.booking-form-group select.is-invalid,
.booking-form-group textarea.is-invalid {
    border-color: #e03131 !important;
    background-color: #fffaf0 !important;
    box-shadow: 0 0 0 3px rgba(224, 49, 49, 0.15) !important;
}
.booking-success {
    text-align:center;
    padding:20px 10px;
}
.booking-success-icon {
    font-size:70px;
    color:#2e7d32;
    margin-bottom:20px;
    animation:success-bounce 0.8s ease;
}
@keyframes success-bounce {
    0% {
    transform:scale(0);
}
50% {
    transform:scale(1.2);
}
100% {
    transform:scale(1);
}
}
.booking-success h4 {
    font-family:var(--font-heading);
    font-size:26px;
    color:var(--text-dark);
    margin-bottom:12px;
    font-weight:700;
}
.booking-success p {
    color:#666666;
    font-size:15px;
    line-height:1.6;
    margin-bottom:30px;
}
@media (max-width:576px) {
    .whatsapp-float {
    bottom:20px;
    left:20px;
    width:50px;
    height:50px;
    font-size:28px;
}
.booking-float {
    bottom:20px;
    right:20px;
    width:50px;
    height:50px;
    font-size:24px;
}
.booking-modal-overlay {
    padding:10px;
}
.booking-modal-body {
    padding:20px 15px;
}
.booking-form-row {
    flex-direction:column;
    gap:0;
}
.booking-actions {
    flex-direction:column-reverse;
    gap:10px;
}
.booking-actions button {
    width:100%;
}
}

/* ==========================================================================
   Executive Luxury Footer Styling
   ========================================================================== */
.footer {
    width: 100%;
    background: #081624 !important;
    color: #ffffff !important;
    padding-top: 70px;
    position: relative;
    border-top: 4px solid var(--accent);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
}
.footer-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr;
    gap: 40px;
    padding: 0 5% 50px;
}
.footer-logo-wrapper {
    margin-bottom: 22px;
}
.footer-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.footer-logo-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}
.footer-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-desc {
    color: #94a3b8 !important;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-social a:hover {
    background: var(--accent) !important;
    color: #000000 !important;
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
}

.footer-heading {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-list li {
    margin-bottom: 12px;
}
.footer-nav-list li a {
    text-decoration: none;
    color: #94a3b8 !important;
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-nav-list li a i {
    font-size: 11px;
    color: var(--accent);
    transition: transform 0.25s ease;
}
.footer-nav-list li a:hover {
    color: var(--accent) !important;
    transform: translateX(5px);
}
.footer-nav-list li a:hover i {
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(245, 166, 35, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-text {
    color: #cbd5e1 !important;
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact-label {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-contact-text a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.footer-contact-text a:hover {
    color: var(--accent) !important;
}

/* 24/7 Availability Banner */
.footer-availability-banner {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 10px;
}
.footer-availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 28px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.footer-live-indicator {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 22px 7%;
    background: #040c14 !important;
}
.footer-bottom .container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}
.footer-bottom p {
    font-size: 13.5px;
    color: #94a3b8 !important;
    margin: 0;
}
.footer-tagline {
    color: var(--accent) !important;
    font-weight: 600;
}

.contact-grid {
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:50px;
}
.contact-page-form {
    box-shadow:none;
    border:1px solid #eaeaea;
    padding:40px;
}
.contact-page-section {
    padding:48px 7%;
    background:#ffffff;
}
.contact-details {
    background:#fdfdfd;
    padding:40px;
    border-radius:8px;
    border:1px solid #eaeaea;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.05);
}
.email-otp-container {
    position:relative;
    width:100%;
}
.email-otp-container input[type="email"] {
    padding-right:130px !important;
}
.email-otp-container button, .email-otp-container .send-otp-btn {
    position:absolute;
    right:0;
    top:0;
    height:100%;
    padding:0 16px;
    background:var(--accent);
    color:#111;
    border:none;
    font-size:13px;
    font-weight:700;
    border-radius:0 6px 6px 0;
    cursor:pointer;
    white-space:nowrap;
    transition:0.3s;
}
.email-otp-container button:hover, .email-otp-container .send-otp-btn:hover {
    background:#111;
    color:#fff;
}
.otp-input-group {
    display:flex;
    gap:10px;
    align-items:center;
}
.otp-input-group input {
    flex:1;
    padding:13px 16px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:18px;
    letter-spacing:8px;
    text-align:center;
    font-weight:700;
    font-family:var(--font-body);
}
.otp-input-group button {
    padding:13px 22px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:6px;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
    white-space:nowrap;
}
.otp-input-group button:hover {
    background:var(--accent);
    color:#111;
}
.partner-grid {
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    margin-bottom:20px;
    align-items:start;
}
.form-grid-2 {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}
.partner-section {
    padding:48px 7% 24px 7%;
    background:#ffffff;
    max-width:1200px;
    margin:0 auto;
}
.partner-section-form {
    padding:30px 7% 60px 7%;
    background:#ffffff;
}
.partner-form-container {
    background:#fff;
    padding:50px;
    border-radius:12px;
    border:1px solid #eaeaea;
    box-shadow:0 15px 40px rgba(0, 0, 0, 0.06);
    border-top:4px solid var(--accent);
    max-width:1200px;
    margin:0 auto;
}
.partner-affiliate-card {
    background:#fdfdfd;
    padding:35px;
    border-radius:12px;
    border:1px solid #eaeaea;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.03);
}
.partner-vehicle-builder {
    background:#fafafa;
    padding:30px;
    border-radius:12px;
    border:1px solid #eaeaea;
    margin-top:10px;
}
/* Navigation Drawer & Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 1100;
    position: relative;
}
.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header.scrolled .menu-toggle .bar {
    background-color: #0c1e30;
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: #ffffff !important;
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: #ffffff !important;
}

/* Backdrop Overlay for Mobile Nav */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Location Vertical Layout Cards */
.location-card-premium {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1) !important;
}
.location-info-item {
    transition: all 0.25s ease;
}
.location-info-item:hover {
    background: #ffffff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}
.location-map-wrapper {
    transition: all 0.3s ease;
}
.location-card-premium:hover .location-map-wrapper {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.location-card-vertical {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.map-wrapper-vertical {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 320px;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1200px) {
    .header {
        padding: 0 5%;
        height: 120px;
    }
    .services-container, .gallery-grid, .places-container, .brochures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 75px;
        background: rgba(12, 30, 48, 0.96) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        transition: 0.3s ease;
    }
    .header.scrolled {
        position: fixed;
        height: 70px;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    }
    .logo {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0;
    }
    .logo a {
        padding: 0;
    }
    .logo img {
        width: auto;
        height: auto;
        max-height: 48px;
        object-fit: contain;
        display: block;
    }
    .header.scrolled .logo img {
        max-height: 46px;
    }
    .menu-toggle {
        display: flex;
    }
    
    /* Off-Canvas Mobile Sidebar */
    .mobile-nav-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.25);
        margin: -25px -20px 20px -20px;
    }
    .mobile-nav-logo {
        max-height: 42px;
        width: auto;
        object-fit: contain;
    }
    .mobile-nav-close {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #ffffff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: 0.2s ease;
    }
    .mobile-nav-close:hover {
        background: var(--accent);
        color: #000000;
    }
    .nav-icon {
        display: inline-flex !important;
        width: 22px;
        align-items: center;
        justify-content: center;
        color: var(--accent) !important;
        font-size: 15px;
        margin-right: 6px;
    }
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        height: 100dvh;
        background: #0c1e30;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 25px 20px 30px 20px;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar.active {
        right: 0;
    }
    .navbar ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .navbar ul li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        margin: 0 !important;
    }
    .navbar ul li:last-child {
        border-bottom: none !important;
        margin-top: 10px !important;
    }
    .navbar ul li a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        transition: all 0.2s ease !important;
        border-radius: 6px !important;
    }
    .navbar ul li a::after {
        display: none !important;
    }
    .navbar ul li a:hover,
    .navbar ul li a.active {
        color: var(--accent) !important;
        background: rgba(245, 166, 35, 0.12) !important;
        padding-left: 18px !important;
    }
    .navbar ul li a[href="quote.php"] {
        background: linear-gradient(135deg, #f5a623 0%, #e0921b 100%) !important;
        color: #000000 !important;
        font-weight: 800 !important;
        text-align: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        padding: 13px 20px !important;
        margin: 10px 0 0 0 !important;
        display: flex !important;
        box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4) !important;
        border: none !important;
        letter-spacing: 1px !important;
    }
    .navbar ul li a[href="quote.php"] .nav-icon {
        color: #000000 !important;
    }
    .navbar ul li a[href="quote.php"]:hover {
        background: #e0921b !important;
        color: #000000 !important;
        transform: none !important;
    }
    .mobile-nav-footer {
        display: flex !important;
        flex-direction: column;
        padding: 16px 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        margin-top: 25px;
    }
    .mobile-nav-contact-title {
        font-size: 11px;
        text-transform: uppercase;
        color: #94a3b8;
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .mobile-nav-contact-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffffff !important;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 8px;
    }
    .mobile-nav-contact-link i {
        color: var(--accent);
    }
    .mobile-nav-whatsapp-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #25d366 !important;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }
    
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .about-image, .about-content {
        width: 100% !important;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .locations-grid-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header {
        height: 70px !important;
        padding: 0 16px !important;
    }
    .logo img {
        max-height: 44px !important;
    }
    
    /* Hero Sections */
    .hero-section {
        padding: 105px 16px 50px 16px !important;
        min-height: 80vh !important;
    }
    .hero-section h1, #hero-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
    }
    #hero-subtitle {
        font-size: 12px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 12px !important;
    }
    #hero-desc, .hero-section p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin-bottom: 25px !important;
    }
    
    .page-hero {
        padding: 110px 16px 45px 16px !important;
    }
    .page-hero h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .page-hero p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Grids & Cards */
    .services-container, 
    .places-container, 
    .testi-container, 
    .gallery-grid,
    .brochures-grid,
    .faq-topics,
    .fleet-grid,
    .standards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Why Choose Us & Standards 4-col Strip */
    .services-section .services-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .reliability-card {
        padding: 16px 10px !important;
    }
    .reliability-card h3 {
        font-size: 18px !important;
    }
    
    /* Form & Booking */
    .form-card {
        padding: 24px 16px !important;
    }
    .form-row, .booking-form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .form-group {
        margin-bottom: 16px !important;
    }
    .form-control {
        font-size: 14px !important;
        padding: 10px 14px !important;
    }
    
    /* Locations & Maps */
    .location-card-vertical {
        padding: 24px 16px !important;
    }
    .contact-details-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .map-wrapper-vertical {
        height: 250px !important;
    }
    
    /* Footer */
    .footer {
        padding-top: 50px !important;
    }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px 35px !important;
    }
    .footer-bottom {
        padding: 20px 16px !important;
    }
    .footer-bottom .container-flex {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
    
    /* Headings & Texts */
    .section-title h2, h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    .about-content h2 {
        font-size: 24px !important;
    }
    .single-line-desktop {
        white-space: normal !important;
    }
    
    /* WhatsApp Floating Button */
    .whatsapp-float {
        bottom: 20px !important;
        left: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .services-section .services-container {
        grid-template-columns: 1fr !important;
    }
    .hero-section h1, #hero-title, .page-hero h1 {
        font-size: 25px !important;
    }
}


/* Forms styling */
.form-card {
    background-color: var(--bg-white);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-card .desc {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #fafbfc;
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231e1e1e' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* Checkbox wrapper styling */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* Multi-Step Form Track styling (Eden World Transport reference style) */
.form-progress-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-progress-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.form-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent);
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.4s ease;
}

.progress-step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.progress-step i {
    font-size: 0.95rem;
}

.progress-step.active {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 10px rgba(243,156,18,0.25);
    background-color: var(--text-dark);
}

.progress-step.completed {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--text-dark);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    gap: 1.5rem;
}

/* Alert Boxes */
.alert {
    padding: 1.1rem 1.4rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

.alert-success {
    background-color: #e6fcf5;
    color: #0ca678;
    border: 1px solid #c3fae8;
}

.alert-danger {
    background-color: #fff5f5;
    color: #e03131;
    border: 1px solid #ffe3e3;
}

/* Admin Dashboard styling */
.admin-container {
    padding: 11rem 0 6rem 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.admin-header h1 {
    margin-bottom: 0;
}

.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: var(--bg-white);
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.admin-nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.admin-nav-btn.active {
    background-color: var(--text-dark);
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.admin-panel {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
}

.admin-panel-header {
    padding: 1.8rem 2.2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: #fafbfc;
    color: var(--text-dark);
    font-weight: 700;
}

.admin-table tr:hover {
    background-color: #fdfdfd;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-new, .status-pending {
    background-color: #fdf2e9;
    color: #e67e22;
}

.status-approved, .status-read {
    background-color: #ebfbee;
    color: #2b8a3e;
}

.status-cancelled {
    background-color: #fff5f5;
    color: #c92a2a;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 20px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries (Responsive Design) */
@media (max-width: 1024px) {
    .quick-grid,
    .story-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .fleet-grid,
    .standards-grid,
    .expertise-grid,
    .gallery-grid,
    .faq-topics,
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0;
    }
    
    .nav-container {
        height: 75px;
    }
    
    .logo img {
    width: auto;
    height: auto;
    max-height: 95px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}
    
    .site-header.scrolled .logo img {
    width: auto;
    height: auto;
    max-height: 85px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}
    
    .mobile-menu-toggle {
        display: flex;
    }
    
        .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--text-dark); /* Changed to dark charcoal for text contrast */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        gap: 1.5rem;
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero-text {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fleet-grid,
    .standards-grid,
    .expertise-grid,
    .gallery-grid,
    .faq-topics,
    .tour-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-card {
        padding: 2.5rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* --- Dynamic Page Hero Styles --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--royal) 100%);
    padding: 200px 20px 90px 20px;
    text-align: center;
    color: var(--text-light);
    position: relative;
}
.page-hero p {
    color: var(--bg-light);
    font-size: 17px;
    line-height: 1.7;
}
.page-hero h1 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.8px;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 110px 16px 45px 16px !important;
    }
    .page-hero h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .page-hero p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

/* Card hover effects */
.place-card, .service-box, .testi-card, .service-card {
    transition: var(--transition) !important;
    box-shadow: var(--shadow-sm) !important;
}
.place-card:hover, .service-box:hover, .testi-card:hover, .service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--accent) !important;
}

/* Accent for highlights/stats numbers */
.stat-number, .service-box .fa-solid, .service-box i, .service-box svg {
    color: var(--accent) !important;
}


/* Active Link Underline */
.navbar ul li a.active::after {
    width: 100% !important;
    background: var(--accent) !important;
}
.header.scrolled .navbar ul li a.active::after {
    background: var(--accent) !important;
}

/* Scroll animations and path styling removed to match original site theme */

/* Scrolled Header and Link styles (Desktop Only) */
@media (min-width: 993px) {
    .header.scrolled .navbar ul li a {
        color: var(--text-dark) !important;
    }
    .header.scrolled .navbar ul li a:hover {
        color: var(--accent) !important;
    }
}
.header.scrolled .menu-toggle .bar {
    background-color: #000000 !important;
}
.header:not(.scrolled) .logo img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.85));
}
.menu-toggle .bar {
    background-color: #ffffff !important;
}


/* Responsive heading utility - forces single line display on desktop */
@media (min-width: 992px) {
    .single-line-desktop {
        white-space: nowrap !important;
    }
}

/* FAQ Accordion Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-question {
    transition: background-color 0.2s ease;
}
.faq-question:hover {
    background-color: #f9f9f9;
}
.faq-icon-toggle {
    display: inline-block;
    width: 20px;
    text-align: center;
    user-select: none;
    transition: color 0.2s ease;
}
.faq-item.active .faq-icon-toggle {
    color: var(--accent) !important;
}

/* Why Choose Us - Reliability Cards (Glassmorphism & Hover effects) */
.reliability-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25) !important;
    padding: 24px 15px !important;
    text-align: center !important;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.reliability-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 118, 60, 0.45) !important;
    box-shadow: 0 12px 40px 0 rgba(255, 118, 60, 0.2) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
}
