/*
 * openboxmail360.com - Custom Styles
 * Primary colors: Blue and Orange
 * Fonts: Montserrat (main), Poppins (headings)
 */

/* ===== VARIABLES ===== */
:root {
    /* Modern Blue Color Palette */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #60a5fa;
    --primary-blue-lighter: #dbeafe;
    
    /* Modern Orange Color Palette */
    --accent-orange: #f97316;
    --accent-orange-dark: #ea580c;
    --accent-orange-light: #fb923c;
    --accent-orange-lighter: #ffedd5;
    
    /* Neutral Colors */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #f8f9fa;
    --bg-lighter: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue-dark);
}

/* ===== HEADER STYLES ===== */
.main-header {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
    transition: transform 0.5s ease-out;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(249, 115, 22, 0.8) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    min-height: 300px;
}

header .logo h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-blue-dark) !important;
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.5rem;
    left: 50%;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.1);
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--primary-blue-dark);
}

/* ===== HERO HEADER STYLES ===== */
.hero-header {
    position: relative;
    padding: 5rem 0 3rem;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Responsive hero header */
@media (max-width: 768px) {
    .hero-header {
        padding: 4rem 0 2rem;
        min-height: 35vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-header {
        padding: 3rem 0 2rem;
        min-height: 30vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.05;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Parallax background for hero section */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    opacity: 0.1;
}

.hero-section h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-section .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-section .btn-outline-secondary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-section img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-section img:hover {
    transform: scale(1.03);
}

/* ===== FEATURES SECTION STYLES ===== */
.features-section {
    background-color: var(--bg-lighter);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 5rem 0;
    will-change: background-position;
    transition: background-position 0.5s ease-out;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(249, 115, 22, 0.03) 100%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

/* Parallax background for features section */
.features-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    opacity: 0.05;
}

.features-section .card {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--bg-lighter);
    height: 100%;
}

.features-section .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.features-section .card-body {
    padding: 2rem;
}

.features-section .card-title {
    color: var(--text-dark);
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.features-section .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.features-section .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.features-section .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.features-section .feature-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.features-section .card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.features-section .card:hover .feature-image {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.features-section .feature-icon i {
    font-size: 2rem;
}

.features-section .card-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
    background-color: var(--bg-lighter);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 5rem 0;
    will-change: background-position;
    transition: background-position 0.5s ease-out;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(249, 115, 22, 0.03) 100%);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* Parallax background for about section */
.about-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    opacity: 0.05;
}

.about-section h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.about-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.about-section img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-section img:hover {
    transform: scale(1.03);
}

/* About Section Specific Image Styles */
.about-section .about-img-main {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    margin-bottom: 1.5rem;
}

.about-section .about-img-secondary {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    margin-bottom: 1.5rem;
}

.about-section .about-img-main:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

.about-section .about-img-secondary:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments for about section images */
@media (max-width: 991.98px) {
    .about-section .about-img-main,
    .about-section .about-img-secondary {
        margin-bottom: 2rem;
        max-height: 400px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767.98px) {
    .about-section .about-img-main,
    .about-section .about-img-secondary {
        margin-bottom: 1.5rem;
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }
    
    .about-section .order-lg-1 {
        order: 1 !important;
    }
    
    .about-section .order-lg-2 {
        order: 2 !important;
    }
}

@media (max-width: 575.98px) {
    .about-section .about-img-main,
    .about-section .about-img-secondary {
        margin-bottom: 1rem;
        max-height: 250px;
        width: 100%;
        object-fit: cover;
    }
}

/* ===== PRICING SECTION STYLES ===== */
.pricing-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 5rem 0;
    will-change: background-position;
    transition: background-position 0.5s ease-out;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Parallax background for pricing section */
.pricing-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    opacity: 0.05;
}

.pricing-section .card {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--bg-lighter);
    height: 100%;
}

.pricing-section .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-section .card.border-primary {
    border: 2px solid var(--primary-blue);
}

/* Premium Plan Styles */
.pricing-section .premium-plan {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-orange);
}

.pricing-section .premium-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.pricing-section .card-body {
    padding: 2rem;
}

.pricing-section .card-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.pricing-section .price-tag {
    font-family: 'Poppins', sans-serif;
    margin: 1.5rem 0;
}

.pricing-section .price-tag .currency {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 1;
}

