
     /* ========================================
   BOOK APPOINTMENT SECTION
   ======================================== */

     .appointment-section {
         position: relative;
         padding: 8rem 0;
         background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
         overflow: hidden;
     }

     .appointment-section::before {
         content: '';
         position: absolute;
         top: -30%;
         right: -15%;
         width: 700px;
         height: 700px;
         background: radial-gradient(circle, rgba(194, 38, 32, 0.04) 0%, transparent 70%);
         border-radius: 50%;
         pointer-events: none;
     }

     .appointment-section::after {
         content: '';
         position: absolute;
         bottom: -25%;
         left: -10%;
         width: 600px;
         height: 600px;
         background: radial-gradient(circle, rgba(124, 123, 123, 0.03) 0%, transparent 70%);
         border-radius: 50%;
         pointer-events: none;
     }

     .appointment-wrapper {
         display: grid;
         grid-template-columns: 1.1fr 1fr;
         gap: 4rem;
         max-width: 1300px;
         margin: 0 auto;
         position: relative;
         z-index: 1;
     }

     /* Form Container */
     .form-container {
         background: rgba(255, 255, 255, 0.75);
         backdrop-filter: blur(24px) saturate(180%);
         border-radius: 28px;
         padding: 3rem;
         box-shadow:
             0 2px 8px rgba(0, 0, 0, 0.04),
             0 12px 40px rgba(0, 0, 0, 0.08),
             inset 0 0 0 1px rgba(255, 255, 255, 0.9);
         transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     }

     .form-container:hover {
         box-shadow:
             0 4px 12px rgba(0, 0, 0, 0.06),
             0 20px 60px rgba(0, 0, 0, 0.1),
             inset 0 0 0 1px rgba(255, 255, 255, 0.95);
     }

     /* Form Header */
     .form-header {
         margin-bottom: 2.5rem;
     }

     .header-badge {
         display: inline-flex;
         align-items: center;
         gap: 0.625rem;
         padding: 0.5rem 1.25rem;
         background: rgba(194, 38, 32, 0.06);
         border-radius: 50px;
         margin-bottom: 1.25rem;
         font-size: 0.75rem;
         font-weight: 600;
         letter-spacing: 0.1em;
         color: #c22620;
         text-transform: uppercase;
     }

     .badge-pulse {
         width: 8px;
         height: 8px;
         background: #c22620;
         border-radius: 50%;
         position: relative;
         animation: pulse-ring 2s ease-out infinite;
     }

     @keyframes pulse-ring {
         0% {
             box-shadow: 0 0 0 0 rgba(194, 38, 32, 0.7);
         }

         50% {
             box-shadow: 0 0 0 8px rgba(194, 38, 32, 0);
         }

         100% {
             box-shadow: 0 0 0 0 rgba(194, 38, 32, 0);
         }
     }

     .form-title {
         font-size: 2.75rem;
         font-weight: 700;
         color: #1a1a1a;
         margin-bottom: 0.75rem;
         letter-spacing: -0.02em;
         line-height: 1.1;
     }

     .form-subtitle {
         font-size: 1rem;
         color: #7c7b7b;
         line-height: 1.6;
         max-width: 500px;
     }

     /* Appointment Form */
     .appointment-form {
         display: flex;
         flex-direction: column;
         gap: 1.5rem;
     }

     /* Input Group */
     .input-group {
         position: relative;
     }

     .textarea-group {
         margin-top: 0.5rem;
     }

     .input-icon {
         position: absolute;
         left: 1.25rem;
         top: 50%;
         transform: translateY(-50%);
         color: #7c7b7b;
         pointer-events: none;
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         z-index: 2;
     }

     .textarea-group .input-icon {
         top: 1.25rem;
         transform: none;
     }

     .form-input {
         width: 100%;
         padding: 1.125rem 1.25rem 1.125rem 3.5rem;
         background: rgba(255, 255, 255, 0.6);
         border: 2px solid rgba(0, 0, 0, 0.06);
         border-radius: 16px;
         font-size: 1rem;
         color: #1a1a1a;
         font-family: 'Inter', sans-serif;
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         outline: none;
     }

     .form-textarea {
         padding-top: 1.25rem;
         padding-bottom: 1.25rem;
         resize: vertical;
         min-height: 140px;
     }

     .form-input::placeholder {
         color: transparent;
     }

     .form-input:focus {
         background: rgba(255, 255, 255, 0.95);
         border-color: #c22620;
         box-shadow: 0 0 0 4px rgba(194, 38, 32, 0.08);
         transform: translateY(-2px);
     }

     .form-input:focus+.floating-label,
     .form-input:not(:placeholder-shown)+.floating-label {
         top: -0.625rem;
         left: 2.75rem;
         font-size: 0.75rem;
         color: #c22620;
         background: rgba(255, 255, 255, 0.95);
         padding: 0 0.5rem;
     }

     .form-input:focus~.input-icon {
         color: #c22620;
         transform: translateY(-50%) scale(1.1);
     }

     .textarea-group .form-input:focus~.input-icon {
         transform: scale(1.1);
     }

     /* Floating Label */
     .floating-label {
         position: absolute;
         left: 3.5rem;
         top: 50%;
         transform: translateY(-50%);
         font-size: 1rem;
         color: #7c7b7b;
         pointer-events: none;
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         background: transparent;
         padding: 0;
     }

     .textarea-group .floating-label {
         top: 1.25rem;
         transform: none;
     }

     /* Submit Button */
     .submit-btn {
         position: relative;
         margin-top: 0.5rem;
         padding: 1.25rem 2.5rem;
         background: linear-gradient(135deg, #c22620, #a51d18);
         color: white;
         border: none;
         border-radius: 16px;
         font-size: 1.063rem;
         font-weight: 600;
         cursor: pointer;
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 0.75rem;
         box-shadow:
             0 4px 16px rgba(194, 38, 32, 0.3),
             inset 0 1px 0 rgba(255, 255, 255, 0.2);
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         overflow: hidden;
     }

     .submit-btn:hover {
         transform: translateY(-3px);
         box-shadow:
             0 8px 28px rgba(194, 38, 32, 0.4),
             inset 0 1px 0 rgba(255, 255, 255, 0.25);
     }

     .submit-btn:active {
         transform: translateY(-1px);
     }

     .btn-arrow {
         transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     }

     .submit-btn:hover .btn-arrow {
         transform: translateX(6px);
     }

     .btn-shine {
         position: absolute;
         inset: 0;
         background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
         transform: translateX(-100%);
         transition: transform 0.6s;
     }

     .submit-btn:hover .btn-shine {
         transform: translateX(100%);
     }

     /* Privacy Note */
     .privacy-note {
         display: flex;
         align-items: center;
         gap: 0.5rem;
         font-size: 0.813rem;
         color: #7c7b7b;
         margin-top: 0.5rem;
         line-height: 1.5;
     }

     .privacy-note svg {
         flex-shrink: 0;
         color: #c22620;
     }

     /* Benefits Container */
     .benefits-container {
         display: flex;
         flex-direction: column;
         gap: 2rem;
     }

     .benefits-card {
         background: rgba(255, 255, 255, 0.65);
         backdrop-filter: blur(20px) saturate(180%);
         border-radius: 24px;
         padding: 2.5rem;
         box-shadow:
             0 2px 8px rgba(0, 0, 0, 0.04),
             0 12px 40px rgba(0, 0, 0, 0.06),
             inset 0 0 0 1px rgba(255, 255, 255, 0.8);
         display: flex;
         flex-direction: column;
         gap: 2rem;
     }

     /* Benefit Item */
     .benefit-item {
         display: flex;
         gap: 1.25rem;
         align-items: flex-start;
     }

     .benefit-icon-wrapper {
         flex-shrink: 0;
         position: relative;
     }

     .benefit-icon {
         width: 64px;
         height: 64px;
         display: flex;
         align-items: center;
         justify-content: center;
         background: linear-gradient(135deg, rgba(194, 38, 32, 0.1), rgba(194, 38, 32, 0.05));
         border-radius: 16px;
         color: #c22620;
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     }

     .benefit-item:hover .benefit-icon {
         transform: translateY(-4px) scale(1.05);
         background: linear-gradient(135deg, #c22620, #a51d18);
         color: white;
         box-shadow: 0 8px 20px rgba(194, 38, 32, 0.25);
     }

     .benefit-content {
         flex: 1;
         padding-top: 0.375rem;
     }

     .benefit-title {
         font-size: 1.125rem;
         font-weight: 600;
         color: #1a1a1a;
         margin-bottom: 0.5rem;
         line-height: 1.3;
     }

     .benefit-desc {
         font-size: 0.938rem;
         color: #7c7b7b;
         line-height: 1.6;
     }

     /* Stats Grid */
     .stats-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 1.5rem;
         background: linear-gradient(135deg, rgba(194, 38, 32, 0.06), rgba(194, 38, 32, 0.03));
         border-radius: 20px;
         padding: 2rem;
         border: 1px solid rgba(194, 38, 32, 0.12);
     }

     .stat-item {
         text-align: center;
     }

     .stat-number {
         font-size: 2.25rem;
         font-weight: 700;
         color: #c22620;
         margin-bottom: 0.375rem;
         letter-spacing: -0.02em;
     }

     .stat-label {
         font-size: 0.813rem;
         font-weight: 500;
         color: #7c7b7b;
         text-transform: uppercase;
         letter-spacing: 0.05em;
     }

     /* Responsive */
     @media (max-width: 1200px) {
         .appointment-wrapper {
             gap: 3rem;
         }

         .form-container {
             padding: 2.5rem;
         }

         .benefits-card {
             padding: 2rem;
         }
     }

     @media (max-width: 991px) {
         .appointment-section {
             padding: 6rem 0;
         }

         .appointment-wrapper {
             grid-template-columns: 1fr;
             gap: 3rem;
         }

         .form-title {
             font-size: 2.25rem;
         }

         .stats-grid {
             gap: 1.25rem;
         }
     }

     @media (max-width: 767px) {
         .appointment-section {
             padding: 4rem 0;
         }

         .form-container,
         .benefits-card {
             padding: 2rem;
             border-radius: 24px;
         }

         .form-title {
             font-size: 2rem;
         }

         .form-subtitle {
             font-size: 0.938rem;
         }

         .benefit-item {
             gap: 1rem;
         }

         .benefit-icon {
             width: 56px;
             height: 56px;
         }

         .benefit-title {
             font-size: 1rem;
         }

         .benefit-desc {
             font-size: 0.875rem;
         }

         .stats-grid {
             gap: 1rem;
             padding: 1.5rem;
         }

         .stat-number {
             font-size: 1.875rem;
         }

         .stat-label {
             font-size: 0.75rem;
         }
     }

     @media (max-width: 575px) {
         .appointment-section {
             padding: 3rem 0;
         }

         .form-container,
         .benefits-card {
             padding: 1.5rem;
             border-radius: 20px;
         }

         .form-header {
             margin-bottom: 2rem;
         }

         .form-title {
             font-size: 1.75rem;
         }

         .form-input {
             padding: 1rem 1rem 1rem 3.25rem;
             font-size: 0.938rem;
         }

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

         .submit-btn {
             padding: 1.125rem 2rem;
             font-size: 1rem;
         }

         .benefits-card {
             gap: 1.5rem;
         }

         .benefit-icon {
             width: 48px;
             height: 48px;
         }

         .benefit-icon svg {
             width: 24px;
             height: 24px;
         }

         .stats-grid {
             grid-template-columns: 1fr;
             gap: 1.25rem;
         }

         .stat-item {
             padding: 0.75rem 0;
             border-bottom: 1px solid rgba(194, 38, 32, 0.1);
         }

         .stat-item:last-child {
             border-bottom: none;
         }
     }
