/* ============================================
   Beeya Care - Custom Styles
   WCAG 2.1 AA Compliant
   ============================================ */

/* Color Palette from Design - Exact colors from image */
:root {
    /* Left Column Colors */
    --bright-orange: #ffa500;       /* Orange - vibrant primary orange */
    --black: #000000;               /* Black - solid dark black */
    --dark-orange: #cc8400;         /* Dark Orange - deep rich orange */
    --deep-purple: #6A0DAD;         /* Deep Purple - rich dark purple */
    
    /* Right Column Colors */
    --white: #FFFFFF;               /* White - pure white */
    --light-gray: #D3D3D3;          /* Light Gray - neutral light shade */
    --orange: #ffa500;              /* Orange - vibrant clear orange */
    
    /* Primary & accent colors */
    --primary-color: #662f95; /* main brand/CTA color (purple) */
    --accent-color: var(--primary-color);
    --primary-dark: var(--black);
    
    /* Semantic Colors */
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --border-color: #DEE2E6;
    
    /* Typography */
    --font-primary: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 150px 0;
}

/* ============================================
   Global Styles
   ============================================ */

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    width: 100%;
    min-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

a {
    text-decoration: none;
    color: var(--deep-purple);
    transition: all 0.3s ease;
}

a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: underline;
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1060; /* Keep mobile dropdowns above floating buttons */
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    font-size:14px;
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-color) !important;
    background-color: var(--bg-light);
    border-radius: 5px;
}

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

.navbar .nav-link.dropdown-toggle {
  background: transparent;
    border: 0;
    font-family: inherit;
    text-decoration: none;
    outline: none;
}

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 18rem;
    padding: 0.5rem 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 1050;
}

.navbar .dropdown-menu.show,
.navbar .dropdown.open > .dropdown-menu,
.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu .dropdown-menu {
    position: static;
    min-width: 100%;
    margin: 0;
    padding: 0.25rem 0 0.35rem 0.75rem;
    border: 0;
    border-left: 2px solid rgba(102, 47, 149, 0.18);
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-light);
}

.navbar .dropdown-menu .dropdown-menu.show {
    display: block;
}

.navbar .dropdown-item {
    color: var(--text-dark);
    font-size: 14px;
    padding: 0.6rem 1rem;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
}

.navbar .dropdown-item.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.navbar .dropdown-item.submenu-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.navbar .dropdown-item.submenu-toggle.show::after {
    transform: rotate(180deg);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    outline: none;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 82px);
        max-height: calc(100svh - 82px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 1rem;
    }

    .navbar .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-shadow: none;
        border-radius: 6px;
        margin: 0.25rem 0 0.5rem;
    }

    .navbar .dropdown-menu .dropdown-menu {
        padding-left: 0.75rem;
    }

    .navbar .dropdown-item {
        width: 100%;
        padding-right: 1rem;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

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

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

/* Hero Section Button Styling */
.hero-section .btn-outline-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    font-weight: 600;
}

.hero-section .btn-outline-primary:hover,
.hero-section .btn-outline-primary:focus {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    padding: 0;
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    overflow: hidden;
    color: var(--white);
}

.hero-carousel {
    position: relative;
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
}

.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item,
.hero-slide {
    height: auto;
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
	height:840px;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-carousel .owl-item {
    position: relative;
    display: flex;
}

.hero-carousel:not(.owl-loaded) .hero-slide {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-who-we-support {
/*     background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px); */
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
/*     border: 1px solid rgba(255, 255, 255, 0.12); */
}

.hero-who-we-support p {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.hero-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

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

.hero-bullet-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

.hero-image-wrapper {
    display: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
    max-width: 100%;
    overflow: visible;
}

.hero-section .container,
.hero-section .row {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-section .row.align-items-center {
    align-items: center !important;
    min-height: auto;
    padding: 1.5rem 0;
}

.hero-section .min-vh-100 {
    min-height: calc(100vh - 76px) !important;
    min-height: calc(100svh - 76px) !important;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    overflow-y: visible;
}

/* Hero carousel controls */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-carousel .owl-dot.active span,
.hero-carousel .owl-dot:hover span {
    background: var(--primary-color);
}

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 76px;
        min-height: auto;
        display: block;
    }
    
    .hero-carousel {
        min-height: auto;
        display: block;
        position: relative;
    }
    
    .hero-carousel .owl-stage-outer {
        height: auto;
        min-height: auto;
        position: relative;
    }
    
    .hero-carousel .owl-stage {
        height: auto;
        min-height: auto;
        display: flex;
    }
    
    .hero-carousel .owl-item {
        height: auto;
        min-height: auto;
        position: relative;
        display: flex;
    }
    
    .hero-slide {
        position: relative !important;
        height: auto;
        min-height: auto;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .hero-section .container {
        height: auto;
        min-height: auto;
        position: relative;
        z-index: 2;
    }
    
    .hero-section .row.min-vh-100 {
        min-height: auto !important;
        padding: 2rem 0 4.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section-title {
        font-size: 1.1rem;
    }
    
    .hero-bullet-list li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-who-we-support {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .hero-content {
        padding: 1.25rem 0 0;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
    
    .hero-carousel .owl-nav {
        display: none !important; /* Hide nav arrows on mobile */
    }
    
    .hero-carousel .owl-dots {
        bottom: 15px;
        z-index: 10;
    }
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--section-padding);
    display: block;
    width: 100%;
    float: none;
    clear: both;
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* ============================================
   Getting Started & Contact Options
   ============================================ */

.getting-started-section {
    padding: 120px 0;
}

.getting-started-card,
.contact-options-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.25rem 2.5rem;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.getting-started-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.6rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.getting-started-box::before {
    content: none;
}

.getting-started-box .step-number {
    margin-bottom: 0.75rem;
}

.getting-started-box h4 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.getting-started-box p {
    font-size: 0.93rem;
    margin-bottom: 0;
}

.getting-started-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

/* ============================================
   How can BeeyaCare help you? Section
   ============================================ */

.how-can-help-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.how-can-help-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.how-can-help-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.how-can-help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.how-can-help-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.help-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.help-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.help-card:hover .help-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scale(1.1);
}

.help-card:hover .help-card-icon i {
    color: #ffffff;
}

.help-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.help-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .how-can-help-section {
        padding: 80px 0;
    }
    
    .how-can-help-title {
        font-size: 2rem;
    }
    
    .how-can-help-subtitle {
        font-size: 1rem;
    }
    
    .help-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .help-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .help-card-icon i {
        font-size: 1.75rem;
    }
    
    .help-card h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   How can BeeyaCare help you? - About Page
   ============================================ */

.how-can-help-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.6), rgba(255, 192, 203, 0.4));
    position: relative;
}

.how-can-help-about-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #6b46c1;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.how-can-help-about-title strong {
    color: #662f95;
    font-weight: 700;
}

.help-hexagon-card {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.help-hexagon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #662f95, #8b5cf6);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(102, 47, 149, 0.3);
    transition: all 0.3s ease;
}

.help-hexagon-icon::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: -1;
}

.help-hexagon-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 1;
}

.help-hexagon-card:hover .help-hexagon-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 47, 149, 0.4);
}

.help-hexagon-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

