/* ==========================================================================
   Desktop Header & Core Structural Styles
   ========================================================================== */
:root {
    /* Font Family */
    --font-primary: "Inter", sans-serif;
    --font-secondary: gill-sans-nova, "Gill Sans", sans-serif;

    /* Font Sizes (Responsive Scale) */
    --fs-h1: 42px;
    --fs-h2: 32px;
    --fs-h3: 24px;
    --fs-h4: 20px;
    --fs-body: 16px;
    --fs-small: 14px;

    /* Font Weights */
    --fw-bold: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;

    /* Line Heights */
    --lh-heading: 1.2;
    --lh-body: 1.6;

    /* Colors */
    --text-dark: #111;
    --text-light: #666;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    color: var(--text-dark);
    background: #fff;
}

/* Headings → Gill Sans Nova (Premium Look) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
}

/* Individual Heading Sizes */
h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

/* Paragraph */
p {
    font-size: var(--fs-body);
}

/* Small Text */
small {
    font-size: var(--fs-small);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 20px 50px 12px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.phone-number {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

/* Logo Layout & Scroll Effect Logic */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
}

.logo-icon img {
    height: 48px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
}

.logo-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 1;
    max-width: 200px;
    transition: max-width 0.4s ease, opacity 0.2s ease, transform 0.4s ease;
}

.header-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex: 1;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: "gill-sans-nova", "Gill Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.header-divider {
    border: none;
    border-top: 1px solid #fff;
    margin: 14px 0;
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.menu li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s ease;
}

.menu li a:hover {
    opacity: 0.7;
}

.arrow {
    font-size: 11px;
    opacity: 0.8;
}

/* Hide Mobile Toggle Elements on Desktop */
.mobile-toggle {
    display: none;
}

.mobile-drawer {
    display: none;
}

/* ==========================================================================
   SCROLLED ACTIVE STATE
   ========================================================================== */
.site-header.scrolled {
    background-color: rgba(15, 15, 15, 0.92);
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Smoothly hide and move text to the left back into the icon area */
.site-header.scrolled .logo-text {
    max-width: 0;
    opacity: 0;
    transform: translateX(-15px);
    margin-left: -12px;
}

.site-header.scrolled .logo-icon img {
    height: 40px;
}

.flag-icon img {
    width: 24px !important;
}

.menu li {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 200px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    padding: 8px 0;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 13px;
    text-transform: none;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu li:hover .submenu {
    display: flex;
}

ul.submenu {
    list-style-type: none !important;
}

/* ==========================================================================
   Footer Base Styles (Desktop Layout)
   ========================================================================== */
.site-footer {
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #b3b3b3;
}

/* Contact Info Layout Details */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    font-size: 15px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.5;
}

.contact-info-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: #b3b3b3;
}

.info-label {
    color: #888888;
    margin-right: 4px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Social Icon Blocks */
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 18px;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 0.7;
}

/* Footer Bottom Bar Structural Layout */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888888;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.bottom-right p {
    letter-spacing: 0.5px;
}

.developer-name {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   Footer Brand Header Block
   ========================================================================== */
.footer-brand-header {
    max-width: 1240px;
    margin: 0 auto 50px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* The vertical separator line */
.footer-brand-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 5px;
}

.footer-brand-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-brand-phone a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-brand-phone a:hover {
    color: #b3b3b3;
}

.phone-number a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.developer-name a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ==========================================================================
   Luxury Privacy Policy Core Layout Styles
   ========================================================================== */
.policy-page-wrapper {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding-top: 110px;
    /* Safe padding calculation below fixed transparent header */
    min-height: 100vh;
}

/* Minimalist Editorial Page Title Header Banner */
.policy-hero {
    padding: 80px 40px 40px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(11, 11, 11, 1) 100%);
}

.policy-main-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.policy-subtitle {
    font-size: 14px;
    color: #888888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Document Container Card Cardbox Styling */
.policy-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 100px 40px;
}

.policy-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.policy-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #cccccc;
}

.policy-section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

/* Section-by-Section Typographic Rhythms */
.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-of-type {
    margin-bottom: 0;
}

.policy-section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #b3b3b3;
    margin-bottom: 15px;
}

/* Luxury Dot List Items */
.policy-list {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 15px;
}

