/* Go4Health Global - Modern Healthcare Website Styles */

/* CSS Custom Properties (Variables) */
:root {
    --primary-blue: #1E3A8A;
    --primary-blue-light: #3B82F6;
    --primary-green: #10B981;
    --primary-green-dark: #059669;
    --secondary-color: #6366F1;
    --accent-color: #F59E0B;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background-light: #F9FAFB;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-success: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-gradient {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    background: rgba(30, 58, 138, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.hero-buttons .btn-primary {
    background: var(--gradient-success);
    border-color: var(--primary-green);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats .stat-item {
    text-align: center;
    color: var(--white);
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-item span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
    text-align: center;
    max-width: 200px;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.floating-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-success);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.about-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Destination Cards */
.destination-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.destination-image {
    width: 60px;
    height: 60px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.destination-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.destination-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.destination-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--accent-color);
    margin-right: 0.25rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.contact-info {
    text-align: center;
    padding: 2rem;
}

.contact-info i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark) !important;
    color: var(--white);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Certification Badges */
.certification-badge {
    padding: 1.5rem 1rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.certification-badge h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Why Choose Us Cards */
.why-choose-card {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    height: 100%;
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--primary-green);
    transform: scale(1.1);
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Enhanced Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-large);
    border-radius: 15px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--primary-green);
    color: var(--white);
}

