/* Modern Typography System */
:root {
    --heading-font: "Poppins", "Montserrat", "Roboto Condensed", sans-serif;
    --body-font: "Open Sans", "Roboto", sans-serif;
    --heading-weight: 600;
    --body-weight: 400;
}

/* Professional Color Hierarchy */
:root {
    /* Primary Colors */
    --dark-blue: #1a365d;      /* Header & Navigation - Corporate & Strong */
    --deep-red: #c53030;       /* Primary Buttons & Footer - Brand Energy */
    --pure-white: #ffffff;     /* Clean Background */
    --light-gray: #f7fafc;     /* Very Light Gray Background */
    
    /* Secondary Colors */
    --dark-blue-hover: #2d3748; /* Dark Blue Hover State */
    --deep-red-hover: #e53e3e;  /* Red Hover State */
    --text-dark: #2d3748;       /* Dark Text for readability */
    --text-light: #4a5568;      /* Light Text for secondary content */
    
    /* Existing Brand Colors (for compatibility) */
    --brand-orange: var(--deep-red);  /* Replaced with deep red */
    --brand-dark: #1a1a1a;
    --brand-white: #ffffff;
}

/* Typography Base Styles */
body {
    font-family: var(--body-font);
    font-weight: var(--body-weight);
    line-height: 1.6;
    background-color: var(--pure-white);
    color: var(--text-dark);
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-weight);
    line-height: 1.3;
}

/* Section Titles - Uppercase */
.section-title,
.section-header h2,
.hero-title,
h1.hero-title,
h2.section-title {
    text-transform: uppercase !important;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SEO and Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Improved focus states for accessibility */
*:focus {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--brand-orange);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Print styles */
@media print {
    .modern-navbar,
    .top-bar,
    .back-to-top,
    .footer-bottom {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}

:root {
    --brand-orange: var(--deep-red);  /* Replaced with deep red */
    --brand-dark: #2C2C2C;
    --brand-black: #1A1A1A;
    --brand-white: #FFFFFF;
    --brand-light-grey: #F8F9FA;
    --brand-orange-light: var(--deep-red-hover);  /* Replaced with deep red hover */
    --brand-orange-dark: var(--dark-blue);        /* Replaced with dark blue */
    --brand-dark-light: #404040;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--brand-dark);
    overflow-x: hidden;
    padding-top: 120px;
}

/* Top Bar */
.top-bar {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10001 !important;
}

.contact-info span {
    margin-right: 3rem;
    display: inline-block;
    white-space: nowrap;
}

.contact-info .contact-row-1 {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: nowrap;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--brand-orange);
}

.social-links {
    text-align: right;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
    transform: translateY(-8px);
}

.social-links a {
    color: var(--brand-white);
    margin: 0;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--brand-orange);
}


/* Modern Navigation Styles */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
}

.modern-navbar,
.modern-navbar.scrolled,
.modern-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
}

.modern-navbar:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98) !important;
    transform: translateY(-1px);
}

/* Modern Brand Styling */
.modern-brand {
    text-decoration: none !important;
    padding: 0 !important;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.brand-wrapper:hover {
    transform: scale(1.02);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.company-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.brand-wrapper:hover .company-name {
    color: var(--brand-orange);
    transform: translateX(2px);
}

.brand-wrapper:hover .company-subtitle {
    color: var(--brand-dark);
    transform: translateX(2px);
}

/* Logo Styles */
/* Modern Logo Styles */
.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-wrapper:hover .logo-img {
    transform: rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(197, 48, 48, 0.3));
}

/* Modern Navigation Links */
.modern-nav-collapse {
    margin-top: 0.5rem;
}

.modern-nav-list {
    gap: 0.5rem;
}

.modern-nav-link {
    position: relative;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.1) 0%, rgba(197, 48, 48, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.modern-nav-link:hover::before {
    opacity: 1;
}

.nav-text {
    position: relative;
    z-index: 2;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-nav-link:hover .nav-text {
    color: var(--deep-red);
    transform: translateY(-1px);
}

.modern-nav-link:hover .nav-indicator {
    width: 80%;
}

.modern-nav-link.active .nav-indicator {
    width: 80%;
}

.modern-nav-link.active .nav-text {
    color: var(--deep-red);
}

/* CTA Button in Navigation */
.cta-nav-item {
    margin-left: 1rem;
}

.modern-cta-link {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.modern-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-cta-link:hover::before {
    left: 100%;
}

.cta-text {
    position: relative;
    z-index: 2;
}

.modern-cta-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.4);
    color: white !important;
}

.modern-cta-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modern-cta-link:hover i {
    transform: translateX(3px);
}

/* Modern Toggle Button */
.modern-toggler {
    border: none !important;
    padding: 0.5rem !important;
    border-radius: 12px !important;
    background: rgba(197, 48, 48, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.modern-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(197, 48, 48, 0.25) !important;
}

.modern-toggler:hover {
    background: rgba(197, 48, 48, 0.2) !important;
    transform: scale(1.05);
}

.toggler-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--brand-dark);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-toggler:hover .toggler-line {
    background: var(--brand-orange);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--brand-dark) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    background: rgba(197, 48, 48, 0.1) !important;
    color: var(--brand-orange) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: rgba(197, 48, 48, 0.15) !important;
    color: var(--brand-orange) !important;
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--brand-orange);
    background: rgba(197, 48, 48, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(197, 48, 48, 0.25);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 44, 44, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--brand-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
    margin-top: -20px;
    isolation: isolate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(44, 44, 44, 0.6));
    z-index: 1;
}

.hero-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--body-font);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-white);
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--brand-white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(45deg) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.animate-slide-up-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--deep-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-family: var(--body-font);
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: var(--brand-white);
    position: relative;
}

.service-card {
    background: var(--brand-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(44, 45, 91, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

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

.service-card .card-title {
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: var(--brand-maroon);
    margin-bottom: 1.5rem;
}

/* Features Section */
.feature-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background: linear-gradient(135deg, var(--brand-maroon), var(--brand-navy));
    color: var(--brand-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 31, 35, 0.3);
}

.feature-item h5 {
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--brand-maroon);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(44, 45, 91, 0.05), rgba(139, 31, 35, 0.05));
}

.testimonials-section .section-title {
    color: var(--deep-red) !important;
}

.testimonial-card {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--brand-maroon);
    font-weight: bold;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

.testimonial-content p {
    font-style: italic;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--brand-navy);
}

.author-info span {
    color: var(--brand-maroon);
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--deep-red);
    border: none;
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--deep-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.4);
    color: var(--pure-white);
}

.btn-outline-primary {
    border: 2px solid var(--deep-red);
    color: var(--deep-red);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--deep-red);
    border-color: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
    color: var(--brand-white);
}

.btn-outline-light {
    border: 2px solid var(--brand-white);
    color: var(--brand-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--brand-white);
    color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(30deg);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--brand-white), var(--brand-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--brand-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

.footer-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-orange), transparent);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-orange);
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 12px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white) !important;
    font-size: 0.9rem;
}

.contact-item span {
    font-size: 0.95rem;
}

.contact-item:hover {
    color: var(--brand-white);
    transform: translateX(5px);
}

