/* ========================================
   ONLINE & VIDEO CONSULTATION - Specific styling
   Uses base variables from theme.css
   ======================================== */

/* Base wrapper */
.tty-ovc-wrapper {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Decorative pattern background */
.tty-ovc-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9%;
    width: 40%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v10m0 30v10m-20-25h10m30 0h10' stroke='%23005F5F' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='15' r='2' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='45' r='2' fill='%23005F5F'/%3E%3Ccircle cx='20' cy='30' r='2' fill='%23005F5F'/%3E%3Ccircle cx='40' cy='30' r='2' fill='%23005F5F'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Direct children above pattern */
.tty-ovc-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Banner section */
.tty-ovc-banner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 40px;
}

.tty-ovc-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}


.tty-ovc-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}

.tty-hero-title {
    margin: 0px 0px 10px 0px;
}

/* Container layout */
.tty-ovc-container {
    display: flex;
    gap: 40px;
}

/* Sidebar navigation */
.tty-ovc-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.tty-ovc-nav-block,
.tty-ovc-links-block {
    background-color: var(--tty-bg-secondary);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px;
}

.tty-ovc-nav-block h3,
.tty-ovc-links-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.tty-ovc-nav-list,
.tty-ovc-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-ovc-nav-list li,
.tty-ovc-quick-links li {
    margin-bottom: 10px;
}

.tty-ovc-nav-list a,
.tty-ovc-quick-links a {
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-ovc-nav-list a:hover,
.tty-ovc-quick-links a:hover,
.tty-ovc-nav-list a.active {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
}

.tty-ovc-quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tty-ovc-quick-links a i {
    font-size: 12px;
    opacity: 0.7;
    transition: var(--tty-transition-normal);
}

.tty-ovc-quick-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Main content area */
.tty-ovc-content-main {
    flex: 1;
}

.tty-ovc-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.tty-ovc-section:last-of-type {
    border-bottom: none;
    margin-bottom: 150px;
}

.tty-ovc-section h2 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
}

.tty-ovc-block {
    background-color: var(--tty-bg-secondary);
    padding: 30px;
    border-radius: 30px;
}

/* Benefits Grid */
.tty-ovc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.tty-ovc-benefit-card {
    background: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tty-ovc-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tty-primary), #00a896, var(--tty-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tty-ovc-benefit-card:hover::before {
    transform: scaleX(1);
}

.tty-ovc-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,95,0.1);
}

.tty-ovc-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--tty-primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.tty-ovc-benefit-card:hover .tty-ovc-benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.15) 0%, rgba(0, 168, 150, 0.15) 100%);
}

.tty-ovc-benefit-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--tty-primary);
}

.tty-ovc-benefit-card p {
    margin: 0;
    line-height: 1.6;
}

/* Process Flow */
.tty-ovc-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 15px;
    flex-wrap: wrap;
}

.tty-ovc-process-step {
    flex: 1;
    text-align: center;
    min-width: 100px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tty-ovc-process-step:hover {
    transform: translateY(-5px);
}

.tty-ovc-step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.3);
    transition: all 0.3s ease;
}

.tty-ovc-process-step:hover .tty-ovc-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.4);
}

.tty-ovc-process-step h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--tty-primary);
}

.tty-ovc-process-step p {
    margin: 0;
    font-size: 13px;
    color: var(--tty-text-secondary);
}

.tty-ovc-step-arrow {
    flex: 0;
    padding: 0 10px;
    color: rgba(0, 95, 95, 0.3);
    font-size: 20px;
}

/* Consultation Method Selector */
.tty-ovc-method-selector {
    margin-top: 40px;
}

.tty-ovc-method-selector h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--tty-primary);
    font-size: 24px;
}