.pricing-section .price-tag .amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-section .premium-plan .price-tag .amount {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-section .price-tag .period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-section .list-unstyled {
    margin-bottom: 1.5rem;
}

.pricing-section .list-unstyled li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-section .list-unstyled li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.pricing-section .premium-plan .list-unstyled li:before {
    color: var(--accent-orange);
}

.pricing-section .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.pricing-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pricing-section .btn-outline-primary {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.pricing-section .btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== TEAM SECTION STYLES ===== */
.testimonials-section {
    background-color: var(--bg-lighter);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    will-change: background-position;
    transition: background-position 0.5s ease-out;
}

/* Parallax background for team section */
.team-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    opacity: 0.05;
}

.team-section .team-card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-section .team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-section .team-member-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Team Member Photo Specific Styles */
.team-section .team-member-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.team-section .team-member-photo:hover {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.team-section .team-card:hover .team-member-photo {
    transform: scale(1.1);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-xl);
}

/* Team member photo animation delays */
.team-section .team-member-photo.animate__delay-1s {
    animation-delay: 0.2s;
}

.team-section .team-member-photo.animate__delay-2s {
    animation-delay: 0.4s;
}

.team-section .team-member-photo.animate__delay-3s {
    animation-delay: 0.6s;
}

/* Pricing section images */
.pricing-section .card-body img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.pricing-section .card:hover .card-body img {
    transform: scale(1.05);
}

/* Contact section images */
.contact-section .contact-info img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.contact-section .contact-info img:hover {
    transform: scale(1.02);
}

.team-section .team-card:hover .team-member-img img {
    transform: scale(1.05);
    border-color: var(--primary-blue-light);
}

.team-section .card-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.team-section .team-position {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-section .card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.team-section .team-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-section .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.team-section .social-link:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    background-color: var(--bg-lighter);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    will-change: background-position;
    transition: background-position 0.5s ease-out;
}

/* Parallax background for contact section */
.contact-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    opacity: 0.05;
}

.contact-section .form-control {
    border-radius: 0.25rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-section .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.contact-section .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-section .btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.contact-section .contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-section .contact-info p {
    margin-bottom: 0;
}

/* Contact Info Styles */
.contact-info .d-flex {
    transition: transform 0.3s ease;
}

.contact-info .d-flex:hover {
    transform: translateX(5px);
}

.contact-info i {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.contact-info .d-flex:hover i {
    color: var(--accent-orange);
}

/* Footer Contact Styles */
footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

footer i {
    width: 20px;
    color: var(--primary-blue);
    margin-right: 10px;
    transition: color 0.3s ease;
}

footer p:hover i {
    color: var(--accent-orange);
}

/* Responsive adjustments for contact info */
@media (max-width: 767.98px) {
    .contact-info .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .contact-info .d-flex:hover {
        transform: none;
    }
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-secondary {
    color: var(--text-dark);
    border-color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: var(--text-dark);
}

/* ===== FORM STYLES ===== */
.form-control {
    border-radius: 0.25rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ===== LOGIN MODAL STYLES ===== */
#loginModal .modal-content {
    border-radius: 0.5rem;
    border: none;
    box-shadow: var(--shadow-lg);
}

#loginModal .modal-header {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: none;
}

#loginModal .modal-title {
    font-weight: 600;
}

#loginModal .btn-close {
    filter: brightness(0) invert(1);
}

#loginModal .modal-body {
    padding: 2rem;
}

#loginModal .modal-footer {
    background-color: var(--bg-light);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

#loginModal .form-control {
    border-radius: 0.25rem;

/* ===== ABOUT PAGE STYLES ===== */
.team-photo {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border: 2px solid var(--bg-light);
    transition: transform 0.3s ease, border-color 0.3s ease;
    max-width: 80px !important;
    max-height: 80px !important;
}

.team-card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

.contact-card {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-item {
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: var(--bg-light);
}

.contact-item i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--accent-orange);
}

.value-item {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item h4 i {
    width: auto;
    margin-right: 0.5rem;
}

/* About section specific styles */
.about-section .display-4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section .lead {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.features-section .card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-section .display-5 {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-section .display-5 {
    color: var(--text-dark);
    font-weight: 700;
}

/* Responsive adjustments for about page */
@media (max-width: 767.98px) {
    .team-photo {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }
    
    .contact-item {
        margin-bottom: 2rem;
    }
    
    .value-item {
        margin-bottom: 2rem;
    }
}
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#loginModal .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

#loginModal .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#loginModal .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

#loginModal .form-check-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

#loginModal .btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

#loginModal .btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

#loginModal .modal-footer a {
    color: var(--primary-blue);
    font-weight: 500;
}

#loginModal .modal-footer a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* ===== REGISTER MODAL STYLES ===== */
#registerModal .modal-content {
    border-radius: 0.5rem;
    border: none;
    box-shadow: var(--shadow-lg);
}

#registerModal .modal-header {
    background-color: var(--accent-orange);
    color: white;
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: none;
}

#registerModal .modal-title {
    font-weight: 600;
}

#registerModal .btn-close {
    filter: brightness(0) invert(1);
}

#registerModal .modal-body {
    padding: 2rem;
}

#registerModal .modal-footer {
    background-color: var(--bg-light);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

#registerModal .form-control {
    border-radius: 0.25rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#registerModal .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

#registerModal .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#registerModal .form-check-input:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

#registerModal .form-check-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

#registerModal .btn-primary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

#registerModal .btn-primary:hover {
    background-color: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
}

#registerModal .modal-body a {
    color: var(--primary-blue);
    font-weight: 500;
}

#registerModal .modal-body a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

#registerModal .text-center a {
    color: var(--primary-blue);
    font-weight: 500;
}

