:root {
    --primary: #C00A27; /* Vinmec Red */
    --primary-dark: #9e0820;
    --secondary: #002D62; /* Navy Blue */
    --secondary-dark: #001a3b;
    --light: #F4F7F6;
    --dark: #2C3E50;
    --gray: #6C7A89;
    --white: #FFFFFF;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 45, 98, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-navy {
    background-color: var(--secondary);
    color: var(--white);
}

.relative {
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.bg-navy .section-header h2 {
    color: var(--white);
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary), #ff4d6d);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(192, 10, 39, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 10, 39, 0.5);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

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

.logo-mec {
    color: var(--secondary);
    margin-right: 10px;
}

.logo-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    border-left: 1px solid var(--gray);
    padding-left: 10px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.desktop-nav a:hover {
    color: var(--primary);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,45,98,0.9) 0%, rgba(0,45,98,0.6) 50%, rgba(0,45,98,0.1) 100%);
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero h1 span {
    color: var(--primary);
}

.slogan {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(192, 10, 39, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.service-card:hover::before {
    width: 100%;
    background: var(--secondary);
    z-index: 0;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    z-index: 1;
}

.service-content {
    z-index: 1;
}

.service-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.service-content p {
    color: var(--gray);
    transition: var(--transition);
}

.service-card:hover .service-content h3,
.service-card:hover .service-content p,
.service-card:hover .service-icon {
    color: var(--white);
}

/* Procedure Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
    margin-top: 40px;
}

.process-line {
    position: absolute;
    top: 35px; /* Centers perfectly with the 70px step-icon-circle */
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 45, 98, 0.1) 0%, rgba(192, 10, 39, 0.2) 50%, rgba(0, 45, 98, 0.1) 100%);
    border-radius: 2px;
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-badge-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(192, 10, 39, 0.3);
    border: 2px solid var(--white);
    z-index: 3;
}

.step-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step-icon-circle::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px dashed rgba(0, 45, 98, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.step-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 45, 98, 0.05);
    transition: var(--transition);
    width: 100%;
    height: 200px; /* Make card heights uniform */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Animations & Hover effects */
@keyframes rotate-dashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-step:hover .step-icon-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(192, 10, 39, 0.3);
}

.process-step:hover .step-icon-circle::after {
    animation: rotate-dashed 8s linear infinite;
    border-color: var(--primary);
}

.process-step:hover .step-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(192, 10, 39, 0.1);
}

.process-step:hover .step-card h3 {
    color: var(--primary);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.doctor-img {
    height: 350px;
    overflow: hidden;
    background-color: var(--light);
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 25px;
}

.doctor-info h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.doctor-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.doctor-expertise {
    color: var(--gray);
    font-size: 0.95rem;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-date i {
    margin-right: 5px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.news-more {
    display: inline-block;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.news-more:hover {
    color: var(--primary);
}

.news-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.news-more:hover i {
    transform: translateX(5px);
}

/* Stories */
.stories-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light);
}

.stories-carousel::-webkit-scrollbar {
    height: 8px;
}

.stories-carousel::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 4px;
}

.stories-carousel::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.story-card {
    min-width: 800px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    overflow: hidden;
}

.story-img {
    width: 40%;
    position: relative;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(192, 10, 39, 0.2);
    margin-bottom: 15px;
}

.story-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-author {
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.story-author strong {
    display: block;
    color: var(--secondary);
    font-size: 1.1rem;
}

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

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-details {
    list-style: none;
    margin-bottom: 40px;
}

.contact-details li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-details strong {
    display: block;
    margin-bottom: 5px;
}

.contact-details span {
    opacity: 0.8;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.booking-form h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 10, 39, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 0;
    text-align: center;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
    .story-card {
        min-width: 600px;
    }
}

@media (max-width: 991px) {
    .process-flow {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    
    .process-line {
        top: 0;
        bottom: 0;
        left: 35px;
        right: auto;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 45, 98, 0.1) 0%, rgba(192, 10, 39, 0.2) 50%, rgba(0, 45, 98, 0.1) 100%);
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .step-badge-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-card {
        height: auto;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .btn-booking {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-grid, .services-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    
    .story-card {
        min-width: 100%;
        flex-direction: column;
    }
    
    .story-img, .story-content {
        width: 100%;
    }
    
    .story-img {
        height: 250px;
    }
    
    .contact-wrapper {
        padding: 30px 20px;
    }
}

/* Quick Contact Buttons Styling */
.quick-contact-options {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.quick-contact-options p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px !important;
}

.quick-contact-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-zalo {
    background-color: #0068FF !important;
    color: var(--white) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3) !important;
}

.btn-zalo:hover {
    background-color: #0054d1 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 104, 255, 0.5) !important;
}

.btn-hotline {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(192, 10, 39, 0.3) !important;
}

.btn-hotline:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 10, 39, 0.5) !important;
}

@media (max-width: 480px) {
    .quick-contact-btns {
        flex-direction: column;
        gap: 10px;
    }
    .quick-contact-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Booking Redesign Styles (Tabs, Hotline Card & Toast)
   ========================================================================== */

.booking-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 5px;
}

.booking-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.booking-tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.booking-tab-btn.active {
    background: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.booking-tab-btn svg {
    transition: transform 0.3s;
}

.booking-tab-btn:hover svg {
    transform: scale(1.1);
}

.form-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

/* Doctor Hotline Card inside Form */
.doctor-hotline-card {
    text-align: center;
    padding: 15px 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor-avatar-circle {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid rgba(192, 10, 39, 0.1);
    padding: 3px;
    background: var(--white);
}

.doctor-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.online-pulse-badge {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    background-color: #2ecc71;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.doctor-hotline-card h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.doc-badge {
    background-color: rgba(192, 10, 39, 0.08);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    max-width: 90%;
    line-height: 1.3;
}

.doc-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.hotline-divider {
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin-bottom: 25px;
}

.btn-hotline-pulse {
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 35px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(192, 10, 39, 0.4);
    animation: buttonPulse 2s infinite;
    transition: var(--transition);
}

.btn-hotline-pulse:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 10, 39, 0.6);
    color: var(--white);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 10, 39, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(192, 10, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(192, 10, 39, 0);
    }
}

.hotline-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 12px;
}

/* Custom Toast Notification for Clipboard Copy */
.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
    width: max-content;
    pointer-events: none;
}

.custom-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.custom-toast i.success-icon {
    color: #2ecc71;
    font-size: 1.1rem;
}

.custom-toast .spinner {
    color: #3498db;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-tabs {
        flex-wrap: nowrap;
        border-radius: 30px;
        padding: 4px;
        gap: 2px;
    }
    .booking-tab-btn {
        flex: 1;
        width: auto;
        padding: 8px 4px;
        font-size: 0.8rem;
        gap: 4px;
    }
    .booking-form {
        padding: 25px 20px;
    }
    .contact-wrapper {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .desktop-text {
        display: none;
    }
}

/* ==========================================================================
   Mobile Navigation Drawer
   ========================================================================== */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.mobile-nav-header .logo {
    font-size: 1.3rem;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close-btn:hover {
    background: rgba(0, 45, 98, 0.05);
}

.mobile-nav-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-body a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.mobile-nav-body a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.btn-drawer-booking {
    margin-top: auto;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 26, 59, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