.tty-ovc-method-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tty-ovc-method-option {
    background: white;
    border: 2px solid rgba(0, 95, 95, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tty-ovc-method-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tty-ovc-method-option.active {
    border-color: var(--tty-primary);
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
}

.tty-ovc-method-option:hover::after {
    opacity: 1;
}

.tty-ovc-method-option.active::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--tty-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tty-ovc-method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 30px;
}

.tty-ovc-method-option h4 {
    margin: 0 0 10px;
    color: var(--tty-primary);
    font-size: 18px;
}

.tty-ovc-method-option p {
    margin: 0 0 15px;
    color: var(--tty-text-secondary);
}

.tty-ovc-method-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 95, 95, 0.05);
    border-radius: 20px;
    font-size: 13px;
    color: var(--tty-primary);
    font-weight: 600;
}

/* Video Panel */
.tty-ovc-video-panel {
    background: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tty-ovc-video-header {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tty-ovc-video-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tty-ovc-video-header h3 {
    margin: 0;
    color: white;
    font-size: 22px;
}

.tty-ovc-video-content {
    padding: 25px;
}

.tty-ovc-video-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tty-ovc-video-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.tty-ovc-video-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8e44ad;
    font-weight: bold;
    font-size: 18px;
}

/* App Prompt */
.tty-ovc-app-prompt {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.tty-ovc-app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.tty-ovc-app-content {
    flex: 1;
}

.tty-ovc-app-content h4 {
    margin: 0 0 8px;
    color: #8e44ad;
    font-size: 18px;
}

.tty-ovc-app-content p {
    margin: 0 0 15px;
    color: var(--tty-text-secondary);
}

.tty-ovc-app-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tty-ovc-app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.3);
    color: white;
}

/* Conditions Grid */
.tty-ovc-conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tty-ovc-condition-category {
    background: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 95, 95, 0.1);
}

.tty-ovc-condition-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: var(--tty-primary);
}

.tty-ovc-condition-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tty-ovc-condition-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 18px;
}

.tty-ovc-condition-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--tty-primary);
}

.tty-ovc-condition-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-ovc-condition-items li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    margin-bottom: 0px;
}

.tty-ovc-condition-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--tty-primary);
    font-weight: bold;
}

/* Category-specific colors */
.tty-ovc-condition-category[data-category="womens"] .tty-ovc-condition-icon {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(142, 68, 173, 0.1) 100%);
    color: #9b59b6;
}

.tty-ovc-condition-category[data-category="mens"] .tty-ovc-condition-icon {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    color: #3498db;
}

.tty-ovc-condition-category[data-category="transgender"] .tty-ovc-condition-icon {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    color: #f1c40f;
}

/* Emergency Notice */
.tty-ovc-emergency-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(241, 196, 15, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    margin-top: 30px;
}

.tty-ovc-notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 20px;
}

.tty-ovc-notice-content {
    flex: 1;
    line-height: 1.6;
}

/* Safety Features */
.tty-ovc-safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.tty-ovc-safety-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(39, 174, 96, 0.05) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tty-ovc-safety-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
}

.tty-ovc-safety-check {
    width: 30px;
    height: 30px;
    color: #27ae60;
    font-size: 24px;
    flex-shrink: 0;
    transition: none !important;
    transition: none !important;
}

.tty-ovc-safety-item p {
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.tty-ovc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.tty-ovc-faq-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--tty-transition-normal);
}

.tty-ovc-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tty-ovc-faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--tty-transition-normal);
}

.tty-ovc-faq-question:hover {
    background: rgba(0, 95, 95, 0.02);
}

.tty-ovc-faq-question h4 {
    margin: 0;
    font-weight: 600;
    color: var(--tty-text-primary);
    font-size: 17px;
}

.tty-ovc-toggle-icon {
    color: var(--tty-primary);
    transition: var(--tty-transition-normal);
}

.tty-ovc-faq-item.active .tty-ovc-toggle-icon {
    transform: rotate(180deg);
}

.tty-ovc-faq-answer {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.02) 0%, rgba(0, 168, 150, 0.02) 100%);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tty-ovc-faq-item.active .tty-ovc-faq-answer {
    padding: 15px 20px 20px;
    max-height: 300px;
}

.tty-ovc-faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--tty-text-secondary);
}