#registerModal .text-center a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    .main-header {
        min-height: 250px;
    }
    
    .header-content {
        min-height: 250px;
        padding: 1.5rem 0;
    }
    
    header .logo h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .features-section,
    .pricing-section,
    .team-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    /* Disable parallax on tablets for better performance */
    .hero-section,
    .features-section,
    .pricing-section,
    .team-section,
    .contact-section,
    .header-background {
        background-attachment: scroll;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .main-header {
        min-height: 200px;
    }
    
    .header-content {
        min-height: 200px;
        padding: 1rem 0;
        text-align: center;
    }
    
    header .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
        max-height: 300px;
        object-fit: cover;
    }
    
    .features-section,
    .pricing-section,
    .team-section,
    .contact-section {
        padding: 2rem 0;
    }
    
    .pricing-section .price-tag .amount {
        font-size: 2.5rem;
    }
    
    .pricing-section .premium-plan {
        transform: scale(1.02);
    }
    
    .pricing-section .premium-plan:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    /* Disable parallax on mobile devices for better performance */
    .hero-section,
    .features-section,
    .pricing-section,
    .team-section,
    .contact-section,
    .header-background {
        background-attachment: scroll;
        will-change: auto;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .main-header {
        min-height: 180px;
    }
    
    .header-content {
        min-height: 180px;
        padding: 0.8rem 0;
    }
    
    header .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    .hero-section .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-section .price-tag .amount {
        font-size: 2rem;
    }
    
    .pricing-section .premium-plan {
        transform: scale(1);
    }
    
    .pricing-section .premium-plan:hover {
        transform: scale(1) translateY(-5px);
    }
    
    .pricing-section .card {
        margin-bottom: 1.5rem;
    }
    
    .features-section .feature-icon img {
        max-height: 60px;
        width: auto;
    }
    
    /* Responsive team member photos */
    .team-section .team-member-photo {
        width: 120px;
        height: 120px;
    }
    
    .pricing-section .card-body img {
        max-height: 80px;
        width: auto;
    }
    
    .contact-section .contact-info img {
        max-height: 200px;
        width: auto;
    }
}

/* ===== PRIVACY POLICY & TERMS OF SERVICE STYLES ===== */
.table-of-contents {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.table-of-contents h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table-of-contents .nav-link {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.table-of-contents .nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 102, 204, 0.1);
    padding-left: 0.5rem;
}

.privacy-policy-content h1,
.terms-of-service-content h1 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-policy-content h2,
.terms-of-service-content h2 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.privacy-policy-content h3,
.terms-of-service-content h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-content p,
.terms-of-service-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.privacy-policy-content ul,
.terms-of-service-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-policy-content li,
.terms-of-service-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.privacy-policy-content .lead,
.terms-of-service-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0.25rem;
}

.privacy-policy-content section,
.terms-of-service-content section {
    scroll-margin-top: 100px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments for privacy policy and terms of service pages */
@media (max-width: 991.98px) {
    .table-of-contents {
        margin-bottom: 2rem;
    }
    
    .table-of-contents .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .table-of-contents .nav-link {
        padding: 0.25rem 0.75rem;
        background-color: rgba(37, 99, 235, 0.05);
        border-radius: 0.25rem;
    }
}

@media (max-width: 767.98px) {
    .table-of-contents {
        padding: 1rem;
    }
    
    .table-of-contents h4 {
        font-size: 1.1rem;
    }
    
    .table-of-contents .nav-link {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }
    
    .privacy-policy-content h1,
    .terms-of-service-content h1 {
        font-size: 1.75rem;
    }
    
    .privacy-policy-content h2,
    .terms-of-service-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-policy-content h3,
    .terms-of-service-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .table-of-contents {
        margin-bottom: 1.5rem;
        padding: 0.75rem;
    }
    
    .table-of-contents h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .table-of-contents .nav-link {
        font-size: 0.85rem;
        padding: 0.2rem 0.5rem;
    }
    
    .privacy-policy-content h1,
    .terms-of-service-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .privacy-policy-content h2,
    .terms-of-service-content h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-policy-content h3,
    .terms-of-service-content h3 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .privacy-policy-content p,
    .terms-of-service-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .privacy-policy-content ul,
    .terms-of-service-content ul {
        padding-left: 1.25rem;
    }
    
    .privacy-policy-content li,
    .terms-of-service-content li {
        font-size: 0.9rem;
    }
    
    .privacy-policy-content .lead,
    .terms-of-service-content .lead {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

/* ===== PAGE HEADER STYLES ===== */
.page-header {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85) 0%, rgba(155, 89, 182, 0.85) 50%, rgba(230, 126, 34, 0.85) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    margin-top: 100px;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header .breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

/* Hero buttons styling for main page */
.hero-buttons {
    margin-top: 1rem;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0.5rem;
    min-width: 200px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Call-to-action enhancement */
.hero-buttons .btn-primary::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover::after {
    transform: translateX(3px);
}

.page-header .breadcrumb-item.active {
    color: var(--accent-orange);
    font-weight: 500;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

/* Responsive adjustments for page header */
@media (max-width: 768px) {
    .page-header {
        padding: 0;
        min-height: 50vh;
    }
    
    .page-title {
        font-size: 3.2rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 5rem 0 3rem;
        min-height: 55vh;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}