 
        :root {
            --primary: #1a4f8b;
            --secondary: #3a7bd5;
            --accent: #f0bd27ff;
            --light: #f5f7fa;
            --dark: #2c3e50;
            --text: #34495e;
            --background: #f0f4f8;
            --card-bg: #ffffff;
        }
        
        /* Provider Header */
        .provider-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 40px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .provider-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
            opacity: 0.15;
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .provider-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .provider-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* Filter Section */
        .filter-section {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }

        .filter-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .filter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            background: var(--light);
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Specialties Filter */
        .specialty-filter-container {
            display: none;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 20px;
        }

        .specialty-filter-title {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .specialty-filter-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .specialty-filter-btn {
            padding: 8px 15px;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            background: white;
            color: var(--secondary);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .specialty-filter-btn:hover, .specialty-filter-btn.active {
            background: var(--secondary);
            color: white;
        }

        /* Main Book Now Button */
        .main-book-now-container {
            text-align: center;
            margin: 40px 0;
            margin-left: 680px;
        }

        .main-book-now-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 600;
            background: linear-gradient(45deg, var(--accent), #ffd43b);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(240, 189, 39, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .main-book-now-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(240, 189, 39, 0.6);
            animation: none;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 10px 25px rgba(240, 189, 39, 0.4);
            }
            50% {
                box-shadow: 0 10px 30px rgba(240, 189, 39, 0.7);
            }
            100% {
                box-shadow: 0 10px 25px rgba(240, 189, 39, 0.4);
            }
        }

        /* Providers Section */
        .providers-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .provider-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .provider-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .service-badges {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 2;
        }

        .service-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .badge-telehealth {
            background: var(--accent);
            color: var(--dark);
        }

        .badge-inperson {
            background: var(--primary);
            color: white;
        }

        .card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .provider-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 25px;
        }

        .provider-name {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .provider-role {
            color: var(--primary);
            font-size: 0.95rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .provider-qualities {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .quality-tag {
            padding: 6px 12px;
            background: rgba(26, 79, 139, 0.1);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary);
        }

        .provider-specialties {
            margin: 20px 0;
        }

        .specialty-title {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .specialty-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .specialty-item {
            padding: 6px 12px;
            background: var(--accent);
            color: var(--dark);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .card-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .view-profile-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
        }

        .view-profile-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            background: linear-gradient(45deg, var(--secondary), var(--primary));
        }

        /* Provider Detail Page */
        .provider-detail-page {
            display: none;
            padding: 60px 0;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            margin-bottom: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            color: var(--secondary);
            transform: translateX(-5px);
        }

        .detail-container {
            display: flex;
            gap: 40px;
        }

        .detail-left {
            flex: 2;
        }

        .detail-right {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            align-self: flex-start;
            position: sticky;
            top: 20px;
        }

        .detail-header {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .detail-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .detail-info h1 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .detail-info p {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .detail-qualities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .detail-quality {
            padding: 8px 15px;
            background: var(--accent);
            color: var(--dark);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .detail-section {
            margin-bottom: 30px;
        }

        .section-heading {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-heading::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .specialty-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .specialty-badge {
            padding: 8px 15px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .detail-bio {
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .detail-bio p {
            margin-bottom: 15px;
        }

        .treatment-approach {
            background: rgba(58, 123, 213, 0.1);
            padding: 25px;
            border-radius: 12px;
            margin-top: 25px;
        }

        .treatment-approach h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .treatment-approach p {
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .book-session-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .book-session-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Detail Page Right Column */
        .detail-box {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .detail-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-box p {
            line-height: 1.6;
        }

        .contact-btn {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--primary);
            border-radius: 8px;
            background: white;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }

        .contact-btn:hover {
            background: rgba(26, 79, 139, 0.1);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background-color: white;
            margin: 2% auto;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .modal-title {
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        /* Enhanced Form Styles */
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .form-group {
            flex: 1;
            min-width: 250px;
            margin-bottom: 0;
        }
        
        .form-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary);
        }
        
        .form-section-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .form-info {
            font-size: 0.85rem;
            color: #718096;
            margin-top: 5px;
        }

        .optional-trigger {
            color: var(--primary);
            cursor: pointer;
            font-size: 0.9rem;
            margin-top: 5px;
            display: inline-block;
        }

        .optional-trigger:hover {
            text-decoration: underline;
        }

        .optional-fields {
            display: none;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #e2e8f0;
        }

        .tooltip-icon {
            color: var(--primary);
            margin-left: 5px;
            cursor: pointer;
        }

        .tooltip-content {
            display: none;
            position: absolute;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 100;
            max-width: 300px;
            font-size: 0.9rem;
            border: 1px solid #e2e8f0;
        }

        .tooltip-wrapper {
            position: relative;
            display: inline-block;
        }

        .tooltip-wrapper:hover .tooltip-content {
            display: block;
        }

        .modal-link {
            color: var(--primary);
            cursor: pointer;
            text-decoration: underline;
        }

        .modal-link:hover {
            color: var(--secondary);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .checkbox-group input {
            margin-top: 5px;
        }

        .checkbox-group label {
            font-size: 0.9rem;
        }

        .form-section-disabled {
            opacity: 0.6;
            pointer-events: none;
        }

        .file-upload {
            border: 2px dashed #e2e8f0;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .file-upload:hover {
            border-color: var(--primary);
        }

        .file-upload-input {
            display: none;
        }

        .file-upload-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .file-preview {
            margin-top: 15px;
            display: none;
        }

        .submit-section {
            background: var(--light);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            text-align: center;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        /* Patient Type Modal */
        .patient-type-modal {
            text-align: center;
        }

        .patient-type-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .patient-type-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 180px;
        }

        .patient-type-btn.new-patient {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
        }

        .patient-type-btn.existing-patient {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .patient-type-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .detail-container {
                flex-direction: column;
            }
            
            .detail-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .detail-image {
                margin-bottom: 20px;
            }
            
            .detail-right {
                position: static;
            }

            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .contact-info {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .provider-title {
                font-size: 2.2rem;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
            .providers-grid {
                grid-template-columns: 1fr;
            }
            
            .detail-info h1 {
                font-size: 1.8rem;
            }
            
            .section-heading {
                font-size: 1.2rem;
            }
            
            .card-buttons {
                flex-direction: column;
            }

            .nav-links {
                flex-wrap: wrap;
                gap: 15px;
            }

            .modal-content {
                padding: 20px;
                margin: 5% auto;
            }

            .patient-type-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .form-group {
                min-width: 100%;
            }
        }

        .form-label.required::after {
            content: " *";
            color: #e74c3c;
        }
        
        .form-control:required {
            border-left: 3px solid #e74c3c;
        }
        
        .form-control:required:valid {
            border-left: 3px solid #2ecc71;
        }
        
        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        /* Thank You Page Styles */
        .thankyou-page {
    display: none;
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    z-index: 9999; /* Ensure it appears above other content */
}

        .thankyou-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .thankyou-icon {
            font-size: 4rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .thankyou-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .thankyou-message {
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .booking-reference {
            display: inline-block;
            padding: 10px 20px;
            background: var(--light);
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .thankyou-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .thankyou-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .thankyou-btn.home {
            background: var(--primary);
            color: white;
        }

        .thankyou-btn.providers {
            background: var(--accent);
            color: var(--dark);
        }

        .thankyou-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .thankyou-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .thankyou-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Pricing Information Styles */
        .pricing-info {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary);
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }
        
        .pricing-info h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .pricing-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .pricing-service {
            font-weight: 500;
        }
        
        .pricing-amount {
            color: var(--primary);
            font-weight: 600;
        }
        
        .required-field::after {
            content: " *";
            color: #e74c3c;
        }
        
        .card-info-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary);
        }
        
        .card-input {
            border: 2px solid #e2e8f0;
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .card-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .card-row {
            display: flex;
            gap: 15px;
        }
        
        .card-col {
            flex: 1;
        }
        
        .book-now-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            color: white;
        }

        .two-column-layout {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .pricing-info {
            flex: 1;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pricing-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-info h3 i {
            color: var(--accent);
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .pricing-service {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .pricing-amount {
            font-weight: 700;
            color: var(--accent);
        }

        .book-now-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-book-now-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 600;
            background: linear-gradient(45deg, var(--accent), #ffd43b);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(240, 189, 39, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            text-decoration: none;
        }

        .main-book-now-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(240, 189, 39, 0.6);
            animation: none;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 10px 25px rgba(240, 189, 39, 0.4);
            }
            50% {
                box-shadow: 0 10px 30px rgba(240, 189, 39, 0.7);
            }
            100% {
                box-shadow: 0 10px 25px rgba(240, 189, 39, 0.4);
            }
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .two-column-layout {
                flex-direction: column;
                gap: 30px;
            }
            
            .pricing-info, .book-now-container {
                width: 100%;
            }
            
            .book-now-container {
                order: -1;
            }
        }

        @media (max-width: 576px) {
            .book-now-section {
                padding: 20px;
            }
            
            .pricing-info {
                padding: 20px;
            }
            
            .main-book-now-btn {
                padding: 15px 25px;
                font-size: 1.1rem;
            }
            
            .pricing-item {
                flex-direction: column;
                gap: 5px;
            }
        }

        .info-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        
        .info-modal-content {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .info-modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #777;
        }
        
        .info-modal-title {
            margin-top: 0;
            color: #3a7bd5;
            font-size: 1.2rem;
        }
        
        .info-modal-body {
            margin: 15px 0;
            line-height: 1.6;
        }
        
        .tooltip-icon {
            cursor: pointer;
            color: #3a7bd5;
            margin-left: 5px;
        }
        
        /* Stripe Element styles */
        .StripeElement {
            box-sizing: border-box;
            height: 40px;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            background-color: white;
            transition: border-color 0.15s ease;
        }

        .StripeElement--focus {
            border-color: #3a7bd5;
            box-shadow: 0 1px 3px 0 rgba(58, 123, 213, 0.2);
        }

        .StripeElement--invalid {
            border-color: #e74c3c;
        }

        .StripeElement--webkit-autofill {
            background-color: #fefde5 !important;
        }

        .card-errors {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }
        /* Floating Button Styles */
        .floating-book-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            padding: 15px 25px;
            background: linear-gradient(135deg, #3a7bd5, #00d2ff);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse 2s infinite;
        }
        
        .floating-book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #00d2ff, #3a7bd5);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(58, 123, 213, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(58, 123, 213, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(58, 123, 213, 0);
            }
        }
        
        /* New styles for insurance and license uploads */
        .insurance-card-upload {
            margin-top: 15px;
        }
        
        .license-upload-section {
            margin-top: 20px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        
        .self-pay-notice {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #3a7bd5;
        }
        
        .self-pay-notice a {
            color: #3a7bd5;
            font-weight: 600;
            text-decoration: underline;
        }
        
        .file-upload-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 15px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .floating-book-btn {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .floating-book-btn i {
                font-size: 16px;
            }
            
            .file-upload-grid {
                grid-template-columns: 1fr;
            }
        }