@media (max-width: 768px) {
    .how-can-help-about-section {
        padding: 60px 0;
    }
    
    .how-can-help-about-title {
        font-size: 2rem;
    }
    
    .help-hexagon-icon {
        width: 100px;
        height: 100px;
    }
    
    .help-hexagon-icon i {
        font-size: 2rem;
    }
    
    .help-hexagon-text {
        font-size: 0.95rem;
    }
}

.getting-started-title,
.contact-options-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.getting-started-subtitle,
.contact-options-subtitle {
    font-size: 0.98rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.getting-started-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.getting-started-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.getting-started-steps .step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.getting-started-steps .step-content h4 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.getting-started-steps .step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: radial-gradient(circle at top left, rgba(102, 47, 149, 0.08), transparent);
}

.contact-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(102, 47, 149, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-option-icon i {
    font-size: 1.05rem;
}

.contact-option-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: var(--text-dark);
}

.contact-option-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-option-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-option-content a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .getting-started-section {
        padding: 80px 0;
    }

    .getting-started-card,
    .contact-options-card {
        padding: 1.75rem 1.75rem;
    }
}

/* ============================================
   About Section - Exact Design Match
   ============================================ */

.about-section {
    background: #f8f8f8;
    padding: 100px 0;
    overflow: hidden;
}

.about-section .container {
    padding: 0 15px;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    height: 655px;
    overflow: hidden;
}

.about-main-image {
    width: 100%;
 

    display: block;
}

/* Orange Vertical Banner on Left */
.about-vertical-banner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-yellow-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    z-index: 3;
}

.about-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}

/* Orange Banner Top Right */
.about-top-right-banner {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    padding: 1.5rem 2rem;
    transform: rotate(-5deg);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
    z-index: 3;
}

.about-banner-number {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-banner-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Yellow Year Overlay */
.about-year-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.about-year-number {
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-year-label {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.4rem;
}

/* Right Content Area */
.about-content-area {
    background: #fafafa;
    padding: 2.5rem 2.5rem;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.about-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-body-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.about-sub-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.25rem 0 1rem 0;
}

.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.about-values-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.about-values-list i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.about-values-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Area */
.about-contact-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
}

.about-phone-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-phone-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.about-phone-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.about-phone-number {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.about-more-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.about-more-btn:hover {
    background: var(--dark-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.values-list li {
    padding: .5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.values-list li:hover {
    padding-left: 10px;
}

.work-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.3);
}

.work-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--white);
}

.values-list strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* ============================================
   FA Support Section
   ============================================ */

.fa-support-header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.fa-support-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.fa-support-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.fa-support-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 0;
}

.support-card {
    background: var(--white);
    padding:1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.support-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.support-content {
    flex: 1;
}

.support-card h3 {
    color: var(--text-dark);
    margin: 0 0 0.45rem 0;
    font-size: 1.3rem;
}

.support-card p {
    color: var(--text-light);
    
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.96));
    padding: 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    height: 100%;
    position: sticky;
    top: 100px;
}

.faq-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
    padding-bottom: 0;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(102, 47, 149, 0.24);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.02rem;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem 1.1rem;
    position: relative;
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(102, 47, 149, 0.03);
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background: rgba(102, 47, 149, 0.06);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.1rem 0 3rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.1rem 1rem 3rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Services Section
   ============================================ */

/* Services Section Container */
.services-section {
    padding: 100px 0 80px;
    position: relative;
    scroll-margin-top: 80px; /* Account for fixed navbar */
    z-index: 1; /* Ensure it's above background elements */
    min-height: 400px; /* Ensure minimum height for visibility */
}

/* Ensure services header is visible at top */
.services-section .container {
    padding-top: 0;
}

.services-section .row:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* Services Section - New Design */
.services-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.services-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.services-main-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.services-overview-subtitle {
    max-width: 760px;
    margin: 0 auto 0;
    font-size: 1.08rem;
    color: var(--text-light);
}

.services-section-structured {
    background:
        linear-gradient(180deg, rgba(102, 47, 149, 0.04), rgba(255, 255, 255, 0) 42%),
        var(--white);
}

.service-focus-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(102, 47, 149, 0.12);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-focus-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
}

.service-focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    border-color: rgba(102, 47, 149, 0.28);
}

.service-focus-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.14), rgba(255, 165, 0, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-focus-icon i {
    font-size: 1.45rem;
    color: var(--primary-color);
}

.service-focus-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.service-focus-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.service-focus-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.55rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-focus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--bright-orange);
}

.services-callout {
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.08), rgba(255, 165, 0, 0.08));
    border: 1px solid rgba(102, 47, 149, 0.14);
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.services-callout h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.services-callout p {
    margin-bottom: 0;
    max-width: 720px;
}

/* Service Carousel */
.service-carousel {
    margin-top: 2rem;
    position: relative;
}

.service-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.service-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.service-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -25px;
}

.service-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -25px;
}

.service-carousel .owl-nav button:hover {
    background: var(--dark-orange) !important;
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    display: none;
}

.service-card-new {
    text-align: center;
    margin-bottom: 0;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-8px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
	height:255px;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card-new:hover .service-image-wrapper {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-new:hover .service-image {
    transform: scale(1.1);
}

.service-content-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem;
    display: grid;
    grid-template-areas: 
        "icon label"
        "desc desc";
    grid-template-columns: auto 1fr;
    gap: 0rem 1rem;
    align-items: center;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* When icon and label are direct children (no wrapper) */
.service-content-box > .service-icon-square:first-child {
    grid-area: icon;
    margin: 0;
    align-self: center;
}

.service-content-box > .service-label:first-of-type {
    grid-area: label;
    margin: 0;
    align-self: start;
    text-align: left;
    line-height: 1.3;
}

.service-content-box > .service-description {
    grid-area: desc;
    margin: 0;
    width: 100%;
}

/* Wrapper approach - when using service-label-wrapper */
.service-content-box .service-label-wrapper {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex-wrap: nowrap;
}

.service-content-box .service-label-wrapper .service-icon-square {
    margin: 0;
    flex-shrink: 0;
}

.service-content-box .service-label-wrapper .service-label {
    flex: 1;
    margin: 0;
    min-width: 0;
    text-align: left;
}

.service-content-box .service-label-wrapper + .service-description {
    grid-column: 1 / -1;
    grid-row: 2;
}

.service-card-new:hover .service-content-box {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-square {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-purple) 100%);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 47, 149, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-square {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 47, 149, 0.4);
}

.service-icon-square i {
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
}

.service-icon-square i:first-child {
    margin-bottom: 0.2rem;
}

.service-icon-square i:last-child:not(:first-child) {
    font-size: 0.75rem;
}

.service-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: left;
}

.service-card-new:hover .service-label {
    color: var(--primary-color);
}

.service-description {
    color: #5a6c7d;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.5;
    display: block;
    width: 100%;
    font-weight: 400;
}

.services-footer-text {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.services-footer-link {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.services-footer-link:hover {
    color: var(--primary-color);
}

/* Old service card styles - keeping for backward compatibility */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: var(--primary-color);
}

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

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

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

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

/* ============================================
   Service List Cards
   ============================================ */

.service-list-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
    position: relative;
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: var(--primary-color);
}

.service-list-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

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

.service-list-card h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-list-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

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

.service-sublist li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-sublist li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.services-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Persian Support Section
   ============================================ */

/* ============================================
   Persian Support Section - Elegant Design
   ============================================ */

