/* ===================================
   3CEES PHARMACY - CORE STYLES
   ================================== */

/* CSS Variables for Color Scheme */
:root {
    --primary-color: #0d7377;
    --primary-dark: #0a5a5e;
    --primary-light: #14a085;
    --secondary-color: #14a085;
    --accent-color: #fa7268;
    --accent-light: #fdb5ae;
    
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fffe;
    --bg-light: #f0fdfc;
    --bg-gradient: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    --bg-gradient-light: linear-gradient(135deg, #f0fdfc 0%, #e0faf9 100%);
    
    --border-color: #e3f2f1;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    --shadow-sm: 0 2px 4px rgba(13, 115, 119, 0.05);
    --shadow-md: 0 4px 12px rgba(13, 115, 119, 0.1);
    --shadow-lg: 0 8px 25px rgba(13, 115, 119, 0.15);
    --shadow-xl: 0 20px 40px rgba(13, 115, 119, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-light-custom { background-color: var(--bg-light) !important; }

.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }
.section-padding-lg { padding: 7rem 0; }

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    transition: var(--transition-medium);
    text-transform: none;
    letter-spacing: 0.025em;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--bg-gradient);
    border: none;
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #0a5a5e 0%, #11876d 100%);
    color: var(--text-white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
}

.btn-accent:hover {
    background-color: #e85a4f;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    overflow: hidden;
    background: var(--bg-primary);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.card-footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

/* Top Bar */
.top-bar {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size:larger;
    font-weight: 700;
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar .contact-item i {
    font-size: 1rem;
    opacity: 0.9;
}

.top-bar .social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.top-bar .social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* Main Navigation */
.main-navbar {
    background: var(--bg-primary);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 2rem;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo img {
    max-width: 150px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

.btn-dashboard,
.btn-login {
    background: var(--bg-gradient) !important;
    color: var(--text-white) !important;
    border-radius: var(--border-radius) !important;
}

.btn-dashboard:hover,
.btn-login:hover {
    color: var(--text-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230d7377' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section Styles */
.hero-section {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://picsum.photos/1920/1080?random=1') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--text-white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    color: var(--text-white);
}

/* Service Cards */
.service-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Boxes */
.feature-box {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-medium);
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Statistics Section */
.stats-section {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    color: var(--text-white);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonial Styles */
.testimonial-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 600;
}

.testimonial-info h6 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-info small {
    color: var(--text-light);
}

/* FAQ Styles */
.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-light);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-answer.show {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Form Styles */
.contact-form {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.1);
    background: var(--bg-primary);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.1);
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(20, 160, 133, 0.1);
    color: var(--primary-dark);
    border-left: 4px solid var(--secondary-color);
}

.alert-info {
    background: rgba(13, 115, 119, 0.1);
    color: var(--primary-dark);
    border-left: 4px solid var(--primary-color);
}

.alert-warning {
    background: rgba(250, 114, 104, 0.1);
    color: #d68910;
    border-left: 4px solid var(--accent-color);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border-left: 4px solid #e74c3c;
}

/* Badge Styles */
.badge {
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.badge-primary {
    background: var(--primary-color);
}

.badge-secondary {
    background: var(--secondary-color);
}

.badge-accent {
    background: var(--accent-color);
}

/* Footer */
.main-footer {
    background: var(--text-primary);
    color: var(--text-white);
    margin-top: auto;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-logo i {
    color: var(--secondary-color);
}

.footer-brand .brand-name {
    color: var(--text-white);
}

.footer-brand .brand-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-title {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-section .contact-info {
    margin-bottom: 1.5rem;
}

.footer-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 20px;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
}

.footer-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section .social-link:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page Headers */
.page-header {
    background: var(--bg-gradient-light);
    padding: 4rem 0 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Image Styles */
.img-feature {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    width: 100%;
    height: auto;
}

.img-feature:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.img-avatar {
    border-radius: 50%;
    border: 3px solid var(--border-color);
}

/* List Styles */
.list-custom {
    list-style: none;
    padding: 0;
}

.list-custom li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.list-custom li:last-child {
    border-bottom: none;
}

.list-custom li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-padding-lg {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        padding: 3rem 0 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: var(--transition-medium);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Print Styles */
@media print {
    .top-bar,
    .main-navbar,
    .main-footer,
    .back-to-top {
        display: none !important;
    }
    
    .main-content {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .card,
    .service-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ===================================
   3CEES PHARMACY - HOMEPAGE STYLES
   ================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e0faf9 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 115, 119, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.1);
}

.hero-title {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .text-primary {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15);
    max-height: 75vh;
}

.hero-stats-card {
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quick Services Section */
.quick-services-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-service-card {
    background: var(--bg-primary);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quick-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quick-service-card .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.quick-service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Featured Services Section */
.featured-services-section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

.service-icon-wrapper .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary-color) !important;
    color: white !important;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-desc {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Empty State */
.empty-state .empty-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
}

.why-choose-image img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.feature-item:hover {
    background: rgba(13, 115, 119, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e0faf9 100%);
}

.testimonial-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 115, 119, 0.15);
}

.quote-icon {
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.author-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: auto;
    opacity: 1;
}

.carousel-control-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-control-prev .carousel-control-icon {
    margin-left: -100px;
}

.carousel-control-next .carousel-control-icon {
    margin-right: -100px;
}

.carousel-control-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 115, 119, 0.3);
}

.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
}

.blog-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.blog-image {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-placeholder {
    border-radius: 16px 16px 0 0;
}

.blog-meta {
    font-size: 0.9rem;
}

.blog-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-stats-card {
        position: static;
        margin-top: 2rem;
        right: auto;
        bottom: auto;
    }
    
    .quick-services-section {
        margin-top: 0;
        padding-top: 4rem;
    }
    
    .featured-services-section,
    .why-choose-section,
    .testimonials-section,
    .blog-section {
        padding: 4rem 0;
    }
    
    .carousel-control-prev .carousel-control-icon {
        margin-left: -50px;
    }
    
    .carousel-control-next .carousel-control-icon {
        margin-right: -50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats-card {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .quick-service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-content {
        padding-left: 0 !important;
        margin-top: 2rem;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-actions {
        text-align: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .featured-services-section,
    .why-choose-section,
    .testimonials-section,
    .blog-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quick-service-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-icon-wrapper .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate__fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus-visible,
.carousel-control-prev:focus-visible,
.carousel-control-next:focus-visible,
.carousel-indicators button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-section {
        background: white;
    }
    
    .testimonials-section {
        background: #f5f5f5;
    }
    
    .cta-section {
        background: #000;
        color: white;
    }
}

/* ===================================
   3CEES PHARMACY - ABOUT PAGE STYLES
   ================================== */

/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white !important;
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.page-subtitle {
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Section Badges */
.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
}

.story-content .section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.story-content .lead {
    color: var(--text-secondary);
    font-weight: 500;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.story-highlights {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.highlight-item {
    padding: 1rem;
}

.highlight-number {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Story Image Stack */
.story-image {
    position: relative;
}

.image-stack {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15);
}

.image-overlay {
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 10;
}

.img-overlay-item {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.story-image:hover .img-overlay-item {
    transform: translateY(-5px);
}

/* Mission & Values Section */
.mission-values-section {
    padding: 6rem 0;
}

.mission-card,
.vision-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.mission-title,
.vision-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.mission-description,
.vision-description {
    line-height: 1.7;
    font-size: 1rem;
}

/* Values Items */
.value-item {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.value-item:hover {
    background: rgba(13, 115, 119, 0.05);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.value-description {
    line-height: 1.6;
}

/* Services Overview Section */
.services-overview-section {
    padding: 6rem 0;
}

.service-overview-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-overview-card .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.service-desc {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

.team-member-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.team-member-card:hover .member-avatar {
    transform: scale(1.1);
}

.member-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.member-role {
    font-weight: 500;
    font-size: 0.95rem;
}

.member-description {
    line-height: 1.6;
}

.member-qualifications .badge {
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* NHS Partnership Section */
.nhs-partnership-section {
    padding: 6rem 0;
}

.nhs-content .section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.nhs-benefits li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.nhs-benefits .ri-check-line {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.nhs-image {
    position: relative;
}

.nhs-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nhs-badge {
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.badge-content {
    border: 1px solid var(--border-color);
    min-width: 120px;
}

.badge-content i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .our-story-section,
    .mission-values-section,
    .services-overview-section,
    .team-section,
    .nhs-partnership-section {
        padding: 4rem 0;
    }
    
    .image-overlay {
        top: -20px;
        left: -20px;
    }
    
    .img-overlay-item {
        width: 200px;
        height: 160px;
    }
    
    .story-highlights {
        padding: 1.5rem;
    }
    
    .mission-card .card-body,
    .vision-card .card-body {
        padding: 3rem 2rem;
    }
    
    .nhs-badge {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .our-story-section,
    .mission-values-section,
    .services-overview-section,
    .team-section,
    .nhs-partnership-section {
        padding: 3rem 0;
    }
    
    .story-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .image-overlay {
        position: static;
        margin-top: 2rem;
        text-align: center;
    }
    
    .img-overlay-item {
        width: 100%;
        max-width: 300px;
        height: 200px;
        border: 3px solid white;
    }
    
    .mission-card .card-body,
    .vision-card .card-body {
        padding: 2.5rem 1.5rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .value-icon {
        margin-bottom: 1rem;
    }
    
    .nhs-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .nhs-image {
        text-align: center;
    }
    
    .nhs-badge {
        position: static;
        margin-top: 2rem;
    }
    
    .cta-actions {
        text-align: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-highlights {
        padding: 1rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .mission-card .card-body,
    .vision-card .card-body {
        padding: 2rem 1rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-overview-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .team-member-card .card-body {
        padding: 2rem 1.5rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .badge-content i {
        animation: none;
    }
}

/* Focus States */
.btn:focus-visible,
.card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .page-header-section {
        background: #000;
        color: white;
    }
    
    .mission-values-section,
    .team-section {
        background: #f5f5f5;
    }
    
    .card {
        border: 2px solid #333;
    }
    
    .cta-section {
        background: #000;
        color: white;
    }
}

/* Print Styles */
@media print {
    .page-header-section,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .btn {
        display: none !important;
    }
}

/* ===================================
   3CEES PHARMACY - FAQ PAGE STYLES
   ================================== */

/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="question-marks" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" dominant-baseline="middle" font-size="20" fill="white" opacity="0.05">?</text></pattern></defs><rect width="100" height="100" fill="url(%23question-marks)"/></svg>');
    z-index: 1;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white !important;
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.page-subtitle {
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Search Section */
.faq-search-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.search-card {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.search-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.search-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
}

.search-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

.search-input-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.form-control-lg {
    padding: 1rem 3rem 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.1);
    background: var(--bg-primary);
}

.search-icon-input {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-icon-input i {
    font-size: 1.2rem;
}

.search-results {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.results-header {
    margin-bottom: 0.5rem;
}

/* Category Tabs */
.faq-categories-section {
    padding: 4rem 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.category-filter-tabs {
    display: flex;
    justify-content: center;
}

.category-filter-tabs .nav-pills {
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-filter-tabs .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    margin: 0 0.25rem;
}

.category-filter-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(13, 115, 119, 0.1);
}

.category-filter-tabs .nav-link.active {
    color: white;
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
}

.category-filter-tabs .nav-link i {
    font-size: 1rem;
}

/* FAQ Content */
.faq-content-section {
    padding: 2rem 0 6rem;
}

.faq-category-group {
    margin-bottom: 3rem;
}

.category-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.category-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.category-title i {
    font-size: 1.5rem;
}

/* FAQ Items */
.faq-item {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item .card-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    border-radius: 16px 16px 0 0;
}

.faq-question {
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 1.5rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(13, 115, 119, 0.05);
}

.faq-question:focus {
    box-shadow: none;
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-item .card-body {
    padding: 2rem;
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item .card-body p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-item .card-body p:last-child {
    margin-bottom: 0;
}

.faq-item .card-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-item .card-body li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.faq-item .card-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Help Section */
.help-section {
    padding: 6rem 0;
}

.help-content {
    max-width: 700px;
    margin: 0 auto;
}

.help-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

.help-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

.help-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.help-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.help-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-search-section {
        padding: 3rem 0;
    }
    
    .faq-categories-section {
        padding: 3rem 0 1rem;
    }
    
    .faq-content-section {
        padding: 1rem 0 4rem;
    }
    
    .help-section {
        padding: 4rem 0;
    }
    
    .category-filter-tabs .nav-pills {
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
    }
    
    .category-filter-tabs .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .search-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .search-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .form-control-lg {
        padding: 0.875rem 2.5rem 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .search-icon-input {
        right: 15px;
    }
    
    .category-filter-tabs .nav-pills {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
        justify-content: center;
    }
    
    .category-filter-tabs .nav-link {
        flex: 1;
        min-width: 140px;
        margin: 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-icon {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-end;
        position: absolute;
        right: 1.5rem;
        top: 1.25rem;
    }
    
    .faq-item .card-body {
        padding: 1.5rem;
    }
    
    .help-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .search-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .search-title {
        font-size: 1.5rem;
    }
    
    .form-control-lg {
        padding: 0.75rem 2rem 0.75rem 1rem;
    }
    
    .category-filter-tabs .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-icon {
        right: 1.25rem;
        top: 1rem;
        font-size: 1.25rem;
    }
    
    .faq-item .card-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .category-title i {
        font-size: 1.25rem;
    }
    
    .help-title {
        font-size: 1.75rem;
    }
    
    .help-description {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search highlighting */
.search-highlight {
    background: rgba(255, 235, 59, 0.3);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
}

/* Loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    height: 60px;
    margin-bottom: 1rem;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus-visible,
.form-control:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .page-header-section {
        background: #000;
        color: white;
    }
    
    .search-card {
        border: 2px solid #333;
        background: white;
    }
    
    .faq-item {
        border: 2px solid #333;
    }
    
    .category-filter-tabs .nav-pills {
        border: 2px solid #333;
        background: #f5f5f5;
    }
    
    .help-section {
        background: #f5f5f5;
    }
}

/* Print Styles */
@media print {
    .page-header-section,
    .faq-search-section,
    .category-filter-tabs,
    .help-section {
        display: none !important;
    }
    
    .faq-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        background: #f5f5f5 !important;
    }
    
    .collapse {
        display: block !important;
        height: auto !important;
    }
}

/* ===================================
   3CEES PHARMACY - CONTACT PAGE STYLES
   ================================== */

/* Page Header */
.page-header-section {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><path d="M10,10 Q20,5 30,10 Q20,15 10,10" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    z-index: 1;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white !important;
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.page-subtitle {
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Section Badge */
.section-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 6rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-method-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.method-description {
    line-height: 1.6;
    font-size: 0.95rem;
}

.method-details {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.detail-item {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
}

.form-intro {
    padding-right: 2rem;
}

.form-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.form-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-features {
    margin-top: 2rem;
}

.feature-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.feature-item:hover {
    background: rgba(13, 115, 119, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

/* Contact Form Card */
.contact-form-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-card .card-body {
    padding: 3rem;
}

/* Form Styling */
.form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.form-label i {
    font-size: 1.1rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-control-lg,
.form-select-lg {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.1);
    background: var(--bg-primary);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--secondary-color);
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

.form-text {
    margin-top: 0.5rem;
}

.form-check-input {
    border: 2px solid var(--border-color);
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.1);
}

.form-check-label {
    line-height: 1.5;
}

.form-check-label a {
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
#submitBtn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.3);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(20, 160, 133, 0.1);
    color: var(--primary-dark);
    border-left-color: var(--secondary-color);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left-color: #dc3545;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 1rem;
}

.alert .btn-close {
    font-size: 0.8rem;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 6rem 0;
}

.quick-contact-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-icon {
    transform: scale(1.1);
}

.quick-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.quick-description {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Link Section */
.faq-link-section {
    padding: 6rem 0;
}

.faq-link-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

.faq-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

.faq-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-methods-section {
        padding: 4rem 0;
    }
    
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .quick-contact-section,
    .faq-link-section {
        padding: 4rem 0;
    }
    
    .form-intro {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .contact-form-card .card-body {
        padding: 2.5rem;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 0.75rem;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-methods-section {
        padding: 3rem 0;
        margin-top: -30px;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .quick-contact-section,
    .faq-link-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-method-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-card .card-body {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .quick-contact-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .quick-contact-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .faq-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-methods-section {
        margin-top: -20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .contact-method-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-card .card-body {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
    
    .form-control-lg,
    .form-select-lg {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .quick-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .quick-contact-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Character Counter Styling */
.form-text.text-end {
    margin-top: 0.25rem;
}

.form-text small.text-warning {
    font-weight: 600;
}

.form-text small.text-danger {
    font-weight: 600;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .page-header-section {
        background: #000;
        color: white;
    }
    
    .contact-methods-section,
    .quick-contact-section {
        background: #f5f5f5;
    }
    
    .contact-method-card,
    .contact-form-card,
    .quick-contact-card {
        border: 2px solid #333;
        background: white;
    }
    
    .form-control,
    .form-select {
        border: 2px solid #333;
        background: white;
    }
}

/* Print Styles */
@media print {
    .page-header-section,
    .quick-contact-section,
    .faq-link-section {
        display: none !important;
    }
    
    .contact-form-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .btn {
        display: none !important;
    }
    
    .form-control,
    .form-select {
        border: 1px solid #ddd !important;
        background: white !important;
    }
}

/* ===================================
   3CEES PHARMACY - SERVICES PAGES STYLES
   ================================== */

/* Common Header Styles */
.services-header,
.service-header {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.services-header::before,
.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,7 18,13 10,18 2,13 2,7" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    z-index: 1;
}

.services-header .container,
.service-header .container {
    position: relative;
    z-index: 2;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%) !important;
}

/* Breadcrumb Styles */
.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white !important;
}

/* Page Titles */
.page-title,
.service-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.page-subtitle,
.service-subtitle {
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Stats */
.services-stats .stat-item {
    padding: 0.5rem 1rem;
}

.services-stats .stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.services-stats .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Filter */
.services-filter {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.filter-info {
    font-size: 0.95rem;
}

.view-toggle .btn {
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.view-toggle .btn-check:checked + .btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Service Cards - Grid View */
.service-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary-color) !important;
    color: white !important;
}

.service-badge {
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Cards - List View */
.service-list-item {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(13, 115, 119, 0.1);
    border-color: var(--primary-color);
}

.service-list-item .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Empty State */
.empty-state .empty-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
}

/* NHS Highlight Section */
.nhs-highlight {
    background: rgba(25, 135, 84, 0.08) !important;
}

.nhs-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Service Detail Page Specific Styles */
.service-header .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.service-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Service Content */
.service-content {
    background: var(--bg-primary);
}

.service-article {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.formatted-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.formatted-content p {
    margin-bottom: 1.5rem;
}

.content-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    margin: 2rem 0;
}

/* Service Navigation */
.service-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.share-buttons .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.sidebar-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sidebar-card .card-header {
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.quick-info-list li {
    font-size: 0.95rem;
    line-height: 1.5;
}

.quick-info-list i {
    font-size: 1.1rem;
    width: 20px;
}

.contact-options .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-options .btn:hover {
    transform: translateY(-2px);
}

/* Related Services */
.related-services .related-service-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color) !important;
}

.related-services .related-service-item:last-child {
    border-bottom: none !important;
}

.related-services .related-service-item:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.related-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.related-title {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.related-desc {
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .service-article {
        padding: 2rem;
    }
    
    .services-stats {
        justify-content: center !important;
    }
    
    .services-stats .stat-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .services-header,
    .service-header {
        padding: 3rem 0;
        text-align: center;
    }
    
    .page-title,
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-header .service-actions {
        margin-top: 2rem;
    }
    
    .service-header .service-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .services-filter .row {
        text-align: center;
    }
    
    .filter-info {
        margin-bottom: 1rem;
    }
    
    .view-toggle {
        justify-content: center;
    }
    
    .service-article {
        padding: 1.5rem;
    }
    
    .service-navigation .row {
        text-align: center;
    }
    
    .service-navigation .col-md-6:first-child {
        margin-bottom: 1rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .cta-actions {
        text-align: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .page-title,
    .service-title {
        font-size: 2rem;
    }
    
    .services-stats .stat-item {
        padding: 0.5rem;
    }
    
    .service-card .card-body {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-list-item .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .service-header .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-article {
        padding: 1rem;
    }
    
    .formatted-content {
        font-size: 1rem;
    }
    
    .sidebar-card .card-body {
        padding: 1rem;
    }
    
    .related-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus-visible,
.card:focus-within,
.related-service-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .services-header,
    .service-header,
    .cta-section {
        background: #000 !important;
        color: white !important;
    }
    
    .services-filter,
    .nhs-highlight {
        background: #f5f5f5 !important;
    }
    
    .card,
    .service-card,
    .service-list-item,
    .sidebar-card {
        border: 2px solid #333 !important;
    }
}

/* Print Styles */
@media print {
    .services-header,
    .service-header,
    .cta-section,
    .service-navigation,
    .service-sidebar {
        display: none !important;
    }
    
    .service-article {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .service-card,
    .service-list-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
}

/* Branches */
    .branch-card {
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
    }

    .branch-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }

    .branch-icon {
        width: 100px;
        height: 100px;
        transition: all 0.3s ease;
    }

    .branch-card:hover .branch-icon {
        transform: scale(1.1);
    }

    .branch-name {
        color: #2c3e50;
        font-size: 1.1rem;
    }

    .branch-type {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .branches-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .section-badge .badge {
        border-radius: 50px;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .branch-card {
            margin-bottom: 1rem;
        }
        
        .branch-icon {
            width: 60px;
            height: 60px;
        }
        
        .branch-name {
            font-size: 1rem;
        }
    }