/* Book Now Section */
.tty-ovc-book-now {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    margin: 60px 0 0;
    overflow: hidden;
    position: relative;
    border-bottom: none;
}

.tty-ovc-book-now::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.tty-ovc-book-container {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tty-ovc-book-container h2 {
    color: var(--tty-text-light);
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 32px;
}

.tty-ovc-book-container p {
    color: rgba(255, 255, 255, 0.9);
}

.tty-ovc-book-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tty-ovc-book-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--tty-text-light);
    color: var(--tty-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--tty-transition-normal);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tty-ovc-book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--tty-primary);
}

.tty-ovc-book-button.tty-ovc-secondary {
    background-color: transparent;
    color: var(--tty-text-light);
    border: 2px solid white;
    box-shadow: none;
}

.tty-ovc-book-button.tty-ovc-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--tty-text-light);
}

.tty-ovc-book-button.tty-ovc-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
}

.tty-ovc-book-button.tty-ovc-primary:hover {
    background: linear-gradient(135deg, #7d3c98 0%, #8e44ad 100%);
    color: white;
}

.tty-ovc-tagline {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tty-ovc-tagline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-style: italic;
}

.tty-ovc-book-now .heartbeat polyline {
    stroke: rgba(255, 255, 255, 0.4);
}

/* Specific overrides */
#section-why-choose {
    margin-top: 20px;
}


/* Dark theme adjustments */
[data-theme="dark"] .tty-ovc-wrapper::before {
    opacity: 0.03;
}

[data-theme="dark"] .tty-ovc-benefit-card,
[data-theme="dark"] .tty-ovc-process-flow,
[data-theme="dark"] .tty-ovc-method-option,
[data-theme="dark"] .tty-ovc-video-panel,
[data-theme="dark"] .tty-ovc-condition-category,
[data-theme="dark"] .tty-ovc-faq-item {
    background-color: var(--tty-bg-tertiary);
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-ovc-safety-item {
    background: rgba(46, 204, 113, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tty-ovc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tty-ovc-conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tty-ovc-container {
        flex-direction: column;
    }
    
    .tty-ovc-sidebar {
        position: relative;
        top: 0;
        flex: 1 1 auto;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .tty-ovc-method-toggle {
        grid-template-columns: 1fr;
    }
    
    .tty-ovc-process-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .tty-ovc-step-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    
    .tty-ovc-benefits-grid,
    .tty-ovc-conditions-grid,
    .tty-ovc-safety-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tty-ovc-wrapper::before {
        display: none;
    }
    
    .tty-ovc-banner {
        margin-top: 20px;
    }
    
    .tty-ovc-app-prompt {
        flex-direction: column;
        text-align: center;
    }
    
    .tty-ovc-book-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tty-ovc-book-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tty-ovc-block {
        padding: 20px 15px;
    }
    
    .tty-ovc-section h2 {
        font-size: 26px;
    }
    
    .tty-ovc-benefit-card,
    .tty-ovc-condition-category {
        padding: 20px;
    }
    
    .tty-ovc-book-container {
        padding: 30px 20px;
    }
    
    .tty-ovc-book-container h2 {
        font-size: 24px;
    }
    
    .tty-ovc-tagline p {
        font-size: 16px;
    }
}

/* Print styles */
@media print {
    .tty-ovc-sidebar,
    .tty-ovc-book-now {
        display: none;
    }
    
    .tty-ovc-container {
        flex-direction: column;
    }
    
    .tty-ovc-faq-answer {
        max-height: none !important;
        padding: 15px 20px !important;
    }
}

/* Method Selector Link Styling */
.tty-ovc-method-option {
    /* Existing styles remain, add: */
    text-decoration: none;
    color: inherit;
    display: block;
}

.tty-ovc-method-option:hover {
    color: inherit;
    text-decoration: none;
}

.tty-ovc-method-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tty-ovc-method-option:hover .tty-ovc-method-cta {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.3);
}

.tty-ovc-method-option.active .tty-ovc-method-cta {
    background: linear-gradient(135deg, #00a896 0%, var(--tty-primary) 100%);
}