.persian-support-section {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.03), rgba(255, 255, 0, 0.05));
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.persian-support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent);
    border-radius: 50%;
    z-index: 0;
}

.persian-support-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.08), transparent);
    border-radius: 50%;
    z-index: 0;
}

.persian-support-section .container {
    position: relative;
    z-index: 1;
}

.persian-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.persian-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.persian-main-title {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.persian-subtitle {
    font-size: 1.5rem;
    direction: rtl;
    text-align: center;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.persian-intro-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 255, 0, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.persian-intro-text {
    font-size: 1.15rem;

    color: var(--text-dark);
    margin: 0;
}

.persian-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.persian-feature-card {
    background: var(--white);
    padding:1rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid transparent;
}

.persian-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
    border-top-color: var(--primary-color);
}

.persian-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

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

.persian-feature-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.persian-feature-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.persian-cta-wrapper {
    margin-top: 2rem;
}

.persian-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.persian-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.4);
    color: var(--white);
}

.persian-cta-btn i {
    transition: transform 0.3s ease;
}

.persian-cta-btn:hover i {
    transform: translateX(5px);
}

.persian-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.persian-image-decorative {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.persian-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.persian-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(102, 47, 149, 0.7), transparent);
    z-index: 3;
    pointer-events: none;
}

/* ============================================
   Work With Us Section - Elegant Design
   ============================================ */

.work-with-us-section {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.02), rgba(255, 255, 0, 0.03));
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.work-with-us-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.08), transparent);
    border-radius: 50%;
    z-index: 0;
}

.work-with-us-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.06), transparent);
    border-radius: 50%;
    z-index: 0;
}

.work-with-us-section .container {
    position: relative;
    z-index: 1;
}

.work-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.work-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.work-main-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.work-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.work-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.work-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.work-value-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
}

.work-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
    border-left-color: var(--primary-color);
}

.work-value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

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

.work-value-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.work-value-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.work-cta-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.work-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.work-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.4);
    color: var(--white);
    background: var(--dark-orange);
}

.work-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.work-cta-btn-outline:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.3);
}

/* Work With Us Section Image */
.work-with-us-section .col-lg-6 img {
    max-height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.work-with-us-section .row.align-items-center {
    align-items: flex-start !important;
}

.work-with-us-section .col-lg-6:last-child {
    padding-left: 2rem;
}

.work-main-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.work-left-panel {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.work-application-card {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}

.application-step-header {
    margin-bottom: 1.25rem;
}

.application-step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 47, 149, 0.1);
    color: var(--primary-color);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.application-step-header h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.application-step-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.position-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.position-choice-card {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.position-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.position-choice-content {
    min-height: 74px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.position-choice-content i {
    width: 28px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.position-choice-content span {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.35;
}

.position-choice-card input:checked + .position-choice-content {
    border-color: var(--primary-color);
    background: rgba(102, 47, 149, 0.08);
    box-shadow: 0 8px 18px rgba(102, 47, 149, 0.08);
}

.preferred-position-display {
    margin-top: 1.25rem;
}

.preferred-position-display .form-control {
    background: var(--bg-light);
}

.work-application-form .form-label {
    font-size: 0.95rem;
}

.work-application-form .form-control,
.work-application-form .form-select {
    background: #fff;
}

.work-application-form .form-control::placeholder {
    color: #94a3b8;
}

.work-application-form .form-select:required:invalid {
    color: #94a3b8;
}

.work-application-form .form-select option {
    color: var(--text-dark);
}

.work-application-form textarea.form-control {
    resize: vertical;
}

.application-step-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.application-follow-up-note {
    flex: 1 1 320px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.work-application-form .btn {
    min-width: 220px;
}

#workWithUsSuccess {
    border-radius: 16px;
}

.work-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-image-decorative {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.work-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.work-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(102, 47, 149, 0.7), transparent);
    z-index: 3;
    pointer-events: none;
}

/* ============================================
   Testimonials/Stories Section
   ============================================ */

.stories-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.stories-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.stories-main-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stories-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.stories-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(102, 47, 149, 0.02), rgba(102, 47, 149, 0.04));
}

.stories-section .container {
    position: relative;
    z-index: 1;
}

.stories-section .testimonial-carousel {
    position: relative;
    padding: 0 3.5rem;
}

/* ============================================
   Marketplace Section Header
   ============================================ */

.marketplace-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.marketplace-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.marketplace-main-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.marketplace-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.marketplace-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(102, 47, 149, 0.04) 100%);
}

.marketplace-overview-card,
.marketplace-showcase-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.marketplace-showcase-card {
    border-top-color: var(--primary-color);
    background: linear-gradient(180deg, #ffffff 0%, rgba(102, 47, 149, 0.04) 100%);
}

.marketplace-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.marketplace-section-kicker i {
    font-size: 0.95rem;
}

.marketplace-overview-card h3,
.marketplace-showcase-card h3 {
    color: var(--text-dark);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.marketplace-card-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.marketplace-mini-grid {
    margin-bottom: 1.5rem;
}

.marketplace-mini-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(102, 47, 149, 0.05), rgba(102, 47, 149, 0.02));
    border: 1px solid rgba(102, 47, 149, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
}

.marketplace-mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1rem;
}

.marketplace-mini-card h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.marketplace-mini-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.marketplace-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.marketplace-action-row .btn {
    min-width: 0;
}

.marketplace-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.marketplace-showcase-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.showcase-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.showcase-avatar i {
    font-size: 1.15rem;
    line-height: 1;
}

.showcase-avatar-orange {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
}

.showcase-avatar-teal {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}

.showcase-avatar-blue {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
}

.marketplace-showcase-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.marketplace-showcase-item p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   Contact Section Header
   ============================================ */

.contact-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.contact-main-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ============================================
   Contact Section Background
   ============================================ */

/* Contact Options Section */
.contact-options-section {
    margin-bottom: 3rem;
}

.contact-options-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-option-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 47, 149, 0.2);
}

.contact-option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

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

.contact-option-card:hover .contact-option-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 47, 149, 0.4);
}

.contact-option-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-option-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.contact-option-card .btn {
    margin-top: auto;
}