.dropdown-item:focus {
    background: var(--primary-green);
    color: var(--white);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-success);
    border-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-large);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.modal-body {
    padding: 2rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

/* Chatbot Styles */
.chatbot {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    display: none;
    flex-direction: column;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.chatbot-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.chatbot-header i {
    margin-right: 0.5rem;
}

.chatbot-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0;
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 350px;
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-content {
    background: var(--background-light);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message .message-content {
    background: var(--primary-blue);
    color: var(--white);
}

.user-message .message-content {
    background: var(--primary-green);
    color: var(--white);
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    outline: none;
}

.chatbot-input input:focus {
    border-color: var(--primary-green);
}

.chatbot-input button {
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.chatbot-input button:hover {
    background: var(--primary-green-dark);
}

.chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-success);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    z-index: 999;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-large);
}

.chat-fab.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chatbot {
        width: 300px;
        height: 450px;
        right: 10px;
        bottom: 90px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .chatbot {
        width: calc(100vw - 20px);
        height: 400px;
        right: 10px;
        left: 10px;
    }
    
    .service-card,
    .destination-card {
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Hero Section Small (for inner pages) */
.hero-section-small {
    min-height: 40vh;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Mission, Vision, Values Cards */
.mvv-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.mvv-card:hover .mvv-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.values-list li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.values-list strong {
    color: var(--primary-blue);
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.position {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1rem;
}

.team-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.team-credentials {
    margin-bottom: 1.5rem;
}

.team-credentials .badge {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.75rem;
    margin: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-light);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.team-social a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Accreditation Cards */
.accreditation-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.accreditation-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.accreditation-icon i {
    font-size: 2rem;
    color: var(--white);
}

.accreditation-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.accreditation-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.accreditation-date {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Statistics Cards */
.stat-card {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* Service Cards Detailed */
.service-card-detailed {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.service-card-detailed .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.service-card-detailed:hover .service-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

.service-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 10px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

/* Feature Grid */
.feature-grid {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing Info */
.pricing-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 15px;
    text-align: left;
}

.pricing-info h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-list {
    margin: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.price-item .price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Process Steps */
.service-process {
    margin: 2rem 0;
}

.process-steps {
    margin-top: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Included Services */
.included-services {
    margin-top: 2rem;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.included-list i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Specialty Cards */
.specialty-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

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

.specialty-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.specialty-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.specialty-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.specialty-stats span {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* Timeline */
.support-timeline {
    margin: 2rem 0;
}

.timeline {
    position: relative;
    margin-top: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 1;
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Support Features */
.support-features {
    margin-top: 2rem;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.support-list i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.pricing-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    margin-right: 0.75rem;
    width: 16px;
}

.pricing-features .fa-check {
    color: var(--primary-green);
}

.pricing-features .fa-times {
    color: rgba(255, 255, 255, 0.5);
}

.btn-block {
    width: 100%;
}

/* CTA Contact Info */
.cta-contact-info {
    margin-top: 1rem;
}

.cta-contact-info strong {
    color: var(--primary-green);
}

/* Destination Overview Cards */
.destination-overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.destination-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.destination-flag {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.destination-overview-card:hover .destination-flag {
    background: var(--gradient-success);
    transform: scale(1.1);
}

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

.destination-overview-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.destination-overview-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.destination-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.destination-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Country Cards */
.destination-country-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.destination-country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.country-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.country-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-country-card:hover .country-image {
    transform: scale(1.05);
}

.country-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
}

.country-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.country-badge {
    background: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.country-content {
    padding: 2rem 1.5rem;
}

.specialties {
    margin-bottom: 1.5rem;
}

.specialties h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: var(--background-light);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.country-highlights {
    margin-bottom: 1.5rem;
}

.country-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.country-highlights i {
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.featured-hospitals {
    margin-bottom: 1.5rem;
}

.featured-hospitals h6 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.hospital-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hospital-list li {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.hospital-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.cost-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 10px;
    margin-top: auto;
}

.cost-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cost-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

/* Cost Comparison Table */
.cost-comparison-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cost-comparison-table .table {
    margin-bottom: 0;
}

.cost-comparison-table th {
    border-top: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    color: var(--white);
    padding: 1rem 0.75rem;
}

.cost-comparison-table td {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0.75rem;
}

.cost-comparison-table .savings {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Choice Factors */
.choice-factor {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.choice-factor:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.factor-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.choice-factor:hover .factor-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

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

.choice-factor h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.choice-factor p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Styles */
.faq-search {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

/* FAQ Category Cards */
.faq-category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.faq-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.faq-category-card:hover .category-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

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

.faq-category-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.question-count {
    background: var(--background-light);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section-title {
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
}

.faq-section-title i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Enhanced Accordion Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-light);
}

.faq-item .accordion-button {
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
    background: var(--white);
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

/* Contact Options */
.contact-options {
    margin: 2rem 0;
}

.contact-option {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-option h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-option small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Contact Method Cards */
.contact-method-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-green);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.contact-method-card:hover .contact-method-icon {
    background: var(--gradient-success);
    transform: scale(1.1);
}

.contact-method-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-method-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    flex: 1;
}

.contact-item span {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.office-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.office-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.office-card h4 i {
    margin-right: 0.5rem;
    color: var(--primary-green);
}

.office-details p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.office-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.office-contact i {
    margin-right: 0.75rem;
    color: var(--primary-green);
    width: 16px;
}

.office-hours h5 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.office-hours p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.emergency-contact {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.emergency-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-contact h4 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.emergency-numbers p {
    margin-bottom: 0.75rem;
}

.emergency-numbers strong {
    color: var(--white);
}

.emergency-numbers a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.emergency-numbers a:hover {
    text-decoration: underline;
}

.social-contact {
    text-align: center;
}

.social-contact h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.25rem;
}

.social-link-large:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Quick Help Cards */
.quick-help-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.quick-help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.quick-help-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.quick-help-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quick-help-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Response Guarantees */
.response-guarantees {
    display: grid;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.guarantee-item h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.response-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.badge-content i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.badge-content h4 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.badge-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-nav {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.legal-nav h5 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav-list li {
    margin-bottom: 0.75rem;
}

.legal-nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.legal-nav-list a:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.legal-header {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.legal-header p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-header p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.legal-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-section h3:first-of-type {
    margin-top: 0;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--text-dark);
}

.legal-section a {
    color: var(--primary-green);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.compliance-badge {
    display: flex;
    align-items: center;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.compliance-badge i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Important Notice Box */
.important-notice {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.important-notice h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.important-notice h4 i {
    margin-right: 0.5rem;
}

.important-notice p {
    color: var(--white);
    margin: 0;
}

/* Contact Box */
.contact-box {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.contact-box p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: var(--primary-blue);
}

/* Cancellation Table */
.cancellation-table {
    margin: 2rem 0;
}

.cancellation-table .table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.cancellation-table .table thead th {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.cancellation-table .table tbody td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.cancellation-table .table tbody tr:nth-child(even) {
    background: var(--background-light);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-nav {
        position: relative !important;
        top: auto !important;
        margin-bottom: 2rem;
    }
    
    .compliance-badges {
        flex-direction: column;
    }
    
    .compliance-badge {
        justify-content: center;
    }
    
    .cancellation-table {
        overflow-x: auto;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .chatbot,
    .chat-fab,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}