:root {
    --purple-primary: #4B0082;
    --purple-secondary: #6A0DAD;
    --purple-light: #E6E6FA;
    --purple-dark: #2E003E;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: rgba(75, 0, 130, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--purple-primary) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}



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

.page-header .container,
.cta-section .container {
    position: relative;
    z-index: 2;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

.pulse-btn {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.pulse-btn:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* Override Bootstrap btn-light to use purple text */
.btn-light.pulse-btn {
    background: white !important;
    color: var(--purple-primary) !important;
    border: 2px solid white !important;
    font-weight: 600 !important;
}

.btn-light.pulse-btn:hover {
    background: var(--purple-primary) !important;
    color: white !important;
    border-color: var(--purple-primary) !important;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 420px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(102, 51, 153, 0.2);
}

.service-learn-more {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    color: var(--purple-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-learn-more {
    opacity: 1;
    transform: translateY(0);
}

.service-learn-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-learn-more i {
    transform: translateX(5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.service-card h4 {
    color: var(--purple-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.service-card p {
    height: 120px;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-size: 0.95rem;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card .service-learn-more {
    margin-top: auto;
    flex-shrink: 0;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--purple-primary);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--purple-primary);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



/* Contact Cards */
.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Blog Styles */
.blog-post {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post h2 a {
    color: var(--purple-primary);
    transition: all 0.3s ease;
}

.blog-post h2 a:hover {
    color: var(--purple-dark);
}

.blog-meta {
    font-size: 0.9rem;
}

.blog-sidebar .sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.experience-section {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.practice-focus {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    height: 100%;
}

.compassionate-approach {
    margin-top: 2rem;
}

.credential-item {
    padding: 2rem 1rem;
}

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

.benefit-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}



/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.office-hours-card {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-detail {
    padding: 1rem;
}

/* Call to Action Box */
.cta-box {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%) !important;
    border: 2px solid var(--purple-dark) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.3) !important;
}

.cta-box h3,
.cta-box p {
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-box .btn-light {
    background: var(--purple-primary) !important;
    color: white !important;
    border: 2px solid var(--purple-primary) !important;
    font-weight: 600 !important;
}

.cta-box .btn-light:hover {
    background: var(--purple-dark) !important;
    color: white !important;
    border-color: var(--purple-dark) !important;
    transform: translateY(-2px);
}

.cta-box .btn-outline-light {
    border: 2px solid var(--purple-primary) !important;
    color: var(--purple-primary) !important;
    background: transparent !important;
    font-weight: 600 !important;
}

.cta-box .btn-outline-light:hover {
    background: var(--purple-primary) !important;
    color: white !important;
    border-color: var(--purple-primary) !important;
    transform: translateY(-2px);
}















.info-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.highlight-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100px;
    min-height: 100px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.info-item i {
    font-size: 1.3rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}









@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Saved Responses Section */
.saved-responses {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.responses-header {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
}

.responses-container {
    background: #f8f9fa;
}

.responses-list {
    display: grid;
    gap: 1rem;
}

.response-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.response-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.response-header {
    background: var(--purple-light);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.response-title {
    margin: 0;
    color: var(--purple-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.response-timestamp {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.delete-response {
    background: var(--purple-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.delete-response:hover {
    background: var(--purple-dark);
    transform: scale(1.1);
}

.response-body {
    padding: 1.5rem;
}

.response-field {
    display: flex;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.response-field:last-child {
    margin-bottom: 0;
}

.response-label {
    font-weight: 600;
    color: var(--purple-primary);
    min-width: 110px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.response-value {
    color: var(--text-dark);
    line-height: 1.4;
    word-break: break-word;
}

.response-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--purple-primary);
}

.response-details .response-label {
    min-width: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.response-actions {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.response-action {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-call {
    background: var(--purple-primary);
    color: white;
}

.action-call:hover {
    background: var(--purple-dark);
    color: white;
    text-decoration: none;
}

.action-email {
    background: white;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.action-email:hover {
    background: var(--purple-primary);
    color: white;
    text-decoration: none;
}

.responses-empty {
    color: var(--text-muted);
}

.responses-stats {
    padding: 1rem 1.5rem;
    background: white;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile responsiveness for responses */
@media (max-width: 768px) {
    .response-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .response-field {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .response-label {
        min-width: auto;
        margin-right: 0;
    }
    
    .response-actions {
        flex-direction: column;
    }
    
    .response-action {
        text-align: center;
        justify-content: center;
    }
    
    .delete-response {
        align-self: flex-start;
        margin-left: 0;
    }
}

/* Location Section Styling */
.location-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.highlight-item {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.15);
}

.location-image img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.location-image img:hover {
    transform: scale(1.02);
}

/* Mobile responsiveness for location section */
@media (max-width: 768px) {
    .location-content {
        text-align: center;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
    }
}

/* Services Page Styling - Now uses standard page-header class */



.service-detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(75, 0, 130, 0.15);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.3);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 2rem;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--purple-primary);
    font-weight: bold;
    width: 1.5rem;
}



/* Mobile responsiveness for services page */
@media (max-width: 768px) {
    .service-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    

}


.hover-primary:hover {
    color: var(--purple-primary) !important;
}



.services-reminder {
    border-radius: 15px;
}

.service-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.service-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem !important;
}

/* Text Colors */
.text-primary {
    color: var(--purple-primary) !important;
}

/* Button Overrides */
.btn-primary {
    background-color: var(--purple-primary);
    border-color: var(--purple-primary);
}

.btn-primary:hover {
    background-color: var(--purple-dark);
    border-color: var(--purple-dark);
}

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

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

/* Get Started Section - Service Start Buttons */
.get-started-section {
    border: 1px solid rgba(75, 0, 130, 0.1);
}

.service-start-btn {
    min-height: 120px;
    border: 2px solid var(--purple-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.service-start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.service-start-btn:hover::before {
    left: 0;
}

.service-start-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.2);
    border-color: var(--purple-dark);
    color: white !important;
}

.service-start-btn:hover * {
    color: white !important;
    position: relative;
    z-index: 1;
}

.service-start-btn i,
.service-start-btn span,
.service-start-btn small {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-start-btn:hover .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive adjustments for service start buttons */
@media (max-width: 768px) {
    .service-start-btn {
        min-height: 100px;
    }
    
    .service-start-btn i {
        font-size: 1.2rem !important;
    }
    
    .service-start-btn span {
        font-size: 0.9rem;
    }
}

/* Transparent white button styling */
.btn-transparent-white {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    transition: all 0.3s ease !important;
}

.btn-transparent-white:hover {
    background: white !important;
    color: var(--purple-primary) !important;
    border-color: white !important;
    transform: none !important;
}

/* ============================================
   RESOURCE CARD STYLES
   ============================================ */
.resource-card {
    transition: all 0.3s ease;
    background: white;
    border: 1px solid rgba(75, 0, 130, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resource-card .card-body .btn-primary {
    margin-top: auto;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.15);
    border-color: rgba(75, 0, 130, 0.2);
}

.resource-card .card-img-top {
    transition: transform 0.3s ease;
}

.resource-card:hover .card-img-top {
    transform: scale(1.05);
}

.resource-card .card-title {
    font-weight: 600;
    line-height: 1.3;
}

.resource-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.resource-card .btn-primary {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.resource-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 0, 130, 0.3);
}

.resource-image {
    overflow: hidden;
}

/* ============================================
   CLICKABLE CONTACT CARDS
   ============================================ */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(75, 0, 130, 0.2);
    border-color: var(--purple-primary);
}

.clickable-card .copy-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.clickable-card:hover .copy-hint {
    opacity: 1;
}

.copyable-text {
    position: relative;
}

.clickable-card:hover .copyable-text {
    color: var(--purple-primary) !important;
}

.clickable-card:active {
    transform: translateY(-4px);
}

/* Copy success animation */
.copy-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    color: white !important;
}

.copy-success .contact-icon i {
    color: white !important;
}

/* ============================================
   TIMELINE BOXES
   ============================================ */
.timeline-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid var(--purple-primary) !important;
    box-shadow: 0 2px 8px rgba(75, 0, 130, 0.08);
    transition: all 0.3s ease;
}

.timeline-box:hover {
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.15);
    transform: translateY(-2px);
}

.timeline-steps .step-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(75, 0, 130, 0.1);
}

.timeline-steps .step-item:last-child {
    border-bottom: none;
}

.step-number {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
    background-color: var(--purple-primary) !important;
    border: none;
}

.step-text {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.total-time-badge {
    padding: 1rem;
    background: rgba(75, 0, 130, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(75, 0, 130, 0.1);
}

.total-time-badge .fw-bold {
    font-size: 1.25rem;
    color: var(--purple-primary);
    margin-bottom: 0;
}

.total-time-badge small {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .timeline-box .row {
        flex-direction: column;
    }
    
    .total-time-badge {
        margin-top: 1rem;
    }
    
    .step-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Footer */
.footer {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .services-section,
    .testimonials-section,
    .cta-section,
    .about-content,
    .contact-content {
        padding: 60px 0;
    }
    
    .service-card,
    .testimonial-card,
    .contact-card,
    .blog-post {
        padding: 2rem 1.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        margin: 0.5rem 0;
        display: block;
        width: 100%;
    }
    
    .cta-buttons .btn {
        margin: 0.5rem 0;
        display: block;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-card,
    .testimonial-card,
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .pulse-btn {
        display: none !important;
    }
    
    .hero-section,
    .page-header {
        background: none !important;
        color: black !important;
    }
    
    .text-white,
    .text-white-75 {
        color: black !important;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.3);
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --purple-primary: #4B0082;
        --purple-dark: #2E003E;
        --text-dark: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pulse-btn {
        animation: none;
    }
}

/* Global border styles for consistent theme */
.content-section {
    border: 2px solid var(--purple-primary) !important;
    border-radius: 8px !important;
}

.service-card {
    border: 2px solid var(--purple-primary) !important;
    border-radius: 8px !important;
}


.form-control {
    border: 1px solid var(--purple-secondary) !important;
}

.form-control:focus {
    border-color: var(--purple-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.25) !important;
}

/* Blog collapsible styles */
.blog-post-collapsible {
    border: 2px solid var(--purple-primary);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.blog-post-header-collapsible {
    padding: 1rem;
    background: var(--purple-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blog-post-header-collapsible:hover {
    background: #ddd0e8;
}

.blog-post-content-collapsible {
    background: var(--white);
    border-top: 1px solid var(--purple-secondary);
}

.blog-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--purple-primary);
}

.blog-toggle-icon.rotated {
    transform: rotate(180deg);
}


/* Fix button alignment issues */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

.btn i {
    display: inline-block !important;
    line-height: 1 !important;
}

/* Ensure outline buttons have proper text color on colored backgrounds */
.btn-outline-primary {
    color: var(--purple-primary) !important;
    background-color: white !important;
    border: 2px solid var(--purple-primary) !important;
}

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

/* Service detail pages styles */
.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(75, 0, 130, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-detail-card .service-features,
.service-detail-card .service-benefits {
    list-style: none;
    padding: 0;
}

.service-detail-card .service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.service-detail-card .service-benefits li {
    padding: 0.5rem 0 0.5rem 2rem;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
}

.service-detail-card .service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--purple-primary);
    font-weight: bold;
    width: 1.5rem;
}

.service-detail-card .service-features li:last-child,
.service-detail-card .service-benefits li:last-child {
    border-bottom: none;
}

/* Individual service page styling - override for proper spacing */
.service-features,
.service-benefits {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.service-benefits li {
    padding: 0.5rem 0 0.5rem 2rem;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--purple-primary);
    font-weight: bold;
    width: 1.5rem;
}

.service-features li:last-child,
.service-benefits li:last-child {
    border-bottom: none;
}

.consultation-form {
    background: white;
    border-radius: 8px;
}

.consultation-form .section-header {
    border-bottom: 2px solid var(--purple-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.consultation-form .section-header h5 {
    color: var(--purple-primary);
    font-weight: 700;
    margin-bottom: 0;
}

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

.consultation-form .form-control,
.consultation-form .form-select {
    border: 2px solid var(--purple-secondary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.15);
}

.form-check-input:checked {
    background-color: var(--purple-primary);
    border-color: var(--purple-primary);
}

.form-check-label {
    font-weight: 500;
    color: var(--text-dark);
}

/* Footer styling */
footer a {
    color: var(--purple-primary) !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--purple-dark) !important;
    text-decoration: underline;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-secondary) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(75, 0, 130, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(75, 0, 130, 0.5);
    color: white;
    background: linear-gradient(135deg, var(--purple-secondary) 0%, var(--purple-dark) 100%);
}

.floating-call-btn i {
    font-size: 1.5rem;
}

.floating-call-btn .call-tooltip {
    position: absolute;
    right: 70px;
    background: var(--purple-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(75, 0, 130, 0.3);
}

.floating-call-btn .call-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent var(--purple-primary);
}

.floating-call-btn:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(75, 0, 130, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(75, 0, 130, 0.6), 0 0 0 10px rgba(75, 0, 130, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(75, 0, 130, 0.4);
    }
}

@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-call-btn .call-tooltip {
        display: none;
    }
}