/* Responsive for contact options */
@media (max-width: 768px) {
    .contact-options-title {
        font-size: 1.75rem;
    }
    
    .contact-option-card {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .contact-option-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-option-icon i {
        font-size: 1.5rem;
    }
    
    .contact-option-card h5 {
        font-size: 1.1rem;
    }
}

.contact-section {
    position: relative;
    background-image: url('../img/feature-bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 47, 149, 0.85);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .contact-header-badge,
.contact-section .contact-main-title,
.contact-section .contact-subtitle {
    color: var(--white);
}

.testimonial-carousel .owl-stage-outer {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 1rem;
    border-left: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(102, 47, 149, 0.18) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav button.owl-prev {
    margin-left: -1.5rem;
}

.testimonial-carousel .owl-nav button.owl-next {
    margin-right: -1.5rem;
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: scale(1.08);
}

.testimonial-carousel .owl-nav button i {
    font-size: 1rem;
}

.testimonial-carousel .owl-dots {
    display: none;
}

.testimonial-media-card {
    background: linear-gradient(180deg, rgba(102, 47, 149, 0.04), rgba(255, 255, 255, 0.98));
}

.testimonial-media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.testimonial-media-badge i {
    font-size: 1rem;
}

.testimonial-media-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.testimonial-media-card p {
    font-style: normal;
}

.testimonial-media-placeholder {
    min-height: 140px;
    border: 1.5px dashed rgba(102, 47, 149, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
    margin-top: 1.25rem;
}

.testimonial-media-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ============================================
   Blog Section - Elegant Design (Exact Match)
   ============================================ */

.blog-section {
    background: var(--white);
    padding: 150px 0;
}

.blog-section-header {
    margin-bottom: 4rem;
}

.blog-section-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.blog-section-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.blog-section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
    margin-bottom: 0px;
    padding: 0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 320px;
    margin: 0;
    padding: 0;
    border-radius: 16px 16px 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.blog-card:hover .blog-image {
    transform: scale(1.15);
}

.blog-content {
  
    padding: 15px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 40%, rgba(255, 255, 255, 0.94) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-content {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.blog-category {
    position: absolute;
    top: 1.5rem;
    left: 1.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
    z-index: 5;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.blog-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #e9ecef;
}

.blog-author span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.75rem;
}

.blog-date {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.75rem;
    gap: 0.3rem;
}

.blog-date i {
    font-size: 0.7rem;
}

.blog-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 3rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-decorative-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.15));
    border-radius: 50% 0 0 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.55rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 2;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    letter-spacing: 0.3px;
}

.blog-read-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(102, 47, 149, 0.2);
}

.blog-read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.blog-read-more-btn:hover i {
    transform: translateX(3px);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

/* Blog Page Specific */
.blog-header-section {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 255, 0, 0.05));
}

.blog-categories {
    border-bottom: 1px solid var(--border-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.blog-post-item.hidden {
    display: none;
}

/* ============================================
   Marketplace Section
   ============================================ */

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

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

.marketplace-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bright-orange), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.marketplace-partners-shell {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 5rem 0 4.5rem;
    border-top: 1px solid rgba(102, 47, 149, 0.12);
    background:
        radial-gradient(circle at top center, rgba(102, 47, 149, 0.06), transparent 38%),
        linear-gradient(180deg, rgba(102, 47, 149, 0.03), rgba(102, 47, 149, 0.01));
    overflow: hidden;
}

.trusted-partners-header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 1rem;
}

.marketplace-partners-row {
    margin-top: 1.5rem;
}

.trusted-partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.trusted-partners-badge i {
    font-size: 0.85rem;
}

.trusted-partners-title {
    color: var(--text-dark);
    font-size: 2.35rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.trusted-partners-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: linear-gradient(180deg, #ffffff 0%, rgba(102, 47, 149, 0.02) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 1.35rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 186px;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    opacity: 0.9;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(102, 47, 149, 0.28);
}

.partner-logo {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(102, 47, 149, 0.18);
    margin-top: 0.15rem;
}

.partner-logo i {
    font-size: 1.45rem;
    line-height: 1;
}

.partner-logo-physio {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
}

.partner-logo-allied {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.partner-logo-equipment {
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.partner-logo-transport {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.partner-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.1rem;
}

.partner-category {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
    width: fit-content;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(102, 47, 149, 0.06);
}

.partner-card h4 {
    color: var(--text-dark);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.94rem;
    line-height: 1.7;
    margin: 0;
}

.marketplace-announcements {
    background: linear-gradient(180deg, rgba(102, 47, 149, 0.06), rgba(102, 47, 149, 0.03));
    border: 1px solid rgba(102, 47, 149, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    min-height: 170px;
}

.marketplace-announcements-header {
    margin-bottom: 1.25rem;
}

.marketplace-announcements-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.marketplace-announcements-kicker i {
    font-size: 0.9rem;
}

.marketplace-announcements-header h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.35;
}

.marketplace-announcement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.marketplace-announcement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.announcement-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.4rem;
    box-shadow: 0 0 0 4px rgba(102, 47, 149, 0.08);
}

.marketplace-announcement-item h4 {
    color: var(--text-dark);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.marketplace-announcement-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .marketplace-partners-shell {
        padding: 3rem 0;
    }

    .marketplace-section {
        padding: 96px 0;
    }
}

@media (max-width: 768px) {
    .trusted-partners-title {
        font-size: 1.55rem;
    }

    .partner-card {
        padding: 1rem;
        padding-bottom: 1.15rem;
        min-height: auto;
        grid-template-columns: 58px 1fr;
        gap: 0.85rem;
    }

    .partner-logo {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .partner-logo i {
        font-size: 1.2rem;
    }

    .marketplace-announcements {
        padding: 1.25rem;
    }

    .marketplace-announcement-item {
        padding: 0.85rem;
    }

    .marketplace-partners-row {
        margin-top: 1rem;
    }

    .marketplace-overview-card,
    .marketplace-showcase-card {
        padding: 1.5rem;
    }

    .marketplace-overview-card h3,
    .marketplace-showcase-card h3 {
        font-size: 1.4rem;
    }

    .marketplace-action-row .btn {
        width: 100%;
    }

    .marketplace-showcase-item {
        padding: 0.9rem;
    }

    .stories-section .testimonial-carousel {
        padding: 0 2rem;
    }

    .testimonial-carousel .owl-nav button.owl-prev {
        margin-left: -1rem;
    }

    .testimonial-carousel .owl-nav button.owl-next {
        margin-right: -1rem;
    }
}

@media (max-width: 575.98px) {
    .marketplace-section {
        padding: 80px 0;
    }

    .marketplace-partners-shell {
        padding: 4rem 0 3.5rem;
    }

    .marketplace-mini-card {
        padding: 1rem;
    }

    .marketplace-mini-icon {
        width: 44px;
        height: 44px;
    }

    .marketplace-showcase-item {
        gap: 0.85rem;
    }

    .showcase-avatar {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .showcase-avatar i {
        font-size: 1rem;
    }

    .partner-card {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        margin-top: 0;
        margin-bottom: 0.25rem;
    }
}

/* ============================================
   Inclusive Services Section
   ============================================ */

.inclusive-services-section {
    padding: 120px 0;
}

.inclusive-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 165, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inclusive-header-badge i {
    color: var(--primary-color);
}

.inclusive-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.inclusive-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.inclusive-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.inclusive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: var(--primary-color);
}

.inclusive-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.inclusive-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.workshop-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
}

.workshop-card .workshop-card-content {
    flex: 1;
}

.workshop-card .workshop-card-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.workshop-card .workshop-card-content p {
    margin-bottom: 0;
}

.workshop-card .workshop-icon {
    margin: 0;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
}

.workshop-tabs-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(102, 47, 149, 0.03) 100%);
}

.workshop-tabs-shell {
    background: var(--white);
    border: 1px solid rgba(102, 47, 149, 0.12);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
}

.workshop-tab-nav {
    border-bottom: 0;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.workshop-tab-nav .nav-item {
    flex: 1 1 0;
    max-width: 320px;
}

.workshop-tab-nav .nav-link {
    width: 100%;
    border: 1px solid rgba(102, 47, 149, 0.14);
    border-radius: 999px;
    color: var(--text-dark);
    background: #fff;
    font-weight: 700;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.workshop-tab-nav .nav-link:hover {
    border-color: rgba(102, 47, 149, 0.25);
    color: var(--primary-color);
}

.workshop-tab-nav .nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(102, 47, 149, 0.2);
}

.workshop-tab-nav .nav-link i {
    color: inherit;
}

.workshop-tab-content {
    padding-top: 0.25rem;
}

.workshop-registration-card {
    /* background: linear-gradient(180deg, rgba(102, 47, 149, 0.04), rgba(102, 47, 149, 0.02));
    border: 1px solid rgba(102, 47, 149, 0.1);
    border-radius: 22px;
    padding: 1.5rem; */
}

.workshop-registration-copy {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 1.5rem;
    margin-top: 30px;
}

.workshop-registration-copy h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.workshop-registration-copy p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.workshop-registration-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.workshop-registration-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
}

.workshop-registration-list li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    width: 16px;
    flex-shrink: 0;
}

