/* Smooth scrolling for better animation viewing */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}
@media (max-width: 768px) {
    .contact-form {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    .contact-form textarea {
        width: 100% !important;
        margin: 0 auto 1rem auto;
        display: block;
        min-width: 200px;
        max-width: 100%;
    }
    .contact-form button {
        width: 60%;
        min-width: 120px;
        max-width: 300px;
        align-self: center !important;
        margin: 0.5rem auto 0 auto;
        display: block;
    }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
/* ==================== TRACKING SECTION ==================== */
.tracking-section {
    background: var(--light-gray);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tracking-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
}

.tracking-image {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-image img {
    max-width: 370px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(31,41,55,0.10);
    object-fit: cover;
}

.tracking-content {
    flex: 1 1 0;
    min-width: 260px;
}

.tracking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tracking-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tracking-form {
    max-width: 400px;
}

.tracking-form .form-group {
    margin-bottom: 1.5rem;
}

.tracking-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.tracking-btn {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Location icon bounce animation */
.location-icon {
    color: var(--dark-gray);
    animation: locationBounce 2s ease-in-out infinite;
}

@keyframes locationBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Tracking Section */
@media (max-width: 900px) {
    .tracking-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    .tracking-content, .tracking-image {
        min-width: 0;
    }
    .tracking-image img {
        max-width: 320px;
    }
    .tracking-title {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .tracking-section {
        padding: 3.5rem 1.5rem;
    }
    .tracking-container {
        gap: 1.5rem;
    }
    .tracking-title {
        font-size: 2rem;
    }
    .tracking-desc {
        font-size: 1rem;
    }
    .tracking-form input {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    .tracking-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    background: var(--white);
    padding: 6rem 2rem 12rem 2rem; /* Increased bottom padding significantly */
    margin-bottom: 8rem; /* Additional margin */
}

.how-it-works-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
    font-weight: 400;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.3rem;
    position: relative;
    overflow-x: auto;
    padding: 0 0.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.9) translateZ(0);
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    min-width: 120px;
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.process-step.active {
    opacity: 1;
    transform: translateY(0) scale(1) translateZ(0);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.process-step.active .step-icon::before {
    left: 100%;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.step-connector {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: scaleX(0);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.process-step.active .step-connector {
    opacity: 1;
    transform: scaleX(1);
}

.connector-line {
    width: 40px;
    height: 3px;
    background: transparent;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.process-step.active .connector-line {
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    border-radius: 2px;
    animation: lineFlow 1.5s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
}

.connector-arrow {
    margin-left: 0.5rem;
    color: var(--primary-red);
    font-size: 1.2rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.step-content {
    max-width: 180px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.step-description {
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.4;
    max-width: 140px;
}

/* (Glow effect removed — replaced with wiggle animation triggered after typing) */

/* Booking form loading overlay and error styles */
.booking-loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
}
.booking-loading-overlay.visible { display: flex; }
.booking-loading-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.25);
    padding: 18px 22px;
    border-radius: 8px;
}
.booking-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.15);
    border-top-color: #ffffff;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-loading-text { color: #fff; font-weight: 700; }
.booking-error { color: #b91c1c; margin-bottom: 12px; font-weight: 700; }
/* Success message for booking */
.booking-success {
    color: #065f46; /* green-800 */
    background: rgba(6,95,70,0.06);
    border: 1px solid rgba(6,95,70,0.12);
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 700;
}
.booking-success-actions { display:flex; gap:8px; margin-top:8px; }
.booking-success .btn-secondary { background: transparent; border: 1px solid rgba(0,0,0,0.08); color: #374151; padding:6px 10px; border-radius:6px; }

/* Processing toast (non-blocking) */
.booking-process-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(17,24,39,0.95);
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
    z-index: 10001;
    box-shadow: 0 8px 24px rgba(2,6,23,0.4);
    min-width: 220px;
    font-weight: 600;
}
.booking-process-toast .step { display:flex; align-items:center; gap:8px; padding:6px 0; opacity:0.9; }
.booking-process-toast .step .dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.25); }
.booking-process-toast .step.active .dot { background:#60a5fa; box-shadow:0 0 6px rgba(96,165,250,0.6); }
.booking-process-toast .step.done .dot { background:#34d399; box-shadow:0 0 6px rgba(52,211,153,0.6); }
.booking-process-toast .step .label { font-size:0.9rem; color:#f8fafc; }

/* small spinner inside toast */
.booking-process-toast .spinner { width:14px; height:14px; border:2px solid rgba(255,255,255,0.15); border-top-color:#fff; border-radius:50%; animation: spin 0.9s linear infinite; }

/* Modal-style Processing Stepper (centered popup) */
.booking-process-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    z-index: 10002;
}
.booking-process-modal .modal-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    width: 340px;
    box-shadow: 0 12px 40px rgba(2,6,23,0.35);
    text-align: left;
}
.booking-process-modal .modal-steps { display:flex; flex-direction:column; gap:10px; }
.booking-process-modal .step { display:flex; align-items:center; gap:12px; padding:8px 6px; border-radius:8px; }
.booking-process-modal .step .dot { width:12px; height:12px; border-radius:50%; background:#eef2ff; transition: all .25s ease; }
.booking-process-modal .step.active { background: rgba(13,110,253,0.06); }
.booking-process-modal .step.active .dot { background: #0d6efd; box-shadow: 0 0 6px rgba(13,110,253,0.25); transform: scale(1.15); }
.booking-process-modal .step.done .dot { background: #28a745; }
.booking-process-modal .label { flex:1; font-weight:700; color:#111827; }
.booking-process-modal .modal-result { margin-top:12px; min-height:44px; text-align:center; }
.booking-process-modal .modal-result .success { color: #065f46; background: rgba(6,95,70,0.06); border: 1px solid rgba(6,95,70,0.12); padding:10px; border-radius:8px; font-weight:700; }

@media (max-width:420px) {
    .booking-process-modal .modal-card { width: 92%; padding:14px; }
}

/* Pop Up Animation for Process Steps */
@keyframes popUp {
    0% {
        transform: translateY(100px) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
    70% {
        transform: translateY(5px) scale(0.95);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Typing Text Container */
.typing-container {
    text-align: center;
    margin-top: 2rem;
    min-height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.typing-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.cursor {
    animation: blink 1s infinite;
}

/* Fallback for mobile browsers that don't support background-clip text reliably */
@media (max-width: 768px) {
    .typing-text {
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: var(--primary-red) !important;
        color: var(--primary-red) !important;
        text-shadow: 0 2px 6px rgba(220,38,38,0.12);
    }
    .typing-container { z-index: 2; }
}

@keyframes blink {
    0%, 50% {
        border-color: var(--primary-red);
    }
    51%, 100% {
        border-color: transparent;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .section-header .section-subtitle {
        font-size: 1rem;
    }
    
    .process-container {
        flex-direction: column;
        gap: 2rem;
        overflow-x: visible;
        padding: 0;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-step {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 1rem 1rem;
        max-width: 400px;
        margin: 0 auto;
        padding: 1rem;
        align-items: start;
    }
    
    .step-icon {
        grid-column: 1;
        grid-row: 1;
        width: 60px;
        height: 60px;
        justify-self: center;
        margin-bottom: 0;
    }
    
    .step-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }
    
    .step-connector {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        margin-top: 0.5rem;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-content {
        text-align: left;
    }
    
    .step-connector {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: scaleY(0);
        transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .process-step.active .step-connector {
        transform: scaleY(1);
    }
    
    .connector-line {
        width: 3px;
        height: 30px;
        background: linear-gradient(180deg, var(--primary-red), var(--dark-red));
    }
    
    .connector-arrow {
        margin: 0.5rem 0 0 0;
    }
    
    .connector-arrow i::before {
        content: "\f063"; /* FontAwesome down arrow */
    }
    
    .step-content {
        max-width: none;
        flex: 1;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .typing-container {
        margin-top: 1.5rem;
    }

    .typing-text {
        font-size: 1rem;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--white);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
}
.contact-content {
    flex: 1 1 0;
    min-width: 260px;
}
.contact-content .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}
.contact-desc {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 2.2rem;
    line-height: 1.7;
    text-align: center;
}
.contact-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 0.5rem;
    box-shadow: 0 2px 16px 0 rgba(220,38,38,0.08);
    transition: var(--transition);
}
.contact-btn:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: none;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

/* Ensure text inputs match textarea sizing and padding */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: var(--transition);
    box-sizing: border-box;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form .contact-btn {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-image {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-image img {
    max-width: 370px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(31,41,55,0.10);
    object-fit: cover;
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    .contact-content, .contact-image {
        min-width: 0;
    }
    .contact-image img {
        max-width: 320px;
    }
}
@media (max-width: 600px) {
    .contact-section {
        padding: 3.5rem 1.5rem;
    }
    .contact-container {
        gap: 1.5rem;
    }
    .contact-content .section-title {
        font-size: 2.2rem;
    }
    .contact-desc {
        font-size: 1rem;
    }
    .contact-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .contact-image img {
        max-width: 220px;
    }
}

/* Mobile Contact Form Styles */
@media (max-width: 600px) {
    .contact-form {
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .contact-form textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
        min-height: 100px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form select {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .contact-form .contact-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Wiggle animation for buttons */
@keyframes wiggle {
    0%, 7% { transform: rotateZ(0) scale(1); }
    15% { transform: rotateZ(-10deg) scale(1.04); }
    20% { transform: rotateZ(7deg) scale(1.04); }
    25% { transform: rotateZ(-7deg) scale(1.04); }
    30% { transform: rotateZ(5deg) scale(1.03); }
    35% { transform: rotateZ(-4deg) scale(1.03); }
    40% { transform: rotateZ(3deg) scale(1.02); }
    45% { transform: rotateZ(-2deg) scale(1.02); }
    50%, 100% { transform: rotateZ(0) scale(1); }
}

.wiggle-icon {
    animation: wiggle 2s ease-in-out infinite;
    color: var(--dark-gray);
}

/* Mobile slide-in for contact form - removed since form is gone */

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Pricing Cards Slide-in Animation (Mobile) */
@media (max-width: 768px) {
    .pricing-card {
        opacity: 0;
        transform: rotateY(40deg) scale(0.95);
        transition: opacity 2.2s cubic-bezier(0.23, 1, 0.32, 1), transform 2.2s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .pricing-card.rotate-in {
        opacity: 1;
        animation: rotateIn 2.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }
    @keyframes rotateIn {
        from { opacity: 0; transform: rotateY(40deg) scale(0.95); }
        60% { opacity: 1; transform: rotateY(-10deg) scale(1.03); }
        to { opacity: 1; transform: rotateY(0deg) scale(1); }
    }
}
/* About Features Slide-in Animation (Mobile) */
@media (max-width: 768px) {
    .about-feature {
        opacity: 0;
        transform: translateX(0);
        transition: opacity 1.3s cubic-bezier(0.23, 1, 0.32, 1), transform 1.3s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .about-feature.slide-in-left {
        opacity: 1;
        transform: translateX(-40px);
        animation: slideInLeft 1.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }
    .about-feature.slide-in-center {
        opacity: 1;
        transform: translateY(20px);
        animation: slideInCenter 1.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }
    .about-feature.slide-in-right {
        opacity: 1;
        transform: translateX(40px);
        animation: slideInRight 1.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }
    @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-80px); }
        to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInCenter {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(80px); }
        to { opacity: 1; transform: translateX(0); }
    }
}
/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
/* Performance optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Optimize animations */
.process-container,
.step-icon,
.process-step,
.step-connector {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    contain: layout style paint;
}

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Red Theme Colors */
    --primary-red:  #DC2626;
    --dark-red: #991B1B;
    --light-red: #FEE2E2;
    
    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --gray: #6B7280;
    --dark-gray: #1F2937;
    --black: #111827;
    
    /* Accent Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Spacing */
    --max-width: 1200px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-family:  'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==================== GLOBAL ANIMATIONS ==================== */

/* Fade In on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from Left */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Right */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(220, 38, 38, 0);
        transform: scale(1.05);
    }
}

/* YouTube Subscribe Button Animation - Border Drawing Effect */
@keyframes drawBorder {
    0% {
        box-shadow: 
            inset 0 0 0 3px transparent,
            inset 0 0 0 3px transparent,
            inset 0 0 0 3px transparent,
            inset 0 0 0 3px transparent;
    }
    25% {
        box-shadow: 
            inset 100% 0 0 3px #FFD700,
            inset 0 0 0 3px transparent,
            inset 0 0 0 3px transparent,
            inset 0 0 0 3px transparent;
    }
    50% {
        box-shadow: 
            inset 100% 0 0 3px #FFD700,
            inset 0 100% 0 3px #FFD700,
            inset 0 0 0 3px transparent,
            inset 0 0 0 3px transparent;
    }
    75% {
        box-shadow: 
            inset 100% 0 0 3px #FFD700,
            inset 0 100% 0 3px #FFD700,
            inset -100% 0 0 3px #FFD700,
            inset 0 0 0 3px transparent;
    }
    100% {
        box-shadow: 
            inset 100% 0 0 3px #FFD700,
            inset 0 100% 0 3px #FFD700,
            inset -100% 0 0 3px #FFD700,
            inset 0 -100% 0 3px #FFD700;
    }
}

/* Simpler border animation */
@keyframes borderDraw {
    0% {
        outline: 3px solid transparent;
        outline-offset: -3px;
    }
    100% {
        outline: 3px solid #FFD700;
        outline-offset: -3px;
    }
}

/* SVG-style border drawing */
@keyframes svgBorderDraw {
    0% {
        border-image: linear-gradient(90deg, #FFD700 0%, transparent 0%) 1;
    }
    25% {
        border-image: linear-gradient(90deg, #FFD700 100%, transparent 0%) 1;
    }
    50% {
        border-image: linear-gradient(90deg, #FFD700 100%, transparent 0%), 
                      linear-gradient(180deg, #FFD700 100%, transparent 0%) 1;
    }
    75% {
        border-image: linear-gradient(90deg, #FFD700 100%, transparent 0%), 
                      linear-gradient(180deg, #FFD700 100%, transparent 0%),
                      linear-gradient(270deg, #FFD700 100%, transparent 0%) 1;
    }
    100% {
        border-image: linear-gradient(90deg, #FFD700 100%, transparent 0%), 
                      linear-gradient(180deg, #FFD700 100%, transparent 0%),
                      linear-gradient(270deg, #FFD700 100%, transparent 0%),
                      linear-gradient(0deg, #FFD700 100%, transparent 0%) 1;
    }
}

/* Button Wiggle Animation */
.btn-wiggle {
    animation: wiggle 3.5s ease-in-out infinite;
}

/* Stagger wiggle start times on desktop so navbar button wiggles first */
@media (min-width: 900px) {
    .nav-cta.btn-wiggle {
        animation-delay: 0s;
    }
    .quote-form .btn-wiggle,
    .btn-primary.btn-wiggle {
        animation-delay: 0.8s;
    }
}

/* Button Bounce Animation */
.btn-bounce {
    animation: btnBounce 3.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* Paper Plane Fly Animation */
@keyframes planeFly {
    0% { 
        transform: translateY(0) rotateZ(0) scale(1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) rotateZ(15deg) scale(1.2); 
        opacity: 0.9;
    }
    100% { 
        transform: translateY(-60px) rotateZ(-20deg) scale(0.6); 
        opacity: 0;
    }
}

.contact-btn .fa-paper-plane {
    transition: transform 0.2s ease;
}

.contact-btn:active .fa-paper-plane {
    animation: planeFly 1s ease-out forwards;
}

@keyframes btnBounce {
    0%, 20%, 50%, 80% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-6px) scale(1.02);
    }
    60% {
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}



.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Typing Cursor */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--primary-red);
    margin-left: 5px;
    animation: blink 1s step-start infinite;
}

/* Page Load Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-load-animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

input, button {
    font-family: inherit;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
}

/* Transparent state (default) */
.navbar {
    background-color: transparent;
}

/* Scrolled state (dark background) */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.nav-logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.logo-text {
    color: var(--primary-red);
}

.logo-transport {
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo-transport {
    color: var(--white);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-red);
}

/* CTA Button in Nav */
.nav-cta {
    background-color: var(--primary-red);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

/* One-shot wiggle helper class (used when we want the button to wiggle once) */
.btn-wiggle-once,
.nav-cta.btn-wiggle-once,
.mobile-book-btn.btn-wiggle-once {
    /* Slightly slower wiggle for more gentle emphasis */
    animation: wiggle 2.2s ease-in-out 1;
}

/* Ripple glow used on mobile when typing animation completes */
.ripple-glow {
    position: relative;
    z-index: 1105; /* bring above nav/backdrop */
    overflow: visible;
}
.ripple-glow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.2);
    width: 160%;
    height: 160%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.45) 20%, rgba(220,38,38,0.18) 45%, transparent 65%);
    opacity: 0;
    pointer-events: none;
    z-index: 1106;
    animation: ripple-pulse 2s ease-out 3;
}

@keyframes ripple-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0.95;
    }
    60% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.08;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.nav-cta::after {
    display: none;
}
 
.nav-cta:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.nav-cta.btn-shake:hover,
.mobile-book-btn.btn-shake:hover {
    transform: none !important;
}

/* Mobile Book Now Button */
.mobile-book-btn {
    display: none;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-book-btn:hover {
    background-color: var(--dark-red);
}

/* Language selector styling */
#langSelect,
#langSelectMobile {
    background-color: white;
    transition: all 0.3s ease;
}

#langSelect:hover,
#langSelectMobile:hover {
    border-color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(217, 4, 41, 0.1);
}

/* Mobile Phone Button (hidden on desktop) */
.mobile-phone-btn {
    display: none;
    background-color: transparent;
    color: var(--primary-red);
    padding: 0.45rem 0.6rem;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid transparent;
}

.mobile-phone-btn i {
    pointer-events: none;
}

/* Mobile topbar (thin) */
.mobile-topbar {
    display: none;
}
.mobile-topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}
.mobile-topbar-phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop nav phone: icon spacing and alignment */
.nav-phone a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-phone a .fa-phone {
    font-size: 1rem;
    color: inherit;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color:  var(--white);
    transition: all 0.2s ease;
    border-radius: 2px;
}

/* Hamburger active (X) state */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--white);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../static/IHB hero.jpeg');
    background-size:  cover;
    background-position:  center;
    background-attachment: fixed;
    padding: 10rem 2rem 4rem;
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: rgba(0, 0, 0.1, 0.86);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items:  center;
}

/* Hero Text */
.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge i {
    color: var(--white);
    font-size: 1.2rem;
}

/* ==================== QUOTE FORM ==================== */
.quote-form-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 0.8s ease 0.3s backwards;
    max-width: 450px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}

.form-header i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-red);
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: var(--white);
}

.form-group input::placeholder {
    color: var(--gray);
}

/* Primary Button */
.btn-primary {
    width: 100%;
    padding: 0.95rem 1.8rem;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 0;
    height: 0;
}

.btn-primary:hover {
    background-color: #7f1d1d;
    transform: none;
    box-shadow: none;
}

.btn-primary:active {
    transform: translateY(0);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background-color: var(--white);
    padding: 6rem 2rem;
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: block;
}

/* About Content */
.about-content {
    color: var(--dark-gray);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.about-feature:hover {
    background-color: var(--light-red);
    transform: translateX(10px) scale(1.05) rotateZ(-1deg);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.about-feature i {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 1rem;
    color: var(--gray);
}

/* About Image */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-stat {
    text-align: center;
    color: var(--white);
}

.about-stat h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-stat p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position:  absolute;
    bottom: 2rem;
    left: 50%;
    transform:  translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quote-form-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.25s ease;
        padding: 8rem 2rem 2rem;
        gap: 2rem;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--white);
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    /* Hide desktop Book Now in menu, show mobile button */
    .nav-item-desktop {
        display: none;
    }
    
    .mobile-book-btn {
        display: block;
        margin-right: 0.5rem;
        margin-left: auto;
    }
    .mobile-phone-btn {
        display: block;
        margin-right: 0.5rem;
        color: var(--primary-red);
    }

    /* Show thin topbar and move navbar down on small screens */
    .mobile-topbar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        background-color: rgba(0,0,0,0.9);
        z-index: 1002;
        display: flex;
        align-items: center;
    }
    .mobile-topbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Style mobile language selector in topbar */
    #langSelectMobile {
        display: block !important;
        background: rgba(255,255,255,0.1);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 4px;
        padding: 6px 8px;
        font-size: 13px;
        height: 32px;
        font-weight: 600;
        cursor: pointer;
    }
    
    #langSelectMobile option {
        background: #1a1a1a;
        color: white;
    }
    
    .navbar {
        top: 40px;
    }

    /* Hide desktop nav contact and keep Book Now sizing on small screens */
    .nav-phone {
        display: none !important;
    }
    
    .mobile-book-btn {
        padding: 0.6rem 1.2rem; /* maintain old width/padding */
    }
    
    .hamburger {
        display: flex;
        margin-left: 0.5rem;
    }
    
    .hero {
        padding: 10rem 1.5rem 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        width: 100%;
    }
    
    .badge {
        justify-content: center;
    }
    
    .quote-form-container {
        padding: 1.5rem 3rem;
        max-width: 100%;
    }
    
    .form-header {
        margin-bottom: 1.2rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 0.8rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-image img {
        height: 300px;
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background-color: var(--light-gray);
    padding: 12rem 2rem 6rem 2rem; /* Increased top padding significantly */
    margin-top: 6rem; /* Additional top margin */
}

.pricing-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Mobile Notice */
.mobile-notice {
    display: none;
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--light-red);
    border-radius: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-notice i {
    font-size: 1.1rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--dark-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn i {
    font-size: 1.2rem;
}

.toggle-btn:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Pricing Grid */
.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-grid.active {
    display: grid;
}

/* Pricing Card */
.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    min-height: 220px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03) rotateZ(1deg);
    box-shadow: 0 20px 50px rgba(31, 41, 55, 0.13);
}


/* Book Now and Get Quote pop animation */
.btn-pop {
    animation: shake 0.7s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes btnPop {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.18);
    }
    10% {
        transform: scale(1.12);
        box-shadow: 0 8px 24px 0 rgba(127, 29, 29, 0.22);
    }
    20% {
        transform: scale(0.98);
        box-shadow: 0 4px 12px 0 rgba(127, 29, 29, 0.15);
    }
    30% {
        transform: scale(1.06);
        box-shadow: 0 8px 24px 0 rgba(127, 29, 29, 0.22);
    }
    40% {
        transform: scale(0.98);
        box-shadow: 0 4px 12px 0 rgba(127, 29, 29, 0.15);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 24px 0 rgba(127, 29, 29, 0.22);
    }
    60% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.18);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.18);
    }
}


/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.08);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--dark-gray);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.card-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Card Body */
.card-body {
    margin-bottom: 2rem;
}

.price-wrapper {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray);
    vertical-align: top;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0 0.3rem;
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark-gray);
}

.features-list li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    min-width: 20px;
}

.features-list li.highlight {
    background-color: var(--light-gray);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.features-list li.highlight i {
    color: var(--dark-gray);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1.5rem;
    }
    
    /* Show mobile notice */
    .mobile-notice {
        display: flex;
    }
    
    .pricing-toggle {
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto 1rem;
        gap: 0.5rem;
    }
    
    .toggle-btn {
        width: 100%;
        justify-content: center;
        position: relative;
        text-align: center;
    }
    
    .toggle-btn::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
    }
    /* On mobile we don't want accordion arrows; show simple button UI */
    .toggle-btn::after {
        display: none;
    }
    
    /* Mobile accordion behavior */
    .pricing-grid {
        grid-template-columns: 1fr;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-bottom: 1rem;
    }
    
    .pricing-grid.active {
        display: grid;
        max-height: 5000px;
        margin-bottom: 2rem;
    }

    /* Ensure typing text is visible and properly spaced on mobile */
    .typing-container {
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 0.8rem 0;
        min-height: 48px;
        visibility: visible;
    }
    .typing-text {
        font-size: 1.05rem;
        -webkit-text-fill-color: var(--primary-red) !important;
        color: var(--primary-red) !important;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background-color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    background: white;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    pointer-events: all;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.carousel-btn i {
    font-size: 1.2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
}

.carousel-indicator:hover {
    background: var(--primary-red);
    opacity: 0.7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    background: white;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-image {
    flex-shrink: 0;
    position: relative;
}

/* Ensure testimonial images are circular and consistent */
.testimonial-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 3px solid #fff; /* subtle white ring to separate from card */
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.testimonial-image .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Avatar fallback for reviews without images */
.testimonial-image .avatar-fallback {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC2626, #991b1b);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.testimonial-image .avatar-fallback i {
    font-size: 36px;
    color: #fff;
}

@media (max-width: 768px) {
    .testimonial-image img,
    .testimonial-image .avatar,
    .testimonial-image .avatar-fallback {
        width: 64px;
        height: 64px;
    }
    
    .testimonial-image .avatar-fallback i {
        font-size: 28px;
    }
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.testimonial-content {
    flex: 1;
    text-align: left;
}

.quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.3;
}

.author-meta .name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.author-meta .title {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Mobile: Carousel with rotations */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1.5rem 5rem 1.5rem;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .carousel-controls {
        display: none; /* Hide arrows on mobile, use swipe instead */
    }

    .cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
        justify-content: center;
        padding: 0 1rem;
    }

    .testimonial-card {
        flex: 0 0 90%;
        max-width: 500px;
        scroll-snap-align: center;
        transform-origin: center;
        transition: transform 0.3s ease;
        opacity: 1;
        transform: translateY(0);
        margin: 0 auto;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonial-content {
        text-align: center;
    }

    .quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
    }
}

/* Testimonials CTA Button */
.testimonials-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-review {
    background-color: var(--primary-red);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px 0 rgba(220, 38, 38, 0.08);
}

.btn-review:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.3);
}

.btn-review:active {
    transform: translateY(0);
}

/* Review Modal */
.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.review-modal-close:hover {
    background: #f3f4f6;
    color: var(--dark-gray);
}

.review-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-review {
    width: 100%;
    background-color: var(--primary-red);
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    background-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-submit-review:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .review-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .review-modal-title {
        font-size: 1.5rem;
    }

    .btn-review {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* End testimonials */


.testimonial-card-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

.testimonial-card-alt.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #F59E0B;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-red);
    transform: scale(1.3);
}

.dot:hover {
    background-color: var(--primary-red);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
    
    .testimonial-card-alt {
        padding: 2rem;
        height: auto;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-track {
        height: 450px;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: #e5e7eb;
    width: 100vw;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    max-width: var(--max-width);
    width: 100%;
    padding: 0 2rem;
}

.footer-content {
    text-align: center;
}


.footer-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-gray);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-style: normal;
}


.typing-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-style: normal;
}

/* If Interested Text (future use) */
.if-interested-text {
    font-weight: 300;
    font-style: normal;
}
/* Typing Cursor - Hidden */
.typing-cursor {
    display: none;
}

.footer-info {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
    font-weight: 400;
}

/* Mobile Footer */
@media (max-width: 600px) {
    .footer-text {
        font-size: 1.2rem;
    }
    
    .footer-info {
        font-size: 0.8rem;
    }
}