.policy-list li {
    font-size: 15px;
    color: #b3b3b3;
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.policy-list li::before {
    content: "•";
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -2px;
}

/* Highlighted Contact Block Box Info */
.contact-panel {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.contact-meta-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.meta-item {
    font-size: 15px;
    color: #cccccc;
}

.meta-item strong {
    color: #ffffff;
    margin-right: 5px;
}

.meta-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item a:hover {
    color: #b3b3b3;
    border-bottom-color: transparent;
}

/* ==========================================================================
   Premium Luxury Hero Section (Desktop Styles)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Takes full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
    /* Fallback background */
}

/* Video Layering and Sizing rules */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Guarantees full-bleed cinematic crop */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

/* Content Panel Layout Rules */
.hero-content {
    position: relative;
    z-index: 3;
    /* Places copy text safely over the video tint overlay */
    max-width: 1100px;
    padding: 0 40px;
    text-align: center;
    color: #ffffff;
    margin-top: 60px;
    /* Counter-balance offset for your fixed sticky navigation */
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #e6e6e6;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 45px;
}

/* Specialized CTA Button Formats */
.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 35px;
    font-family: "gill-sans-nova", "Gill Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

/* Accent Solid Blue Button Style */
.btn-filled {
    background-color: #2186f2;
    color: #ffffff;
    border: 1px solid #2186f2;
    box-shadow: 0 10px 25px rgba(33, 134, 242, 0.3);
}

.btn-filled:hover {
    background-color: #1971d1;
    border-color: #1971d1;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(33, 134, 242, 0.4);
}

/* Translucent Bordered Button Style */
.btn-bordered {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.btn-bordered:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-hero:hover .cta-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Why Choose Us Section - Desktop Base Grid
   ========================================================================== */
.wcu-section {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 100px 40px;
    width: 100%;
}

/* Header Text Alignments */
.wcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.wcu-main-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.wcu-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wcu-title-line {
    width: 50px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
}

/* Desktop Grid View Architecture */
.wcu-grid-container {
    max-width: 1320px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wcu-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wcu-card:hover {
    background-color: #161616;
    transform: translateY(-5px);
}

/* Circular Custom Image Frame */
.wcu-image-frame {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.wcu-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    min-height: 42px;
    /* Keeps card layouts aligned if text drops down */
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #a6a6a6;
    font-weight: 400;
}

/* Bottom Action Row Section */
.wcu-action-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-wcu-outline {
    display: inline-block;
    padding: 14px 45px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    text-decoration: none;
    font-family: "gill-sans-nova", "Gill Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-wcu-outline:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* ==========================================================================
   Our Shazim Driven Cars Fleet Base Styles (Light Theme Layout)
   ========================================================================== */
.fleet-section {
    background-color: #f6f6f6;
    /* Premium off-white clean contrast background */
    color: #000000;
    font-family: 'Inter', sans-serif;
    padding: 90px 40px;
    width: 100%;
}

.fleet-header {
    text-align: center;
    margin-bottom: 55px;
}

.fleet-main-title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #000000;
    margin-bottom: 12px;
}

.fleet-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.fleet-title-line {
    width: 45px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

/* 4 Column Architecture Configuration */
.fleet-grid-container {
    max-width: 1320px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.fleet-card {
    background-color: transparent;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Logic for Load More Animation Functionality */
.fleet-card.hidden-item {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.fleet-card.show-animation {
    display: flex !important;
    animation: fadeInUp 0.5s forwards ease-out;
}

.fleet-image-wrap {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.fleet-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Prevents stretching and distorts on auto frames */
}

.fleet-car-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Booking Accent Action Elements */
.btn-fleet-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 260px;
    padding: 15px 20px;
    background-color: #2186f2;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    border: 1px solid #2186f2;
    box-shadow: 0 4px 15px rgba(33, 134, 242, 0.15);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.btn-fleet-book:hover {
    background-color: #1971d1;
    border-color: #1971d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 134, 242, 0.25);
}

.fleet-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn-fleet-book:hover .fleet-arrow {
    transform: translateX(4px);
}

.fleet-find-more {
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #333333;
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.fleet-find-more:hover {
    color: #2186f2;
    border-bottom-color: #2186f2;
}

/* Load More Interaction Button layout styling */
.fleet-action-area {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn-fleet-loadmore {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fleet-loadmore:hover {
    background-color: #222222;
    border-color: #222222;
    transform: translateY(-2px);
}

/* Keyframe rendering animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset & Base Variables */
.sustainability-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    background-color: #111111;
    overflow: hidden;
}

/* Left Content Area */
.sustainability-content {
    flex: 0 0 45%;
    /* Explicit 45% width on desktop */
    background-color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
}

.content-wrapper {
    max-width: 480px;
    width: 100%;
}

/* Logo & Headers */
.sustainability-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 100%;
    height: 100%;
}

.section-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.section-subtitle {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    margin: 0 0 40px 0;
}

/* Feature Rows */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.feature-text h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}

.feature-text p {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Custom Outlined Button */
.cta-btn {
    display: inline-block;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Right Media Panel */
.sustainability-image {
    flex: 0 0 55%;
    /* Explicit 55% width on desktop */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
}

.sustainability-logo img {
    width: 110%;
}

/* Container Layout Setup */
.service-section {
    background-color: #ffffff;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    /* Space between image and text block */
}

/* Left Column Styling & Play Button Center Grid */
.service-media-wrapper {
    flex: 1;
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Play Button Overlay Styling */
.play-btn-overlay {
    position: absolute;
    background: transparent;
    border: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.play-btn-overlay:hover {
    transform: scale(1.08);
    opacity: 1;
}

.play-icon {
    width: 100%;
    height: 100%;
}

/* Right Column Styling */
.service-content {
    flex: 1;
    width: 50%;
    padding-right: 20px;
}

.service-title {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2.5px;
    margin: 0 0 8px 0;
}

.service-subtitle {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
}

.short-divider {
    width: 45px;
    height: 1px;
    background-color: #000000;
    margin-bottom: 30px;
}

.service-description {
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Elegant Pill Button Styling */
.outline-btn {
    display: inline-block;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
    padding: 13px 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.outline-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Main Wrapper Settings */
.services-section {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 100px 40px;
    width: 100%;
    box-sizing: border-box;
}

.services-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Header Text Styles */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.main-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 12px 0;
}

.sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #cccccc;
    margin: 0 0 25px 0;
}

.header-line {
    width: 45px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
}

/* Flexbox/Grid Container for Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3-columns by default on desktop */
    gap: 30px;
}

/* Individual Card Blocks */
.service-card {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    /* Retains cinematic image proportions */
    background-color: #262626;
    /* Placeholder color before img loads */
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0 0 6px 0;
}

.card-subtitle {
    font-size: 12px;
    color: #888888;
    margin: 0 0 20px 0;
}

.card-description {
    font-size: 13px;
    line-height: 1.6;
    color: #b3b3b3;
    margin: 0 0 35px 0;
    flex-grow: 1;
    /* Pushes button link cleanly to bottom line */
}

/* Interactive Action Button Link */
.view-service-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    transition: opacity 0.2s ease;
}

.view-service-link:hover {
    opacity: 0.7;
}

.view-service-link .arrow {
    font-size: 14px;
}

/* Core image container structure */
.card-image-box {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    background-color: #111111;
    overflow: hidden;
    /* Clips the image when it expands */
    position: relative;
}

/* Clickable image anchor link adjustments */
.card-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background-color: #000000;
    /* Subtle dark under-tint */
}

/* Base image styling */
.card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    will-change: transform;
}

/* Luxury hover animation effect */
.card-image-link:hover img {
    transform: scale(1.08);
    /* Sophisticated slight zoom */
    opacity: 0.85;
    /* Classy color depth dimming effect */
}

.testimonials-section {
    background-color: #fff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    padding: 100px 40px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Styles */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .main-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 12px 0;
}

.testimonials-header .sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #000000;
    margin: 0 0 25px 0;
}

.testimonials-header .header-line {
    width: 45px;
    height: 1px;
    background-color: #000000;
    margin: 0 auto;
}

/* Slider Frame Layout */
.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.slides-container {
    position: relative;
    min-height: 280px;
    /* Prevents layout shifting during text sizing differences */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide Item Animations */
.testimonial-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    width: 100%;
    max-width: 750px;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    transform: scale(0.95);
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Decorative Quotes */
.quote-icon {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 40px;
    color: #000000;
    height: 40px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #000;
    margin: 0 0 30px 0;
    font-style: italic;
}

.client-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
}

.client-designation {
    font-size: 12px;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Navigation Arrow System */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #000;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: color 0.3s ease;
    user-select: none;
}

.slider-arrow:hover {
    color: #000;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Control Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #000000;
    transform: scale(1.2);
}

.contact-section {
    background-color: #111111;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 100px 40px;
    width: 100%;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Precise asymmetry balance matching image_b37005.png */
    gap: 60px;
    align-items: center;
}

/* ================= LEFT COLUMN STYLING ================= */
.contact-info-panel {
    padding-right: 20px;
}

.info-tagline {
    font-size: 14px;
    color: #cccccc;
    font-weight: 300;
    display: block;
    margin-bottom: 10px;
}

.info-heading {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.info-subheading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 50px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.detail-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
}

.detail-item:first-child {
    padding-top: 0;
}

.detail-item h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.detail-link,
.detail-text-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.detail-link:hover {
    color: #ffffff;
}

.detail-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    opacity: 0.8;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

/* ================= RIGHT COLUMN FORM CARD ================= */
.form-card {
    background-color: #ffffff;
    color: #111111;
    border-radius: 6px;
    padding: 50px 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-badge {
    width: 100px;
    height: 76px;
    margin: 0 auto 15px auto;
}

.form-badge img {
    width: 90%;
}

.badge-icon {
    width: 100%;
    height: 100%;
}

.form-title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #111111;
    margin: 0;
}

.input-group {
    margin-bottom: 22px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
}

.optional {
    font-weight: 400;
    color: #777777;
}

.input-field-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 14px;
    width: 16px;
    height: 16px;
    color: #999999;
}

.input-field-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-field-wrapper input:focus,
.input-group textarea:focus {
    border-color: #2575fc;
}

/* Country Selection Custom Layout Pattern */
.flag-prefix {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    user-select: none;
    color: #555555;
}

.dropdown-caret {
    font-size: 9px;
    margin-top: 1px;
}

.input-field-wrapper input[type="tel"] {
    padding-left: 42px;
    /* Widened setup clearance adjustment for flag */
}

.input-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
}

/* Corporate Chauffeur Royal Blue Call To Action Trigger */
.submit-form-btn {
    width: 100%;
    background-color: #2575fc;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.submit-form-btn:hover {
    background-color: #1a62de;
}

/* AJAX Response Alert styling boxes */
.alert-box {
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

.alert-box.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-box.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 25px;
    width: 350px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.popup-box h2 {
    margin-bottom: 15px;
    text-align: center;
}

.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup-box button {
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #1ebe5d;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Full-Width Hero Banner --- */
.about-hero {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Pushes content to the bottom */
    padding-bottom: 60px;
}

.hero-content {
    text-align: left;
    /* Aligns content to the bottom-left */
    max-width: 700px;
    font-family: 'Inter';
}

.hero-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.heritage-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Heritage About Section Base Styles --- */
.heritage-about-section {
    background-color: var(--bg-light-cream);
    padding: 120px 0 120px 0;
    overflow: hidden;
    font-family: 'Inter';
}

.heritage-grid {
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    gap: 60px;
    align-items: center;
}

/* Left Side Typography Formatting */
.heritage-content-col {
    max-width: 540px;
}

.heritage-header {
    text-align: center;
    margin-bottom: 40px;
}

.heritage-header h2 {
    font-family: var(--font-sans);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.heritage-year {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.heritage-divider {
    width: 60px;
    height: 1px;
    background-color: #b0a99f;
    margin: 25px auto 0 auto;
}

.heritage-text p {
    font-family: var(--font-sans);
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.heritage-text p:last-child {
    margin-bottom: 0;
}

/* Right Side: Overlapping Film Frame Stack Architecture */
.heritage-image-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-stack-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 480px;
}

/* Structural Base Frame for Polaroids */
.polaroid-frame {
    background-color: #ffffff;
    padding: 16px 16px 64px 16px;
    /* Deep bottom border margin imitating film print layouts */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.polaroid-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #eee;
}

.polaroid-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Keeps matching black & white aesthetic */
    display: block;
}

/* Side Film Markings Styling */
.polaroid-edge-text-left,
.polaroid-edge-text-right {
    position: absolute;
    font-family: var(--font-sans);
    font-size: 10px;
    color: #999999;
    letter-spacing: 1px;
}

.polaroid-edge-text-left {
    left: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.polaroid-edge-text-right {
    right: -24px;
    top: 30px;
    transform: rotate(90deg);
    transform-origin: left top;
}

/* Exact Position Stack Coordinates */
.frame-main {
    width: 340px;
    height: 420px;
    right: 0;
    top: 0;
    z-index: 2;
    transform: rotate(3deg);
    /* Subtle alignment rotation angles from image_998e63.jpg */
}

.frame-sub {
    width: 290px;
    height: 330px;
    left: 0;
    bottom: 0;
    z-index: 3;
    transform: rotate(-4deg);
    padding: 12px 12px 48px 12px;
}

/* --- Our Mission Section Base Styles --- */
.heritage-mission-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 120px 0px;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    font-family: 'Inter';
}

/* 2-Column Responsive Desktop Grid Setup */
.mission-simple-grid {
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    /* Perfectly balanced column grid split */
    gap: 80px;
    align-items: center;
}

/* Container limits the bounds of your clean image asset */
.simple-image-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Clean, Simple Borderless Image Formatting */
.mission-clean-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    /* Preserves the classic vertical editorial proportions */
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    /* Keeps matching classy black & white aesthetic */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    /* Very soft drop shadow for elite depth */
    border-radius: 0px;
    /* Zero rounded corners for a sharp corporate layout look */
}

/* Trigger Button */
.wa-trigger-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    color: #fff;
    font-size: 26px;
}

.close-icon {
    display: none;
}

/* Chat Window */
.wa-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-width: 90%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.wa-chat-window.show-pane {
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.wa-header {
    background: #25D366;
    color: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
}

.wa-avatar-box {
    position: relative;
}

.wa-avatar-box img {
    width: 45px;
    border-radius: 0%;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
}

.wa-header-info {
    margin-left: 10px;
}

.wa-header-info h4 {
    margin: 0;
    font-size: 16px;
    font-family: gill-sans-nova, "Gill Sans", sans-serif;
}

.wa-header-info p {
    margin: 0;
    font-size: 12px;
    font-family: gill-sans-nova, "Gill Sans", sans-serif;
}

/* Body */
.wa-chat-body {
    padding: 15px;
    background: #f5f5f5;
}

.wa-message-bubble {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sender-name {
    font-weight: bold;
    font-size: 12px;
    font-family: gill-sans-nova, "Gill Sans", sans-serif;
}

.message-time {
    display: block;
    font-size: 11px;
    text-align: right;
    color: #999;
}

/* Footer */
.wa-footer {
    padding: 10px;
    background: #fff;
}

.wa-footer {
    font-family: gill-sans-nova, "Gill Sans", sans-serif;
}

.wa-submit-action-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.wa-submit-action-link:hover {
    background: #1ebe5d;
}

.message-text {
    font-family: gill-sans-nova, "Gill Sans", sans-serif;
}

/* Soft Bounce Animation */
@keyframes softBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Apply to WhatsApp Button */
.wa-trigger-btn {
    animation: softBounce 2.5s infinite;
}

.wa-trigger-btn:hover {
    animation-play-state: paused;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* Show */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* Circle Background */
.progress-circle circle {
    fill: none;
    stroke-width: 4;
    stroke: #eee;
}

/* Progress Stroke */
#progressCircle {
    stroke: #2186f2;
    stroke-linecap: round;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.2s linear;
}

/* Arrow */
.scroll-top .arrow {
    position: absolute;
    font-size: 18px;
    color: #2186f2;
    font-weight: bold;
}

/* Hover */
.scroll-top:hover {
    transform: translateY(-4px);
}

.faq-section {
    padding: 60px 20px;
}

.faq-section h1{
    text-align: center;
}

.container {
    max-width: 900px;
    margin: auto;
}

.subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
}

/* Category */
.faq-category {
    margin-bottom: 30px;
}

.faq-category h2 {
    font-size: 22px;
    margin-bottom: 15px;
    padding-left: 10px;
    text-align: center;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Question */
.faq-question {
    width: 100%;
    padding: 16px;
    border: none;
    outline: none;
    background: #fff;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

/* Icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
}

/* Active */
.faq-item.active .faq-question::after {
    content: "-";
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #fafafa;
    transition: all 0.3s ease;
}

/* Open */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
}

/* STARS */
.stars {
    color: #f5b50a;
    font-size: 18px;
    margin-bottom: 10px;
}

/* REVIEW TEXT */
.card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

/* NAME */
.card strong {
    font-size: 16px;
    display: block;
}

/* SERVICE */
.card small {
    color: #888;
    font-size: 13px;
}

/* FORM SECTION */
.form-box {
    margin-top: 70px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* FORM TITLE */
.form-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

/* INPUTS */
input,
textarea,
select {
    width: 100%;
    padding: 13px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #2186f2;
    outline: none;
}

/* BUTTON */
.btn-review button {
    width: 100%;
    padding: 14px;
    background: #2186f2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-review button:hover {
    background: #2186f2;
}

/* MESSAGE */
#message {
    margin-top: 10px;
    font-size: 14px;
}

/* STAR RATING */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin: 10px 0;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

/* HOVER EFFECT */
.rating label:hover,
.rating label:hover ~ label {
    color: gold;
}

/* SELECTED */
.rating input:checked ~ label {
    color: gold;
}

.reviews-shazim{
    padding: 90px 40px;
}

/* FLOATING REVIEW BUTTON */
.review-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2186f2, #1f5c9ecd);
    color: #fff;
    padding: 14px 9px;
    border-radius: 0 10px 10px 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* HOVER EFFECT */
.review-float:hover {
    padding-left: 25px;
    background: linear-gradient(135deg, #2186f2, #1f5c9ecd);
}