.footer-bottom {
    background: #000000;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--brand-orange);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* New Design Styles */
.text-orange {
    color: var(--brand-orange) !important;
}

.hero-image {
    position: relative;
    text-align: center;
    z-index: 3;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--brand-orange-dark);
}

.play-button i {
    color: var(--brand-white);
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Services Showcase Section */
.services-showcase {
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.05), rgba(44, 44, 44, 0.02));
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-top: 0;
    padding-top: 5rem;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--brand-orange);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-orange);
    color: var(--brand-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 0.8rem;
}

/* Service Categories */
.service-categories {
    margin-bottom: 3rem;
}

/* Category Card Link */
.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

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

.category-card {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 48, 48, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.15);
}

.category-card.active {
    background: var(--brand-orange);
    color: var(--brand-white);
    border-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-dark);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.category-card.active .category-icon {
    background: var(--brand-white);
    color: var(--brand-orange);
}

.category-card:hover .category-icon {
    background: var(--brand-orange);
    color: var(--brand-white);
    transform: scale(1.1);
}

.category-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.category-card.active h5,
.category-card.active p {
    color: var(--brand-white);
}

.category-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Modern Service Cards */
.service-card-modern {
    background: var(--brand-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(197, 48, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(197, 48, 48, 0.15);
    border-color: var(--brand-orange);
}

.service-card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: var(--brand-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(197, 48, 48, 0.3);
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(197, 48, 48, 0.4);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--brand-dark);
    color: var(--brand-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-body {
    padding: 0 2rem 1rem;
}

.service-card-body h5 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card-body p {
    color: var(--brand-dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--brand-dark-light);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--brand-orange);
    margin-right: 0.8rem;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.service-card-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(197, 48, 48, 0.1);
}

.service-price {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: var(--brand-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

/* Services CTA */
.services-cta {
    background: var(--brand-dark);
    color: var(--brand-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 48, 48, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.services-cta h4 {
    color: var(--brand-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.services-cta .btn {
    position: relative;
    z-index: 2;
}

/* Dream Section */
.dream-section {
    background: #16213e;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.dream-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: grid-move 20s linear infinite;
}

.dream-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 48, 48, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.dream-visual {
    position: relative;
    z-index: 2;
}

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

/* Floating animated elements */
.dream-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shape 12s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.floating-shape:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.floating-shape:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.floating-shape:nth-child(4) {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 70%;
    animation-delay: 9s;
    animation-duration: 14s;
}

.floating-shape:nth-child(5) {
    width: 18px;
    height: 18px;
    top: 70%;
    left: 60%;
    animation-delay: 12s;
    animation-duration: 16s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(15px) rotate(270deg);
        opacity: 0.7;
    }
}

.dream-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dream-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.dream-images img:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand-orange);
    color: var(--brand-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    z-index: 2;
}

.experience-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.dream-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
}

.dream-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 2rem;
}

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

.feature-item i {
    background: var(--deep-red);
    color: var(--brand-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--brand-white);
}

/* Dream section feature items - ensure white text */
.dream-section .feature-item span {
    color: var(--brand-white) !important;
    font-weight: 600;
}

/* Modern Statistics Showcase */
.modern-stats-showcase {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.modern-stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(197,48,48,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.stats-showcase-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 48, 48, 0.1);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 48, 48, 0.15);
    border-color: var(--deep-red);
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 48, 48, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card-modern:hover::before {
    left: 100%;
}

.stat-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.stat-card-modern:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.stat-icon-modern i {
    font-size: 2.5rem;
    color: var(--deep-red);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-icon-modern i {
    color: var(--deep-red-hover);
    transform: scale(1.1);
}

.stat-number-modern {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
}

.counter {
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--deep-red);
    margin-left: 0.25rem;
}

.stat-label-modern {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description-modern {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(197, 48, 48, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-modern {
    height: 100%;
    background: linear-gradient(90deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stats-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary-modern {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    color: var(--brand-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.4);
    color: var(--brand-white);
}

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

.btn-outline-modern:hover {
    background: var(--deep-red);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

/* Mobile Responsive for Modern Statistics Showcase */
@media (max-width: 768px) {
    .modern-stats-showcase {
        padding: 4rem 0;
    }
    
    .stats-showcase-header {
        margin-bottom: 3rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-bottom: 3rem;
    }
    
    .stat-card-modern {
        padding: 1.2rem 0.8rem;
        border-radius: 12px;
    }
    
    .stat-icon-modern {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .stat-icon-modern i {
        font-size: 1.2rem;
    }
    
    .stat-number-modern {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-suffix {
        font-size: 1rem;
    }
    
    .stat-label-modern {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-description-modern {
        font-size: 0.65rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary-modern,
    .btn-outline-modern {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .modern-stats-showcase {
        padding: 3rem 0;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .stat-card-modern {
        padding: 1rem 0.6rem;
    }
    
    .stat-icon-modern {
        width: 35px;
        height: 35px;
        margin-bottom: 0.6rem;
    }
    
    .stat-icon-modern i {
        font-size: 1rem;
    }
    
    .stat-number-modern {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-suffix {
        font-size: 0.9rem;
    }
    
    .stat-label-modern {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
    
    .stat-description-modern {
        font-size: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
}


/* Projects Section */
.projects-section {
    background: var(--brand-white);
    position: relative;
    z-index: 10;
}

.project-card {
    background: var(--brand-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 1.2rem;
}

.project-content {
    padding: 2rem;
}

.project-content h5 {
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--brand-dark-light);
    margin-bottom: 1.5rem;
}

/* Quality Section */
.quality-section {
    background: var(--brand-light-grey);
}

.quality-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.quality-features {
    margin-bottom: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quality-item i {
    background: var(--brand-orange);
    color: var(--brand-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.quality-item span {
    color: var(--brand-dark);
    font-weight: 500;
}

.quality-buttons {
    display: flex;
    gap: 1rem;
}

.quality-image {
    position: relative;
    text-align: center;
}

.quality-image img {
    width: 100%;
    border-radius: 15px;
}

/* Modern Team Section */
.team-section-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.team-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.team-section-modern::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 48, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Team Section Header */
.team-section-modern .section-header {
    position: relative;
    z-index: 3;
}

.team-section-modern .section-title {
    color: var(--brand-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.team-section-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.team-section-modern .section-badge {
    background: rgba(197, 48, 48, 0.2);
    color: var(--brand-orange);
    border: 1px solid rgba(197, 48, 48, 0.3);
    backdrop-filter: blur(10px);
}

/* Team Scroll Container */
.team-scroll-container {
    position: relative;
    margin: 2rem 0;
    z-index: 2;
}

.team-scroll-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.team-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.team-scroll-wrapper .team-card-modern {
    flex: 0 0 300px;
    min-width: 300px;
}

/* Team Scroll Navigation */
.team-scroll-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.scroll-btn {
    width: 60px;
    height: 60px;
    background: rgba(197, 48, 48, 0.9);
    color: var(--brand-white);
    border: 2px solid rgba(197, 48, 48, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
    position: relative;
    z-index: 3;
}

.scroll-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(197, 48, 48, 0.4);
}

.scroll-btn:active {
    transform: scale(0.95);
}

.team-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.team-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
    border-color: var(--brand-orange);
}

.team-card-header {
    position: relative;
    overflow: hidden;
}

.team-image-modern {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.team-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.9), rgba(44, 44, 44, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

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

.team-social a {
    width: 45px;
    height: 45px;
    background: var(--brand-white);
    color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.team-social a:hover {
    background: var(--brand-orange);
    color: var(--brand-white);
    transform: scale(1.1);
}

.team-card-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

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

.team-role {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    color: var(--brand-dark-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Team CTA */
.team-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
    padding: 4rem 3rem;
    border-radius: 25px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.1), rgba(197, 48, 48, 0.05));
    z-index: 1;
}

.team-cta h4 {
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    font-size: 2rem;
    font-weight: 700;
}

.team-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 3;
    font-size: 1.1rem;
}

.team-cta .btn {
    position: relative;
    z-index: 3;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.team-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(44, 44, 44, 0.4) 100%), url('/richbrothers/images/hero/hero-1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.services-hero .row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.services-hero .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--brand-orange);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

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

.services-hero .hero-title {
    color: var(--brand-white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
    width: auto;
    display: block;
}

.services-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

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

.services-hero .hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(44, 44, 44, 0.4) 100%), url('/richbrothers/images/hero/hero-1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-hero .row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.about-hero .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--brand-orange);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

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

.about-hero .hero-title {
    color: var(--brand-white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
    width: auto;
    display: block;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(44, 44, 44, 0.4) 100%), url('/richbrothers/images/hero/hero-1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-hero .row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.contact-hero .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0;
}


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

.contact-hero .hero-title {
    color: var(--brand-white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    width: auto;
    display: block;
}

.contact-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 1rem auto 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Professional Contact Page Styles */
.office-card {
    background: var(--brand-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(197, 48, 48, 0.1);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-orange);
}

.office-card.head-office {
    border: 2px solid var(--brand-orange);
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.05) 0%, rgba(197, 48, 48, 0.02) 100%);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.office-title h4 {
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.office-badge {
    background: var(--brand-orange);
    color: var(--brand-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

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

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

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

.contact-item i {
    width: 20px;
    color: var(--brand-orange);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: var(--brand-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--brand-dark-light);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-details a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.border-offices-title {
    color: var(--brand-dark);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.border-offices-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 2px;
}

.border-office-card {
    background: var(--brand-white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(197, 48, 48, 0.1);
}

.border-office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-orange);
}

.border-office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.border-office-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 1.2rem;
}

.border-office-header h5 {
    color: var(--brand-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.border-office-content {
    padding: 1rem 1.5rem 1.5rem;
}

.border-office-content .contact-item {
    margin-bottom: 1rem;
}

.border-office-content .contact-details a {
    font-size: 1.1rem;
    font-weight: 500;
}

.zambia-office {
    border: 2px solid var(--brand-orange);
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.05) 0%, rgba(197, 48, 48, 0.02) 100%);
}

/* Service Category Cards */
.service-category-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-category-card .category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--brand-white);
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon {
    transform: scale(1.1);
}

.service-category-card h4 {
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-category-card p {
    color: var(--brand-dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Service Card Images */
.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.service-category-card.active {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: var(--brand-white);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 48, 48, 0.3);
}

.service-category-card.active .category-icon {
    background: var(--brand-white);
    color: var(--brand-orange);
}

.service-category-card.active h4 {
    color: var(--brand-white);
}

.service-category-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

.service-price-badge {
    background: var(--brand-orange);
    color: var(--brand-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Service Stats Cards */
.service-stats-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.service-stats-card h4 {
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background: var(--brand-light-grey);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.1rem;
    color: var(--brand-white);
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--brand-dark-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-unit {
    font-size: 0.7rem;
    color: var(--brand-orange);
    font-weight: 600;
}

.performance-bar {
    margin-bottom: 1.5rem;
}

.performance-label {
    font-size: 0.9rem;
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.progress-container {
    position: relative;
    background: var(--brand-light-grey);
    border-radius: 25px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 25px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-orange);
}

.achievement-badge {
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-hover));
    color: var(--brand-white);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

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

/* Service Card Modern */
.service-card-modern {
    background: var(--brand-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    position: relative;
    overflow: hidden;
}

.service-image-modern {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.9), rgba(44, 44, 44, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--brand-white);
}

.service-card-body {
    padding: 2rem;
}

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

.service-role {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    color: var(--brand-dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-item i {
    color: var(--brand-orange);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.feature-item span {
    color: var(--brand-dark-light);
    font-size: 0.95rem;
}

.service-pricing {
    background: var(--brand-light-grey);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-pricing h5 {
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.service-pricing p {
    color: var(--brand-dark-light);
    margin: 0;
    font-size: 0.9rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
}

/* Process Steps Modern */
.process-step-modern {
    text-align: center;
    padding: 1.5rem;
    background: var(--brand-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-step-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--brand-white);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--brand-dark);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 1rem;
}

.process-step-modern h5 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.process-step-modern p {
    color: var(--brand-dark-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Detailed Services Page Styles */
.service-navigation {
    background: var(--brand-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.service-nav-tabs {
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.service-nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--brand-dark-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.service-nav-tabs .nav-link:hover {
    background: var(--brand-light-grey);
    color: var(--brand-dark);
}

.service-nav-tabs .nav-link.active {
    background: var(--brand-orange);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

.service-nav-tabs .nav-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-nav-tabs .nav-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Service Detail Content */
.service-detail-content {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.service-main-title {
    color: var(--brand-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-intro {
    color: var(--brand-dark-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-overview {
    margin-bottom: 3rem;
}

.service-overview h3 {
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-overview p {
    color: var(--brand-dark-light);
    line-height: 1.6;
}

.service-features-detailed {
    margin-bottom: 3rem;
}

.service-features-detailed h3 {
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-detail {
    background: var(--brand-light-grey);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-detail .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--brand-white);
}

.feature-detail h4 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-detail p {
    color: var(--brand-dark-light);
    line-height: 1.5;
    margin: 0;
}

.service-process {
    margin-bottom: 3rem;
}

.service-process h3 {
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.process-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-orange);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step .step-content h5 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step .step-content p {
    color: var(--brand-dark-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Service Types */
.service-types, .trade-routes, .cargo-types {
    margin-bottom: 3rem;
}

.service-types h3, .trade-routes h3, .cargo-types h3 {
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.clearance-type, .route-item, .cargo-type {
    background: var(--brand-light-grey);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.clearance-type h5, .route-item h5, .cargo-type h5 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.clearance-type p, .route-item p, .cargo-type p {
    color: var(--brand-dark-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.route-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-item ul li {
    color: var(--brand-dark-light);
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.pricing-card, .cta-card, .info-card {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.pricing-card h4, .cta-card h4, .info-card h5 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.price-label {
    color: var(--brand-dark-light);
    font-size: 0.9rem;
}

.price-value {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-card p {
    color: var(--brand-dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    color: var(--brand-dark-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 700;
}

/* Quote Form Sidebar */
.quote-form-sidebar {
    background: var(--brand-dark);
    color: var(--brand-white);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.quote-form-sidebar h4 {
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.quote-form-sidebar .form-control {
    background: var(--brand-dark-light);
    border: 1px solid var(--brand-dark-light);
    color: var(--brand-white);
    margin-bottom: 1rem;
}

.quote-form-sidebar .form-control:focus {
    background: var(--brand-dark-light);
    border-color: var(--brand-orange);
    color: var(--brand-white);
}

.quote-form-sidebar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Work Section */
.work-section {
    background: var(--brand-light-grey);
}

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.work-overlay h5 {
    margin: 0;
    font-weight: 600;
}

/* Brands Section */
.brands-section {
    background: var(--brand-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.brand-item {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-dark-light);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
    color: var(--brand-orange);
}

/* Blog Section */
.blog-section {
    background: var(--brand-light-grey);
}

.blog-card {
    background: var(--brand-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--brand-orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.blog-content h5 {
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--brand-dark-light);
    font-size: 0.9rem;
}

/* Back to Top Arrow */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--deep-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
    border: 2px solid #ffffff;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

.back-to-top i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .company-text {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .social-links {
        text-align: left;
        margin-top: 1rem;
    }
    
    /* Back to Top Arrow - Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-diagonal {
        display: none;
    }
    
    .dream-images {
        grid-template-columns: 1fr;
    }
    
    .dream-images img:first-child {
        grid-column: 1;
        height: 200px;
    }
    
    .experience-badge {
        position: relative;
        transform: none;
        margin: 2rem auto;
        width: fit-content;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .quality-buttons {
        flex-direction: column;
    }
    
    .service-categories .row {
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .services-cta .btn {
        display: block;
        margin: 0.5rem auto;
        width: fit-content;
    }
    
    .team-scroll-wrapper .team-card-modern {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .team-image-modern {
        height: 320px;
    }
    
    .team-card-body {
        padding: 1.5rem 1rem;
    }
    
    .team-name {
        font-size: 1.4rem;
    }
    
    .team-role {
        font-size: 1rem;
    }
    
    .team-description {
        font-size: 1rem;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .services-hero .hero-title {
        font-size: 2.5rem;
        text-align: center;
        width: auto;
        margin: 0 auto;
        display: block;
    }
    
    .services-hero {
        height: 25vh;
        background-attachment: scroll;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
        text-align: center;
        width: auto;
        margin: 0 auto;
        display: block;
    }
    
    .about-hero {
        height: 25vh;
        background-attachment: scroll;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
        text-align: center;
        width: auto;
        margin: 0 auto;
        display: block;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
        margin: 0.75rem auto 0;
    }
    
    .contact-hero {
        height: 25vh;
        background-attachment: scroll;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .office-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .office-title h4 {
        font-size: 1.3rem;
    }
    
    .office-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin: 0 auto;
    }
    
    .border-office-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .border-office-header i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .border-office-header h5 {
        font-size: 1.1rem;
    }
    
    .stats-grid-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-card-glass {
        min-width: 250px;
        max-width: 300px;
        padding: 2rem 1.5rem;
    }
    
    .stat-prefix {
        font-size: 3rem;
    }
    
    .stat-suffix {
        font-size: 1.8rem;
    }
    
    .service-category-card {
        padding: 2rem 1.5rem;
    }
    
    .service-category-card .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .service-stats-card {
        padding: 1.5rem;
        position: relative;
    }
    
    .stats-grid {
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .service-image-modern {
        height: 220px;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .process-step-modern {
        padding: 1.25rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-nav-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .service-nav-tabs .nav-link i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .service-detail-content {
        padding: 2rem 1.5rem;
    }
    
    .service-main-title {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step {
        min-width: auto;
    }
    
    .feature-detail {
        padding: 1.5rem;
    }
    
    .feature-detail .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .pricing-card, .cta-card, .info-card {
        padding: 1.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
}

.border-radius-custom {
    border-radius: 15px;
}

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

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

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange-dark);
}

/* Quote Form Styles */
.quote-form-container {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(44, 45, 91, 0.1);
    border: 1px solid rgba(44, 45, 91, 0.1);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(44, 45, 91, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.form-section-title i {
    color: var(--brand-maroon);
    background: rgba(139, 31, 35, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control, .form-select {
    border: 2px solid rgba(44, 45, 91, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-maroon);
    box-shadow: 0 0 0 0.2rem rgba(139, 31, 35, 0.25);
    transform: translateY(-2px);
}

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

.form-check {
    margin-bottom: 0.75rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 4px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

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

.form-check-label {
    font-weight: 500;
    color: var(--brand-navy);
    margin-left: 0.5rem;
}

/* Pricing Calculator Styles */
.pricing-calculator {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
    position: sticky;
    top: 100px;
}

.calculator-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.calculator-title i {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.estimate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.estimate-item:last-of-type {
    border-bottom: none;
}

.estimate-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-amount {
    font-size: 1.5rem;
    color: var(--deep-red);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.estimate-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--deep-red);
}

.estimate-note i {
    margin-right: 0.5rem;
    color: var(--deep-red);
}

/* Why Choose Us Styles */
.why-choose-us {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
}

.why-choose-us h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
    transform: translateX(5px);
}

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

.benefits-list i {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Form Validation Styles */
.is-valid {
    border-color: #28a745 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 1.87 1.87 3.95-3.95.94.94-4.89 4.89z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid {
    border-color: #dc3545 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.6.6.6-.6.6.6-.6.6.6.6-.6.6-.6-.6-.6.6-.6-.6.6-.6-.6-.6z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    display: block;
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive Design for Quote Form */
@media (max-width: 992px) {
    .pricing-calculator {
        position: static;
        margin-top: 2rem;
    }
    
    .quote-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .form-section-title {
        font-size: 1.1rem;
    }
    
    .form-section-title i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .calculator-title {
        font-size: 1.1rem;
    }
    
    .calculator-title i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .quote-form-container,
    .pricing-calculator,
    .why-choose-us {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .estimate-total {
        font-size: 1rem;
    }
    
    .total-amount {
        font-size: 1.2rem;
    }
}

/* Tracking Page Styles */
.tracking-form-container {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    text-align: center;
}

.tracking-form-header h3 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.tracking-form-header h3 i {
    color: var(--brand-maroon);
    background: rgba(139, 31, 35, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-form-header p {
    color: var(--brand-maroon);
    margin-bottom: 2rem;
}

.tracking-form .form-control-lg {
    border: 2px solid rgba(44, 45, 91, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tracking-form .form-control-lg:focus {
    border-color: var(--brand-maroon);
    box-shadow: 0 0 0 0.2rem rgba(139, 31, 35, 0.25);
    transform: translateY(-2px);
}

/* Shipment Info Card */
.shipment-info-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.shipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.shipment-header h4 {
    color: var(--brand-navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.shipment-header h4 i {
    color: var(--brand-maroon);
    background: rgba(139, 31, 35, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-number {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.detail-item label {
    font-weight: 600;
    color: var(--brand-navy);
    margin: 0;
}

.detail-item span {
    color: var(--brand-maroon);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
}

.status-in-transit {
    background: rgba(0, 123, 255, 0.2);
    color: #004085;
}

.status-delivered {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
}

/* Tracking Timeline */
.tracking-timeline {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
}

.tracking-timeline h4 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tracking-timeline h4 i {
    color: var(--brand-maroon);
    background: rgba(139, 31, 35, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-left: 3px solid #e9ecef;
    margin-left: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.tracking-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 45, 91, 0.1);
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e9ecef;
}

.tracking-item.current {
    border-left-color: var(--brand-maroon);
    background: rgba(0, 123, 255, 0.05);
    border-radius: 0 10px 10px 0;
    margin-left: 0;
    padding-left: 1rem;
}

.tracking-item.current::before {
    background: var(--brand-navy);
    box-shadow: 0 0 0 2px var(--brand-maroon);
    animation: pulse 2s infinite;
}

.tracking-item.completed {
    border-left-color: #28a745;
}

.tracking-item.completed::before {
    background: #28a745;
    box-shadow: 0 0 0 2px #28a745;
}

.tracking-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(44, 45, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-maroon);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tracking-item.current .tracking-icon {
    background: var(--brand-navy);
    color: var(--brand-white);
    transform: scale(1.1);
}

.tracking-item.completed .tracking-icon {
    background: #28a745;
    color: var(--brand-white);
}

.tracking-content h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--brand-navy);
}

.tracking-content p {
    margin: 0 0 0.25rem 0;
    color: var(--brand-navy);
    font-weight: 500;
}

.tracking-time {
    font-size: 0.85rem;
    color: var(--brand-maroon);
    display: block;
    margin-bottom: 0.5rem;
}

.tracking-description {
    font-size: 0.9rem;
    color: var(--brand-maroon);
    font-style: italic;
}

/* Sidebar Cards */
.delivery-estimate,
.support-card,
.quick-actions {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.delivery-estimate h5,
.support-card h5,
.quick-actions h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-estimate h5 i,
.support-card h5 i,
.quick-actions h5 i {
    color: var(--brand-maroon);
}

.delivery-date {
    text-align: center;
    margin-bottom: 1rem;
}

.delivery-date .date {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.delivery-date .time {
    display: block;
    color: var(--brand-maroon);
    font-size: 0.9rem;
}

.delivery-progress .progress {
    height: 8px;
    border-radius: 4px;
    background: rgba(44, 45, 91, 0.1);
}

.delivery-progress .progress-bar {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    border-radius: 4px;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--brand-maroon);
    text-align: center;
    display: block;
    margin-top: 0.5rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--brand-white);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: var(--brand-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: var(--brand-navy);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 45, 91, 0.3);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--brand-white);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: var(--brand-navy);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.action-btn:hover {
    background: var(--brand-navy);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 45, 91, 0.3);
}

/* Recent Shipments */
.recent-shipment-card {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

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

.shipment-number {
    font-weight: 600;
    color: var(--brand-maroon);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.shipment-route {
    color: var(--brand-maroon);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.shipment-status {
    margin-bottom: 1rem;
}

/* Responsive Design for Tracking */
@media (max-width: 768px) {
    .shipment-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tracking-item {
        margin-left: 0.5rem;
    }
    
    .tracking-item.current {
        margin-left: 0;
        padding-left: 0.75rem;
    }
    
    .support-options,
    .action-buttons {
        gap: 0.5rem;
    }
    
    .support-btn,
    .action-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Services Page Styles */
.service-detail-card {
    background: var(--brand-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 45, 91, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

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

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.service-content {
    padding: 2rem;
}

.service-title {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: var(--brand-maroon);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-features .feature-item i {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.service-features .feature-item span {
    color: var(--brand-navy);
    font-size: 0.9rem;
}

.service-pricing {
    background: linear-gradient(135deg, rgba(44, 45, 91, 0.05), rgba(139, 31, 35, 0.05));
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 2px solid rgba(44, 45, 91, 0.2);
}

.service-pricing h5 {
    color: var(--brand-maroon);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-pricing p {
    color: var(--brand-maroon);
    margin: 0;
    font-size: 0.9rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
}

.service-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Additional Services */
.additional-service-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

.additional-service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.additional-service-card:hover .service-icon {
    transform: scale(1.1);
}

.additional-service-card h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.additional-service-card p {
    color: var(--brand-maroon);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    background: linear-gradient(135deg, var(--brand-maroon), var(--brand-navy));
    color: var(--brand-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-maroon));
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.step-content h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--brand-maroon);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: var(--brand-white);
    color: var(--brand-maroon);
    border: 2px solid white;
}

.cta-buttons .btn-light:hover {
    background: var(--brand-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: var(--brand-white);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: var(--brand-white);
    color: var(--brand-maroon);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Services */
@media (max-width: 992px) {
    .service-actions {
        flex-direction: column;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        max-width: none;
        display: flex;
        align-items: center;
        gap: 2rem;
        text-align: left;
    }
    
    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .additional-service-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .additional-service-card {
        padding: 1rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* About Page Styles */

.about-title {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-subtitle {
    color: var(--brand-maroon);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-description {
    color: var(--brand-maroon);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-item h3 {
    color: var(--brand-maroon);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-stats .stat-item p {
    color: var(--brand-maroon);
    margin: 0;
    font-size: 0.9rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 45, 91, 0.1);
}

/* Mission Cards */
.mission-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

.mission-card:hover .card-icon {
    transform: scale(1.1);
}

.mission-card h3 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 2.2rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Value Cards */
.value-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h5 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Cards */
.team-card {
    background: var(--brand-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

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

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.team-content h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--brand-maroon);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--brand-maroon);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--brand-white);
    color: var(--brand-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-navy), var(--brand-maroon));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.timeline-content {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    margin: 0 2rem;
    flex: 1;
    border: 1px solid #e9ecef;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 2rem;
}

.timeline-content h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--brand-maroon);
    line-height: 1.6;
    margin: 0;
}

/* Certification Cards */
.certification-card {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

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

.cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-maroon), var(--brand-navy));
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.certification-card:hover .cert-icon {
    transform: scale(1.1);
}

.certification-card h6 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.certification-card p {
    color: var(--brand-maroon);
    font-size: 1rem;
    margin: 0;
}


.contact-title {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-subtitle {
    color: var(--brand-maroon);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 45, 91, 0.15);
}

.contact-info-card .contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-card h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--brand-maroon);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-header h3 i {
    color: var(--brand-maroon);
    background: rgba(139, 31, 35, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header p {
    color: var(--brand-maroon);
    margin: 0;
}

/* Map Container */
.map-container {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.map-container h4 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-container h4 i {
    color: var(--brand-maroon);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-info {
    background: var(--brand-white);
    border-radius: 10px;
    padding: 1rem;
    border-left: 4px solid var(--brand-maroon);
}

.map-info p {
    margin: 0;
    color: var(--brand-navy);
    line-height: 1.6;
}

.map-info i {
    color: var(--brand-maroon);
    margin-right: 0.5rem;
}

/* Office Hours */
.office-hours {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.office-hours h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-hours h5 i {
    color: var(--brand-maroon);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--brand-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(44, 45, 91, 0.1);
    transform: translateX(5px);
}

.hours-item.emergency {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.hours-item.emergency:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.1));
}

.hours-item span:first-child {
    font-weight: 500;
    color: var(--brand-navy);
}

.hours-item span:last-child {
    color: var(--brand-maroon);
    font-size: 0.9rem;
}

/* Quick Contact */
.quick-contact {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
}

.quick-contact h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-contact h5 i {
    color: var(--brand-maroon);
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--brand-white);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: var(--brand-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.quick-btn:hover {
    background: var(--brand-navy);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 45, 91, 0.3);
}

.quick-btn.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--brand-white);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--brand-navy);
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--brand-navy);
    color: var(--brand-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--brand-maroon);
    line-height: 1.6;
}

/* Responsive Design for About & Contact */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        padding: 0.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .about-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .mission-card,
    .value-card,
    .team-card,
    .certification-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .map-container,
    .office-hours,
    .quick-contact {
        padding: 1rem;
    }
    
    /* Contact Page Mobile Center Alignment */
    .office-card {
        text-align: center;
    }
    
    .office-card .contact-details {
        text-align: center;
    }
    
    .office-card .contact-details strong {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .office-title {
        text-align: center;
    }
    
    .office-title h4 {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .office-badge {
        display: inline-block;
        margin: 0 auto;
    }
    
    .office-content {
        text-align: center;
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .office-content .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .office-content .contact-item i {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .office-content .contact-details {
        text-align: center;
    }
    
    .office-content .contact-details strong {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .phone-numbers {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .phone-numbers a {
        text-align: center;
        display: block;
    }
    
    .border-office-card {
        text-align: center;
    }
    
    .border-office-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .border-office-header i {
        margin: 0 auto;
    }
    
    .border-office-header h5 {
        text-align: center;
        margin: 0;
    }
    
    .border-office-content {
        text-align: center;
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .border-office-content .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .border-office-content .contact-item i {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .border-office-card {
        text-align: center;
    }
    
    .border-office-card .contact-details {
        text-align: center;
    }
    
    .border-office-card .contact-details strong {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Additional Mobile Center Alignment Rules */
    .office-content .contact-details p {
        text-align: center;
    }
    
    .office-content .phone-numbers {
        align-items: center;
        text-align: center;
    }
    
    .office-content .phone-numbers a {
        text-align: center;
        display: block;
    }
    
    .office-content .contact-details a {
        text-align: center;
        display: block;
    }
    
    /* Congo Office Mobile Center Alignment */
    .office-card:not(.head-office) .office-content .contact-details p {
        text-align: center !important;
    }
    
    .office-card:not(.head-office) .office-content .contact-details a {
        text-align: center !important;
        display: block !important;
    }
    
    /* Force Mobile Center Alignment */
    @media (max-width: 768px) {
        .office-card .contact-details,
        .office-card .contact-details strong,
        .office-card .contact-details p,
        .office-card .contact-details a,
        .office-card .phone-numbers,
        .office-card .phone-numbers a {
            text-align: center !important;
        }
        
        .office-card .contact-details strong {
            display: block !important;
        }
        
        .office-card .phone-numbers a {
            display: block !important;
        }
    }
    
    .border-office-content .contact-details {
        text-align: center;
    }
    
    .border-office-content .contact-details a {
        text-align: center;
        display: block;
    }
    
    .border-offices-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Submission Page Styles */
.submission-container {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(44, 45, 91, 0.1);
    border: 1px solid #e9ecef;
    text-align: center;
}

/* Success State */
.submission-success {
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-maroon), var(--brand-navy));
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
    }
}

.success-title {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message {
    color: var(--brand-maroon);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Next Steps */
.next-steps {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.next-steps h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--brand-white);
    border-radius: 10px;
    border-left: 4px solid var(--brand-maroon);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-maroon));
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h6 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--brand-maroon);
    margin: 0;
    line-height: 1.5;
}

/* Error State */
.submission-error {
    margin-bottom: 2rem;
}

.error-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.error-title {
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.error-message {
    color: var(--brand-maroon);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.error-list {
    background: rgba(220, 53, 69, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.error-list h5 {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 1rem;
}

.error-list ul {
    margin: 0;
    padding-left: 1.5rem;
}

.error-list li {
    color: var(--brand-maroon);
    margin-bottom: 0.5rem;
}

/* Action Buttons */
.submission-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.submission-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 150px;
}

.submission-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Help Section */
.help-section {
    background: linear-gradient(135deg, rgba(44, 45, 91, 0.05), rgba(139, 31, 35, 0.05));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.help-section h5 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-section p {
    color: var(--brand-maroon);
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--brand-white);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: var(--brand-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
}

.contact-option:hover {
    background: var(--brand-navy);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 45, 91, 0.3);
    border-color: var(--brand-maroon);
}

.contact-option.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

.contact-option span {
    font-weight: 500;
}

/* Responsive Design for Submission Page */
@media (max-width: 768px) {
    .submission-container {
        padding: 2rem 1.5rem;
    }
    
    .success-icon,
    .error-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .success-title,
    .error-title {
        font-size: 1.5rem;
    }
    
    .submission-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .submission-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 250px;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .step-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .submission-container {
        padding: 1.5rem 1rem;
    }
    
    .success-icon,
    .error-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .success-title,
    .error-title {
        font-size: 1.3rem;
    }
    
    .next-steps,
    .help-section {
        padding: 1rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .team-section-modern {
        padding: 4rem 0;
    }
    
    .team-card-modern {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .scroll-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .team-cta {
        padding: 3rem 2rem;
    }
    
    .team-cta h4 {
        font-size: 1.8rem;
    }
    
    .team-cta p {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-visual {
        display: none;
    }
    
}

/* Why Choose Rich Brothers Limited Section */
.why-choose-section {
    background: var(--brand-light-grey);
    padding: 6rem 0;
}

.why-choose-section .section-title {
    color: var(--deep-red) !important;
}

/* About page section titles - ensure they are visible */
.about-page .section-title {
    color: var(--brand-dark) !important;
}

/* Modern Why Choose Us Section */
.why-choose-section-modern {
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--light-gray) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-choose-section-modern .container {
    position: relative;
    z-index: 2;
}

.why-choose-section-modern .section-title {
    color: var(--deep-red) !important;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-section-modern .section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

.advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 48, 48, 0.1);
}

.advantage-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--deep-red);
}

.advantage-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--deep-red-hover) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.advantage-item-modern:hover .advantage-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

.advantage-content-modern h4 {
    color: var(--brand-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: var(--heading-font);
}

.advantage-content-modern p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(197, 48, 48, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.why-choose-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--pure-white);
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Exact Why Choose Us Section */
.why-choose-exact {
    background: var(--pure-white);
    padding: 5rem 0;
}

.about-content {
    max-width: 500px;
}

.about-badge {
    background: var(--deep-red);
    color: var(--pure-white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-title {
    color: var(--brand-dark);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: var(--heading-font);
}

.about-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--brand-dark);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: var(--deep-red);
    transform: translateX(3px);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--deep-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-box:hover .feature-dot {
    background: var(--pure-white);
}

.feature-box span {
    color: var(--pure-white);
    font-size: 1rem;
    font-weight: 500;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-btn {
    background: var(--deep-red);
    color: var(--pure-white);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: var(--deep-red-hover);
    transform: translateY(-1px);
    color: var(--pure-white);
}

.about-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(2px);
}

.signature-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.signature-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--deep-red);
}

.signature-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-text {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
}

.about-image-container {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stats-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--deep-red);
    color: var(--pure-white);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.3);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stats-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Mobile Responsive Styles for Exact Why Choose Us */
@media (max-width: 768px) {
    .why-choose-exact {
        padding: 4rem 0;
    }
    
    .about-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .feature-box {
        padding: 0.6rem 0.8rem;
        justify-content: center;
    }
    
    .feature-box span {
        font-size: 0.95rem;
    }
    
    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .about-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .signature-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .stats-box {
        bottom: 15px;
        left: 15px;
        padding: 1rem 1.2rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-label {
        font-size: 0.9rem;
    }
}

/* Services Showcase Modern */
.services-showcase-modern {
    background: var(--pure-white);
    padding: 6rem 0;
}

.services-showcase-modern .section-title {
    color: var(--deep-red) !important;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-showcase-modern .section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    margin-bottom: 3rem;
}

.service-card-modern {
    background: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.service-icon-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--deep-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-overlay {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-content h4 {
    color: var(--brand-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: var(--heading-font);
    line-height: 1.3;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.btn-service-expand {
    width: 30px;
    height: 30px;
    background: var(--deep-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-service-expand:hover {
    background: var(--deep-red-hover);
    transform: scale(1.1);
    color: var(--pure-white);
}

/* Mobile Responsive Styles for Services Showcase Modern */
@media (max-width: 768px) {
    .services-showcase-modern {
        padding: 4rem 0;
    }
    
    .services-showcase-modern .section-title {
        font-size: 2.2rem !important;
    }
    
    .services-showcase-modern .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-icon-overlay {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 12px;
        right: 12px;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .service-content h4 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .btn-service-expand {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Mobile Responsive Styles for Why Choose Us Modern */
@media (max-width: 768px) {
    .why-choose-section-modern {
        padding: 4rem 0;
    }
    
    .why-choose-section-modern .section-title {
        font-size: 2.2rem !important;
        text-align: center;
    }
    
    .why-choose-section-modern .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .advantages-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .advantage-item-modern {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .advantage-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .advantage-content-modern h4 {
        font-size: 1.2rem;
    }
    
    .advantage-content-modern p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .why-choose-image {
        height: 350px;
        margin-top: 2rem;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
}

.advantage-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--brand-white);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-content h4 {
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-content p {
    color: var(--brand-dark-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(197, 48, 48, 0.1);
    color: var(--brand-orange);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(197, 48, 48, 0.2);
}

.competitive-advantages {
    margin: 4rem 0;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--brand-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.advantage-item h5 {
    color: var(--brand-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--brand-dark-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Benefits Card */
.service-benefits-card {
    background: var(--brand-white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 48, 48, 0.1);
    transition: all 0.3s ease;
}

.service-benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-orange);
}

.service-benefits-card h4 {
    color: var(--brand-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.service-benefits-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 2px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(197, 48, 48, 0.05);
    transform: translateX(5px);
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(197, 48, 48, 0.3);
}

.benefit-content {
    flex: 1;
}

.benefit-content h6 {
    color: var(--brand-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--brand-dark-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Stylish CTA Section */
.stylish-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stylish-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.stylish-cta-section::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 48, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 48, 48, 0.2);
    color: var(--brand-orange);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(197, 48, 48, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-title {
    color: var(--brand-white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--brand-white);
    font-weight: 600;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 1.1rem;
}

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

.btn-primary-modern,
.btn-secondary-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--deep-red), var(--deep-red-hover));
    color: var(--brand-white);
    box-shadow: 0 10px 30px rgba(197, 48, 48, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 48, 48, 0.4);
    color: var(--brand-white);
    text-decoration: none;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--brand-orange);
    color: var(--brand-white);
    text-decoration: none;
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.btn-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.cta-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
}

.floating-elements {
    position: relative;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--brand-white);
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 80px;
    left: 120px;
    animation-delay: 2s;
}

.card-3 {
    top: 160px;
    left: 60px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== HOMEPAGE MOBILE RESPONSIVENESS ===== */

/* Hero Section Mobile */
@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .hero-slider {
        min-height: 70vh !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 2rem 0;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content .col-lg-8 {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content .col-lg-8 > * {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-title-line-1 {
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-title-line-2 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem !important;
        width: 100% !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-subtitle-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Slider Navigation Mobile */
    .slider-navigation {
        display: none !important;
    }
    
    .slider-indicators {
        bottom: 20px !important;
    }
    
    .slider-indicators .indicator {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
}

/* Services Showcase Mobile */
@media (max-width: 768px) {
    .services-showcase {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Service Categories Mobile */
    .service-categories {
        width: 100% !important;
        overflow: hidden !important;
        margin-bottom: 2rem !important;
    }
    
    .service-categories .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 0.5rem 1rem !important;
        margin: 0 -1rem !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        touch-action: pan-x !important;
    }
    
    .service-categories .row::-webkit-scrollbar {
        display: none !important;
    }
    
    .service-categories .col-md-3 {
        flex: 0 0 auto !important;
        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        flex-shrink: 0 !important;
    }
    
    .category-card {
        padding: 1.5rem 1rem !important;
        text-align: center !important;
        white-space: normal !important;
        min-width: 200px !important;
        height: 100% !important;
        min-height: 180px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .category-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 1rem !important;
    }
    
    .category-icon i {
        font-size: 1.2rem !important;
    }
    
    .category-card h5 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }
    
    .category-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }
    
    /* Services CTA Extra Small Devices */
    .services-cta {
        padding: 1.5rem 0.75rem !important;
    }
    
    .services-cta h4 {
        font-size: 1.2rem !important;
    }
    
    .services-cta p {
        font-size: 0.85rem !important;
    }
    
    .services-cta .btn {
        max-width: 260px !important;
        padding: 0.7rem 1.25rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Service Details Mobile */
    .service-details {
        margin-top: 2rem !important;
    }
    
    .service-detail-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-detail-card h4 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-features {
        gap: 0.5rem !important;
    }
    
    .service-features li {
        font-size: 0.85rem !important;
        padding: 0.5rem 0 !important;
    }
}

/* Glassmorphism Stats Mobile */
@media (max-width: 768px) {
    .glassmorphism-stats-section {
        padding: 3rem 0 !important;
    }
    
    .stats-grid-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 1rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 0 1rem !important;
        margin: 0 -1rem !important;
    }
    
    .stats-grid-row::-webkit-scrollbar {
        display: none !important;
    }
    
    .stat-card-modern {
        flex: 0 0 auto !important;
        min-width: 200px !important;
        padding: 1.5rem 1rem !important;
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-description {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
}

/* Why Choose Us Mobile */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0 !important;
    }
    
    .why-choose-section .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 1rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 0 1rem !important;
        margin: 0 -1rem !important;
    }
    
    .why-choose-section .row::-webkit-scrollbar {
        display: none !important;
    }
    
    .why-choose-section .col-lg-3 {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 220px !important;
    }
    
    .why-choose-card {
        padding: 1.25rem 0.75rem !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        min-width: 200px !important;
    }
    
    .why-choose-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 0.75rem !important;
    }
    
    .why-choose-icon i {
        font-size: 1.3rem !important;
    }
    
    .why-choose-card h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .why-choose-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }
}

/* Professional Team Mobile */
@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0 !important;
    }
    
    .team-section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .team-section-header p {
        font-size: 0.9rem !important;
        margin-bottom: 2rem !important;
    }
    
    .team-scroll-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 0 !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        align-items: center !important;
    }
    
    .team-scroll-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    
    .team-card {
        width: 100% !important;
        max-width: 300px !important;
        min-width: auto !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding: 1.5rem !important;
    }
    
    .team-scroll-wrapper .team-card-modern {
        width: 100% !important;
        max-width: 300px !important;
        min-width: auto !important;
        flex: none !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .team-image {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 1rem !important;
    }
    
    .team-card h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .team-card .text-muted {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
    
    .team-card p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
    
    /* Hide scroll navigation on mobile */
    .team-scroll-nav {
        display: none !important;
    }
    
    
    .social-overlay {
        padding: 0.5rem !important;
    }
    
    .social-overlay a {
        width: 35px !important;
        height: 35px !important;
        margin: 0 0.25rem !important;
    }
    
    .social-overlay i {
        font-size: 0.9rem !important;
    }
    
    /* Team Navigation Mobile */
    .team-nav-buttons {
        margin-top: 1.5rem !important;
        gap: 1rem !important;
    }
    
    .team-nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
}

/* Services CTA Mobile */
@media (max-width: 768px) {
    .services-cta {
        padding: 2rem 1rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .services-cta h4 {
        font-size: 1.3rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .services-cta p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .services-cta .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0.5rem auto !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        display: block !important;
        text-align: center !important;
    }
}

/* Top Contact Bar Mobile - Extra Small Devices */
@media (max-width: 576px) {
    .top-bar {
        padding: 0.5rem 0 !important;
        font-size: 0.75rem !important;
    }
    
    .top-bar .container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .top-bar .row {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .top-bar .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .top-bar .col-md-8 {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        order: 1 !important;
    }
    
    .top-bar .col-md-4 {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        order: 2 !important;
    }
    
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .modern-navbar {
        position: fixed !important;
        top: 140px !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        border: none !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
    }
    
    body {
        padding-top: 200px;
    }
}

/* Top Contact Bar Mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 0 !important;
        font-size: 0.75rem !important;
    }
    
    .top-bar .container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .top-bar .row {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .top-bar .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .top-bar .col-md-8 {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        order: 1 !important;
    }
    
    .top-bar .col-md-4 {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        order: 2 !important;
    }
    
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: center !important;
    }
    
    /* First row: Phone, Email, Location - Horizontal scrolling */
    .contact-info .contact-row-1 {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0.75rem !important;
        white-space: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }
    
    .contact-info .contact-row-1::-webkit-scrollbar {
        display: none !important;
    }
    
    .contact-row-1 span {
        display: inline-flex !important;
        align-items: center !important;
        margin-bottom: 0 !important;
        margin-right: 0 !important;
        font-size: 0.7rem !important;
        flex-shrink: 0 !important;
    }
    
    
    .contact-info span i {
        margin-right: 0.25rem !important;
        font-size: 0.65rem !important;
    }
    
    .social-links {
        display: flex !important;
        flex-shrink: 0 !important;
        gap: 0.5rem !important;
        margin: 0.5rem 0 0 0 !important;
        justify-content: center !important;
    }
    
    .social-links a {
        margin: 0 !important;
        font-size: 0.8rem !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
}

/* Navigation Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
    
    .modern-navbar {
        top: 30px !important;
        padding: 0.75rem 0 !important;
    }
    
    .modern-navbar .container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .modern-navbar .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Modern Navigation Mobile Styles */
    .modern-brand {
        padding: 0 !important;
    }
    
    .brand-wrapper {
        gap: 0.8rem !important;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    .company-name {
        font-size: 1.1rem !important;
    }
    
    .company-subtitle {
        font-size: 0.65rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .modern-nav-collapse {
        margin-top: 1rem !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 15px !important;
        padding: 1rem !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(20px) !important;
    }
    
    .modern-nav-list {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }
    
    .modern-nav-link {
        padding: 1rem 1.5rem !important;
        margin: 0 !important;
        text-align: center !important;
        border-radius: 15px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .nav-text {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    .nav-indicator {
        display: none !important;
    }
    
    .cta-nav-item {
        margin-left: 0 !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }
    
    .modern-cta-link {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem 2rem !important;
        border-radius: 15px !important;
        font-size: 1rem !important;
    }
    
    .modern-toggler {
        padding: 0.75rem !important;
        border-radius: 15px !important;
    }
    
    .toggler-line {
        width: 30px !important;
        height: 4px !important;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    body {
        padding-top: 140px;
    }
    
    .modern-navbar {
        top: 90px !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .hero-title {
        font-size: 2.4rem !important;
        width: 100% !important;
        max-width: 98% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-title-line-1 {
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero-title-line-2 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .hero-subtitle {
        width: 100% !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-subtitle-text {
        font-size: 0.85rem !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .category-card {
        padding: 1rem 0.75rem !important;
    }
    
    .team-card {
        max-width: 280px !important;
        min-width: auto !important;
    }
    
    .team-scroll-wrapper .team-card-modern {
        max-width: 280px !important;
        min-width: auto !important;
    }
    
    /* Modern Footer - Mobile Responsive */
    .footer-main {
        padding: 3rem 0 1.5rem !important;
    }
    
    .footer-brand {
        text-align: center !important;
        margin-bottom: 3rem !important;
    }
    
    .footer-logo {
        height: 40px !important;
        margin: 0 auto 1rem !important;
        display: block !important;
    }
    
    .brand-name {
        font-size: 1.3rem !important;
        text-align: center !important;
    }
    
    .company-description {
        text-align: center !important;
        font-size: 0.9rem !important;
    }
    
    .social-links {
        justify-content: center !important;
        gap: 0.8rem !important;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 2.5rem !important;
    }
    
    .section-title {
        font-size: 1.1rem !important;
        text-align: center !important;
    }
    
    .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 40px !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .footer-links a::before {
        left: -10px !important;
    }
    
    .footer-links a:hover {
        padding-left: 15px !important;
    }
    
    .contact-info {
        align-items: center !important;
        gap: 1.2rem !important;
    }
    
    .contact-item {
        justify-content: center !important;
        gap: 0.8rem !important;
        text-align: center !important;
    }
    
    .contact-item span {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        padding: 1.2rem 0 !important;
    }
    
    .footer-bottom-links {
        justify-content: center !important;
        gap: 1.5rem !important;
        margin-top: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem !important;
    }
    
    .copyright {
        font-size: 0.85rem !important;
    }
    
    .back-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .back-to-top i {
        font-size: 0.9rem !important;
    }
    
    /* Extra Small Contact Bar */
    .top-bar {
        padding: 0.4rem 0 !important;
        font-size: 0.7rem !important;
    }
    
    .top-bar .row {
        gap: 0.4rem !important;
    }
    
    .contact-info {
        gap: 0.4rem !important;
    }
    
    /* First row: Phone, Email, Location */
    .contact-row-1 span {
        font-size: 0.65rem !important;
        margin-right: 0.5rem !important;
    }
    
    
    .contact-info span {
        font-size: 0.65rem !important;
    }
    
    .contact-info span i {
        margin-right: 0.2rem !important;
        font-size: 0.6rem !important;
    }
    
    .social-links {
        gap: 0.4rem !important;
    }
    
    .social-links a {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.75rem !important;
    }
}