.workshop-registration-note {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.workshop-form-frame {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    height: 760px;
    min-height: 760px;
}

.workshop-form-action-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.workshop-form-action-content {
    max-width: 420px;
    text-align: center;
}

.workshop-form-action-content i {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 24px rgba(102, 47, 149, 0.18);
}

.workshop-form-action-content h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.workshop-form-action-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.workshop-form-frame iframe {
    display: block;
    width: 100%;
    height: 760px;
    min-height: 760px;
    border: 0;
}

@media (max-width: 575.98px) {
    .workshop-card {
        gap: 1rem;
        padding: 1.5rem;
    }

    .workshop-card .workshop-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .workshop-card .inclusive-icon i {
        font-size: 1.75rem;
    }

    .workshop-tabs-shell {
        padding: 1rem;
    }

    .workshop-tab-nav {
        gap: 0.5rem;
    }

    .workshop-tab-nav .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .workshop-registration-card {
        padding: 1rem;
    }

    .workshop-registration-copy {
        padding: 1.1rem;
    }

    .workshop-form-frame {
        height: 820px;
        min-height: 820px;
    }

    .workshop-form-action-card {
        min-height: 0;
        padding: 1.25rem;
    }

    .workshop-form-action-content i {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .workshop-form-frame iframe {
        height: 820px;
        min-height: 820px;
    }
}

/* ============================================
   Accommodation Section
   ============================================ */

.accommodation-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.accommodation-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 165, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accommodation-header-badge i {
    color: var(--primary-color);
}

.accommodation-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.accommodation-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 760px;
    margin: 0 auto;
}

.accommodation-info-card,
.accommodation-form-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
}

.accommodation-info-card h3,
.accommodation-form-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accommodation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.accommodation-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
    padding: 0.6rem 0;
    line-height: 1.5;
}

.accommodation-list li i {
    color: var(--primary-color);
    margin-top: 0.15rem;
}

.accommodation-note {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 255, 0, 0.05));
    transform: translateY(-5px);
}

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

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

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

.contact-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--dark-orange);
}

.contact-form-wrapper {
    margin-top: 2rem;
}

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

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

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

/* ============================================
   Chat Widget
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover, .chat-button:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
    outline: 3px solid rgba(255, 165, 0, 0.3);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h5 {
    margin: 0;
    color: var(--white);
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-chat:hover, .close-chat:focus {
    background: rgba(255,255,255,0.2);
    outline: 2px solid rgba(255,255,255,0.5);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--bg-light);
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    max-width: 80%;
}

.bot-message {
    background: var(--white);
    border-left: 3px solid var(--primary-color);
}

.user-message {
    background: var(--primary-color);
    color: var(--white);
    margin-left: auto;
}

.chat-input-wrapper {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.chat-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.send-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover, .send-button:focus {
    background: var(--dark-orange);
    transform: scale(1.05);
    outline: 2px solid var(--primary-color);
}

/* ============================================
   Quick Services Section with Icons
   ============================================ */

.quick-services-section {
    padding: 80px 0;
}

.quick-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quick-services-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.quick-service-item {
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 220px;
}

.quick-service-item.text-left {
    align-items: flex-start;
}

.quick-service-item.text-center {
    align-items: center;
    text-align: center;
}

.quick-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-service-item.text-center .quick-service-icon {
    margin-left: auto;
    margin-right: auto;
}

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

.quick-service-item:hover .quick-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 47, 149, 0.4);
}

.quick-service-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.quick-service-item:hover h4 {
    color: var(--primary-color);
}

.service-description-text {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Why Choose BeeyaCare Section
   ============================================ */

.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-checkmark {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.why-choose-list li strong {
    color: var(--text-dark);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Responsive styles for why choose */
@media (max-width: 768px) {
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-list li {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .why-choose-checkmark {
        font-size: 1.1rem;
    }
}

/* Responsive styles for quick services */
@media (max-width: 768px) {
    .quick-services-title {
        font-size: 2rem;
    }
    
    .quick-service-item {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .quick-service-icon {
        width: 70px;
        height: 70px;
    }
    
    .quick-service-icon i {
        font-size: 1.75rem;
    }
    
    .quick-service-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-bullet-list li {
        font-size: 0.9rem;
    }
}

/* ============================================
   Scroll to Top Button
   ============================================ */

/* Floating Make an Enquiry Button - 90 Degree Vertical */
.floating-enquiry-btn {
    position: fixed;
    top: 50%;
    right: 28px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center right;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: -4px 0 20px rgba(102, 47, 149, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    margin-right: 0px;
}

.floating-enquiry-btn i {
    font-size: 1.2rem;
    transform: rotate(90deg);
}

.floating-enquiry-btn:hover, .floating-enquiry-btn:focus {
    background: var(--dark-orange);
    transform: translateY(-50%) rotate(-90deg) translateX(-5px);
    box-shadow: -6px 0 25px rgba(255, 165, 0, 0.5);
    color: var(--white);
    text-decoration: none;
    outline: 3px solid rgba(255, 165, 0, 0.3);
}

.floating-btn-text {
    display: inline-block;
    transform: rotate(0deg);
}

/* Call Now Icon Button in Navbar */
.call-now-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.call-now-icon i {
    margin: 0;
}

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover, .scroll-top-btn:focus {
    background: var(--dark-orange);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
    outline: 3px solid rgba(255, 165, 0, 0.3);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--black) !important;
    padding: 3rem 0 1.5rem;
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    float: none;
    clear: both;
    position: relative;
    z-index: 1;
}

.footer h5, .footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255,255,255,0.8);
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer a:hover, .footer a:focus {
    color: var(--white);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover, .social-links a:focus {
    background: var(--primary-color);
}

.ndis-logo {
    margin-top: 1.5rem;
}

.ndis-image {
    max-width: 150px;
    height: auto;
 
}

.ndis-image:hover {
    opacity: 1;
}

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter-section {
    background: var(--primary-color) !important;
}

.newsletter-form .form-control:focus {
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* ============================================
   Accessibility
   ============================================ */

/* Focus states for keyboard navigation */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus, .btn:focus, a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* High contrast text */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-section-title {
        font-size: 2rem;
    }
    
    .blog-content h3 {
        font-size: 1.25rem;
        min-height: auto;
    }
    
    .blog-image-wrapper {
        height: 300px;
    }
    
    .blog-content {
        bottom: -18px;
        left: 12px;
        right: 12px;
        padding: 1.1rem 1.3rem 1.3rem;
        border-radius: 0;
    }
    
    .blog-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
        min-height: 2.5rem;
    }
    
    .blog-read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .position-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .contact-wrapper {
        padding: 2rem 1.5rem;
    }

    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-button {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .chat-badge {
        width: 20px;
        height: 20px;
        top: -4px;
        right: -4px;
        font-size: 0.65rem;
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        right: 0;
        bottom: 62px;
        height: min(68vh, 420px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .blog-section {
        padding: 120px 0;
    }
    
    .blog-section-title {
        font-size: 1.75rem;
    }
    
    .blog-section-badge {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .blog-image-wrapper {
        height: 280px;
    }
    
    .blog-content {
        bottom: -15px;
        left: 12px;
        right: 12px;
        padding: 1.1rem 1.2rem;
        border-radius: 0;
    }
    
    .blog-content h3 {
        font-size: 1rem;
        min-height: auto;
        margin-bottom: 0.75rem;
    }
    
    .blog-read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-decorative-shape {
        width: 100px;
        height: 100px;
    }
    
    .blog-category {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        top: 1.25rem;
        left: 1.5rem;
    }
    
    .about-section {
        padding: 0;
    }
    
    .about-image-container {
        min-height: 350px;
    }
    
    .about-content-area {
        padding: 2rem 1.75rem;
        min-height: 350px;
    }
    
    .about-main-heading {
        font-size: 2rem;
    }
    
    .about-vertical-banner {
        width: 80px;
    }
    
    .about-vertical-text {
        font-size: 0.85rem;
    }
    
    .about-year-number {
        font-size: 3.5rem;
    }
    
    .about-top-right-banner {
        top: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
    }
    
    .about-banner-number {
        font-size: 1.5rem;
    }
    
    .about-contact-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .about-more-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .support-card, .service-card, .blog-card {
        padding: 1.5rem;
    }
    
    .faq-section {
        position: static;
        margin-top: 2rem;
    }
    
    .faq-title {
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-media-card h3 {
        font-size: 1.15rem;
    }

    .testimonial-media-placeholder {
        min-height: 120px;
    }

    .stories-section .testimonial-carousel {
        padding: 0 1.25rem;
    }

    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }
    
    .about-section {
        padding: 100px 0;
    }
    
    .about-image-container {
        min-height: 300px;
    }
    
    .about-content-area {
        padding: 1.75rem 1.25rem;
        min-height: 300px;
    }
    
    .about-main-heading {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .about-body-text {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }
    
    .about-sub-heading {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }
    
    .about-values-list {
        margin-bottom: 1.25rem;
    }
    
    .about-values-list li {
        padding: 0.4rem 0;
    }
    
    .about-main-heading {
        font-size: 1.5rem;
    }
    
    .about-vertical-banner {
        width: 50px;
    }
    
    .about-vertical-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .about-year-number {
        font-size: 2.5rem;
    }
    
    .about-year-label {
        font-size: 0.9rem;
    }
    
    .about-top-right-banner {
        top: 10px;
        right: 10px;
        padding: 0.5rem 0.75rem;
    }
    
    .about-banner-number {
        font-size: 1rem;
    }
    
    /* Services Section Responsive */
    .services-section {
        padding: 90px 0 60px;
        scroll-margin-top: 80px; /* Account for mobile navbar */
    }
    
    .services-section .container {
        padding-top: 0;
    }
    
    .services-main-title {
        font-size: 2rem;
    }

    .services-overview-subtitle {
        font-size: 1rem;
    }

    .service-focus-card {
        padding: 1.5rem 1.25rem;
    }

    .service-focus-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .service-focus-icon i {
        font-size: 1.25rem;
    }

    .services-callout {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-image-wrapper {
        height: 280px;
    }
    
    .service-content-box {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .service-icon-square {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-square i {
        font-size: 0.9rem;
    }
    
    .service-label {
        font-size: 0.95rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
    
    .service-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .service-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    
    /* Persian Support Section Responsive */
    .persian-main-title {
        font-size: 2rem;
    }
    
    .persian-subtitle {
        font-size: 1.2rem;
    }
    
    .persian-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .persian-feature-card {
        padding: 1.25rem;
    }
    
    .persian-main-image {
        height: 350px;
    }
    
    .persian-intro-card {
        padding: 1.5rem;
    }
    
    .persian-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Work With Us Section Responsive */
    .work-with-us-section {
        padding: 80px 0;
    }
    
    .work-main-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .work-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .work-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .work-value-card {
        padding: 1.25rem;
    }
    
    .work-main-image {
        height: 350px;
    }
    
    .work-with-us-section .col-lg-6 img {
        max-height: 400px;
        margin-bottom: 2rem;
    }
    
    .work-with-us-section .col-lg-6:last-child {
        padding-top: 1rem;
    }
    
    .work-with-us-section .row.align-items-center {
        flex-direction: column;
    }
    
    .work-with-us-section .col-lg-6 {
        margin-bottom: 1.5rem;
    }

    .position-choice-grid {
        grid-template-columns: 1fr;
    }

    .work-application-card {
        padding: 1.5rem;
    }

    .application-step-footer {
        align-items: stretch;
    }

    .work-application-form .btn {
        width: 100%;
    }
    
    .values-list {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .values-list li {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .work-cta-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .work-cta-btn-primary,
    .work-cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .work-with-us-section .mt-4 {
        margin-top: 1.5rem !important;
    }
    
    .work-with-us-section .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        margin-right: 0 !important;
    }
    
    .about-banner-text {
        font-size: 0.65rem;
    }
    
    .about-sub-heading {
        font-size: 1rem;
    }
    
    .about-body-text {
        font-size: 0.95rem;
    }
    
    .about-phone-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-phone-number {
        font-size: 0.95rem;
    }
    
    .about-more-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .blog-section {
        padding: 100px 0;
    }
    
    .blog-section-title {
        font-size: 1.5rem;
    }
    
    .blog-section-badge {
        font-size: 0.7rem;
    }
    
    .blog-image-wrapper {
        height: 250px;
    }
    
    .blog-content {
        bottom: -12px;
        left: 10px;
        right: 10px;
        padding: 1rem 1.1rem;
        border-radius: 0;
    }
    
    .blog-content h3 {
        font-size: 0.95rem;
        min-height: auto;
        margin-bottom: 0.65rem;
    }
    
    .blog-read-more-btn {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Work With Us Section Mobile (576px) */
    .work-with-us-section {
        padding: 60px 0;
    }
    
    .work-main-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .work-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .work-with-us-section .col-lg-6 img {
        max-height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .work-with-us-section .col-lg-6:last-child p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .values-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .work-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .work-icon-wrapper i {
        font-size: 1rem;
    }
    
    .work-with-us-section .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .blog-meta {
        margin-bottom: 0.6rem;
        font-size: 0.7rem;
    }
    
    .blog-decorative-shape {
        width: 80px;
        height: 80px;
    }
    
    .blog-category {
        top: 1rem;
        left: 1.25rem;
        font-size: 0.6rem;
        padding: 0.35rem 0.9rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */

/* ============================================
   About Us Page Styles
   ============================================ */

.about-hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.05), rgba(102, 47, 149, 0.02));
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 47, 149, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-badge i {
    color: var(--primary-color);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story-section {
    padding: 100px 0;
}

.about-story-image img,
.about-approach-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-mission-section {
    padding: 100px 0;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-color);
}

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

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

.mission-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Team Section */
.about-team-section {
    padding: 100px 0;
}

.team-member-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-member-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(102, 47, 149, 0.2);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member-qualifications {
    text-align: left;
    margin-top: 1.5rem;
}

.qualification-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.qualification-text i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-approach-section {
    padding: 100px 0;
}

.about-why-choose-section {
    padding: 100px 0;
}

.why-choose-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.why-choose-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.05), rgba(102, 47, 149, 0.02));
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Us Page Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-story-section,
    .about-approach-section,
    .about-mission-section,
    .about-team-section,
    .about-why-choose-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .mission-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .team-member-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .team-member-image img {
        width: 150px;
        height: 150px;
    }
    
    .team-member-name {
        font-size: 1.3rem;
    }
    
    .team-member-role {
        font-size: 1rem;
    }
    
    .why-choose-card {
        margin-bottom: 1.5rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 120px 0 60px;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .mission-card,
    .why-choose-card {
        padding: 1.5rem;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon i {
        font-size: 1.5rem;
    }
}

/* Responsive styles for floating buttons */
@media (max-width: 768px) {
    .floating-enquiry-btn {
        top: 50%;
        bottom: auto;
        right: 28px;
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: center right;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 0;
        max-width: none;
        box-shadow: -4px 0 20px rgba(102, 47, 149, 0.4);
    }
    
    .floating-enquiry-btn:hover, .floating-enquiry-btn:focus {
        transform: translateY(-50%) rotate(-90deg) translateX(-5px);
    }
    
    .floating-btn-text {
        display: inline-block;
    }
    
    .floating-enquiry-btn i {
        font-size: 1.2rem;
        transform: rotate(90deg);
    }
    
    .call-now-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .scroll-top-btn {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media print {
    .navbar, .chat-widget, .scroll-top-btn, .floating-enquiry-btn, .chat-window {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
}

.page-header {
    background: linear-gradient(rgba(1, 10, 53, .4), rgba(1, 10, 53, .4)), url('https://wmxsolutions.com.au/atanu/beeyacare/wp-content/themes/kohparenting/assets/img/slider-bg-2.jpg') center center no-repeat;
    background-size: cover;
    margin-top: 93px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header .page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: #fff;
}
.breadcrumb.justify-content-center.mb-0{
    display:none;
}

/* ============================================
   Services Page Styles
   ============================================ */

.services-page-section {
    padding: 100px 0;
}

/* Simple Service Cards */
.service-simple-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-simple-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.service-simple-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 47, 149, 0.3);
    transition: all 0.3s ease;
}

.service-simple-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-simple-card:hover .service-simple-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 47, 149, 0.4);
}

.service-simple-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-simple-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-simple-cta {
    margin-top: auto;
}

.service-simple-cta .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .service-simple-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .service-simple-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-simple-icon i {
        font-size: 1.75rem;
    }
    
    .service-simple-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .service-simple-description {
        font-size: 0.9rem;
    }
}

.service-detail-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 47, 149, 0.3);
}

.service-detail-icon i {
    font-size: 4rem;
    color: #ffffff;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.service-detail-who,
.service-detail-examples {
    margin-bottom: 1.5rem;
}

.service-detail-who h4,
.service-detail-examples h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.service-detail-who h4 i,
.service-detail-examples h4 i {
    margin-right: 0.5rem;
}

.service-detail-who ul,
.service-detail-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-who ul li,
.service-detail-examples ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.service-detail-who ul li::before,
.service-detail-examples ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-cta {
    margin-top: 2rem;
}

.services-cta-section {
    padding: 80px 0;
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   Enhanced Service Cards
   ============================================ */

.service-enhanced-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.service-enhanced-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-enhanced-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-enhanced-card:hover .service-enhanced-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scale(1.1);
}

.service-enhanced-card:hover .service-enhanced-icon i {
    color: #ffffff;
}

.service-enhanced-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.service-enhanced-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-enhanced-details {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-what-includes,
.service-who-helps,
.service-examples {
    margin-bottom: 1.25rem;
}

.service-what-includes h4,
.service-who-helps h4,
.service-examples h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-what-includes h4 i,
.service-who-helps h4 i,
.service-examples h4 i {
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.service-what-includes ul,
.service-who-helps ul,
.service-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-what-includes ul li,
.service-who-helps ul li,
.service-examples ul li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-what-includes ul li::before,
.service-who-helps ul li::before,
.service-examples ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-enhanced-cta {
    margin-top: auto;
}

.service-enhanced-cta .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-enhanced-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 47, 149, 0.3);
}

@media (max-width: 768px) {
    .page-header .page-title {
        font-size: 2rem;
    }
    
    .page-header .page-subtitle {
        font-size: 1rem;
    }
    
    .services-page-section {
        padding: 60px 0;
    }
    
    .service-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .service-detail-icon i {
        font-size: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    .service-detail-description {
        font-size: 1rem;
    }
    
    .services-cta-title {
        font-size: 2rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-cta-buttons .btn {
        width: 100%;
    }
    
    .service-enhanced-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-enhanced-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-enhanced-icon i {
        font-size: 1.5rem;
    }
    
    .service-enhanced-title {
        font-size: 1.15rem;
    }
    
    .service-enhanced-description {
        font-size: 0.9rem;
    }
    
    .service-what-includes h4,
    .service-who-helps h4,
    .service-examples h4 {
        font-size: 0.9rem;
    }
    
    .service-what-includes ul li,
    .service-who-helps ul li,
    .service-examples ul li {
        font-size: 0.85rem;
    }
}

/* ============================================
   NDIS Farsi Page Styles
   ============================================ */

.farsi-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.farsi-intro-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.farsi-intro-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.farsi-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.farsi-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.farsi-languages-section,
.farsi-stories-section,
.farsi-services-section {
    padding: 80px 0;
}

.farsi-section-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.farsi-section-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

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

.farsi-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.farsi-language-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.farsi-language-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.farsi-language-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.farsi-language-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.farsi-language-card:hover .farsi-language-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scale(1.1);
}

.farsi-language-card:hover .farsi-language-icon i {
    color: #ffffff;
}

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

.farsi-language-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.farsi-story-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.farsi-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.farsi-story-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.farsi-story-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

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

.farsi-story-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.farsi-story-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.farsi-story-list li {
    padding: 0.75rem 0;
    padding-left: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.farsi-story-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.farsi-story-example {
    background: rgba(102, 47, 149, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.farsi-service-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.farsi-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.farsi-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.farsi-service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.farsi-service-item:hover .farsi-service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scale(1.1);
}

.farsi-service-item:hover .farsi-service-icon i {
    color: #ffffff;
}

.farsi-service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.farsi-service-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.farsi-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.05), rgba(255, 165, 0, 0.05));
}

.farsi-cta-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.farsi-cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(102, 47, 149, 0.3);
}

.farsi-cta-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.farsi-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.farsi-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.farsi-cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.farsi-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 47, 149, 0.3);
}

.farsi-cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.farsi-cta-note i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .farsi-intro-section,
    .farsi-languages-section,
    .farsi-stories-section,
    .farsi-services-section {
        padding: 60px 0;
    }
    
    .farsi-intro-title,
    .farsi-section-title {
        font-size: 2rem;
    }
    
    .farsi-intro-text,
    .farsi-section-subtitle {
        font-size: 1rem;
    }
    
    .farsi-language-card,
    .farsi-story-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .farsi-language-icon,
    .farsi-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .farsi-language-icon i,
    .farsi-service-icon i {
        font-size: 1.5rem;
    }
    
    .farsi-cta-section {
        padding: 60px 0;
    }
    
    .farsi-cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .farsi-cta-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .farsi-cta-icon i {
        font-size: 2rem;
    }
    
    .farsi-cta-title {
        font-size: 1.75rem;
    }
    
    .farsi-cta-text {
        font-size: 1rem;
    }
    
    .farsi-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .farsi-cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Participant Stories Section (Blog Page)
   ============================================ */

.participant-stories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.stories-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

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

.stories-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.participant-story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.participant-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.story-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.story-quote-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.story-content {
    flex: 1;
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-author-avatar i {
    color: #ffffff;
    font-size: 1.25rem;
}

.story-author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.story-author-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.story-permission-note {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    align-items: center;
    margin-top: auto;
}

.story-permission-note i {
    color: #28a745;
    font-size: 0.9rem;
}

.stories-disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(102, 47, 149, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.stories-disclaimer i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .participant-stories-section {
        padding: 60px 0;
    }
    
    .stories-section-title {
        font-size: 2rem;
    }
    
    .stories-section-subtitle {
        font-size: 1rem;
    }
    
    .participant-story-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .story-quote-icon i {
        font-size: 1.25rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .story-author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .story-author-info h5 {
        font-size: 1rem;
    }
}

/* ============================================
   Helpful Information Section (Blog Page)
   ============================================ */

.helpful-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.helpful-info-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.helpful-info-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.helpful-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.helpful-info-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.helpful-article-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.helpful-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.article-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.article-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.helpful-article-card:hover .article-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scale(1.1);
}

.helpful-article-card:hover .article-icon i {
    color: #ffffff;
}

.helpful-article-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content {
    flex: 1;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content h4:first-child {
    margin-top: 0;
}

.article-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.article-list li {
    padding: 0.5rem 0;
    padding-left: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.article-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.article-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.article-cta .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.article-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 47, 149, 0.3);
}

@media (max-width: 768px) {
    .helpful-info-section {
        padding: 60px 0;
    }
    
    .helpful-info-title {
        font-size: 2rem;
    }
    
    .helpful-info-subtitle {
        font-size: 1rem;
    }
    
    .helpful-article-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .article-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .article-icon i {
        font-size: 1.75rem;
    }
    
    .helpful-article-card h3 {
        font-size: 1.5rem;
    }
    
    .article-intro {
        font-size: 1rem;
    }
    
    .article-content h4 {
        font-size: 1.1rem;
    }
    
    .article-content p,
    .article-list li {
        font-size: 0.95rem;
    }
}

/* ============================================
   Contact Section Enhancements
   ============================================ */

.whatsapp-button-wrapper {
    margin-top: 1.5rem;
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.25rem;
}

.response-time-notice {
    padding: 1rem;
    background: rgba(102, 47, 149, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.response-time-notice p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

.response-time-notice i {
    color: var(--primary-color);
}

.response-time-notice strong {
    color: var(--primary-color);
}

/* ============================================
   Contact FAQ Section
   ============================================ */

.contact-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-header-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.faq-header-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

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

.faq-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-faq-section .faq-items,
.contact-faq-section .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.contact-faq-section .faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.contact-faq-section .faq-item:hover {
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-3px);
    border-color: rgba(102, 47, 149, 0.3);
}

.contact-faq-section .faq-question {
    margin-bottom: 1rem;
}

.contact-faq-section .faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
}

.contact-faq-section .faq-question i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-faq-section .faq-answer {
    padding-left: 2rem;
}

.contact-faq-section .faq-answer p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-faq-section .faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Accordion Styles */
.contact-faq-section .faq-accordion .accordion {
    border: none;
}

.contact-faq-section .faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px !important;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 25px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-section .faq-accordion .accordion-item:hover {
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(102, 47, 149, 0.3);
}

.contact-faq-section .faq-accordion .accordion-item:first-of-type {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.contact-faq-section .faq-accordion .accordion-item:last-of-type {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    margin-bottom: 0;
}

.contact-faq-section .faq-accordion .accordion-button {
    background: #ffffff;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-faq-section .faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.05), rgba(255, 165, 0, 0.05));
    color: var(--primary-color);
    box-shadow: none;
}

.contact-faq-section .faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

.contact-faq-section .faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366295f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

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

.contact-faq-section .faq-accordion .accordion-button i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.contact-faq-section .faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--primary-color);
}

.contact-faq-section .faq-accordion .accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: #ffffff;
}

.contact-faq-section .faq-accordion .accordion-body p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-faq-section .faq-accordion .accordion-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-cta {
    margin-top: 3rem;
}

.faq-cta .lead {
    color: var(--text-dark);
    font-weight: 500;
}

.faq-cta .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 47, 149, 0.3);
}

@media (max-width: 768px) {
    .contact-faq-section {
        padding: 60px 0;
    }
    
    .faq-section-title {
        font-size: 2rem;
    }
    
    .faq-section-subtitle {
        font-size: 1rem;
    }
    
    .contact-faq-section .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-faq-section .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .contact-faq-section .faq-answer {
        padding-left: 1.5rem;
    }
    
    .contact-faq-section .faq-answer p {
        font-size: 0.95rem;
    }
    
    .contact-faq-section .faq-accordion .accordion-button {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .contact-faq-section .faq-accordion .accordion-body {
        padding: 1.25rem 1.5rem 1.75rem;
    }
    
    .contact-faq-section .faq-accordion .accordion-body p {
        font-size: 0.95rem;
    }
    
    .whatsapp-btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .response-time-notice {
        padding: 0.875rem;
    }
    
    .response-time-notice p {
        font-size: 0.95rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-page-badge {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-page-badge i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.contact-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-method-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(102, 47, 149, 0.4);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 47, 149, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-method-icon.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.2));
}

.contact-method-icon.whatsapp-icon i {
    color: #25D366;
}

.contact-method-card:hover .contact-method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--bright-orange));
    transform: scale(1.1);
}

.contact-method-card:hover .contact-method-icon i {
    color: #ffffff;
}

.contact-method-card:hover .contact-method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #20BA5A);
}

.contact-method-card:hover .contact-method-icon.whatsapp-icon i {
    color: #ffffff;
}

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

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--bright-orange);
    text-decoration: underline;
}

.contact-method-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 47, 149, 0.1);
}

.contact-form .btn {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 47, 149, 0.3);
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 60px 0;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 1rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-method-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .contact-method-icon i {
        font-size: 1.75rem;
    }
    
    .contact-method-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
.services-callout .d-flex{
    flex-direction: column;
}


}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
    background-color: rgb(102 47 149) !important;
   
}


.wp-block-button__link {
    color: #fff;
    background-color: #662f95!important;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #662f95!important;
    font-size: 1.25em;
}
.theme-btn{
	    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color:#FFFFFF;
	
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
padding: 1rem 2rem;
    font-size: 1.1rem;
}
/* ============================================
   WhatsApp Chat Button
   ============================================ */

.whatsapp-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-chat-btn:hover, .whatsapp-chat-btn:focus {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    outline: 3px solid rgba(37, 211, 102, 0.3);
}
.service-image-container{
	margin-bottom:20px;
}