/* Raaxo Technologies - Custom Styles */

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Brand Colors */
:root {
    --primary-blue: #284E91;
    --secondary-teal: #2CBFC6;
    --accent-orange: #F2A542;
    --alert-red: #C43B3B;
    --neutral-gray: #6B7280;
    --neutral-light: #F3F4F6;
    --neutral-dark: #1F2937;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-blue-teal: linear-gradient(135deg, #284E91 0%, #2CBFC6 100%);
    --gradient-teal-yellow: linear-gradient(135deg, #2CBFC6 0%, #F2A542 100%);
    --gradient-yellow-red: linear-gradient(135deg, #F2A542 0%, #C43B3B 100%);
}

/* Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-teal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-blue-teal);
    color: var(--white) !important;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 78, 145, 0.3);
    color: var(--white) !important;
}

.nav-menu .btn-primary {
    color: var(--white) !important;
}

.btn-secondary {
    background: var(--secondary-teal);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #0e9488 !important;
    background-color: #0e9488 !important;
    color: var(--white) !important;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

div.top-bar {
    background: #0e9488 !important;
    background-color: #0e9488 !important;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.9;
    background: transparent;
}

.social-icon:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.15);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    color: var(--white);
}

.top-bar-link {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
    opacity: 1;
    text-decoration: none;
}

.top-bar-link:hover {
    opacity: 0.9;
    color: var(--white);
}

.top-bar-link svg {
    flex-shrink: 0;
    fill: var(--white);
    color: var(--white);
    margin-right: 6px;
}

/* Header - Consistent across all pages */
.header {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1500 !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 170px !important;
    height: 60px !important;
    max-width: 170px !important;
    max-height: 60px !important;
    display: block;
    object-fit: contain;
}

a.logo img {
    width: 170px !important;
    height: 60px !important;
}

.nav {
    display: block;
    position: relative;
    z-index: 1600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--neutral-dark);
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

/* Mobile Home Icon - Hidden on desktop */
.mobile-home-icon {
    display: none;
}

/* Mobile Home Icon Styles */
.mobile-home-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-home-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.mobile-home-icon:active {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: left;
    color: var(--white);
    z-index: 2;
    padding: 3rem 4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    max-width: 700px;
    opacity: 0.95;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Footer */
.footer {
    background: #0e9488;
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-newsletter {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: left;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 8px 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--neutral-dark);
    background: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-button {
    padding: 0.875rem 1.75rem;
    background: #A855F7;
    color: var(--white);
    border: none;
    border-radius: 0 8px 8px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #9333EA;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.newsletter-button:active {
    transform: translateY(0);
}

.newsletter-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    min-height: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-message.success {
    color: #10B981;
}

.newsletter-message.error {
    color: #EF4444;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Mobile Responsive - Header - Consistent across all pages */
@media (max-width: 1024px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 1500;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Ensure header is always on top and consistent */
    .header {
        position: sticky;
        top: 0;
        z-index: 1500;
        width: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .top-bar {
        display: none;
    }
    
    .header-content {
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .logo {
        flex-shrink: 0;
        z-index: 1550;
    }
    
    .logo img {
        width: 140px !important;
        height: 50px !important;
        max-width: 140px !important;
        max-height: 50px !important;
    }
    
    /* Mobile Home Icon - Visible on mobile */
    .mobile-home-icon {
        display: flex !important;
        order: 2;
        margin-left: auto;
    }
    
    /* Hide desktop nav menu completely on mobile */
    .nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-newsletter {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 0.75rem;
    }
    
    .newsletter-button {
        border-radius: 8px;
        width: 100%;
    }
}

/* Why Raaxo Technologies Section */
.why-raaxo-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-raaxo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-raaxo-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--secondary-teal), var(--accent-orange));
    padding: 3px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--alert-red);
    margin-bottom: 1rem;
    display: block;
}

.why-raaxo-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-gray);
    margin-bottom: 2.5rem;
}

.value-propositions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.value-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-gray);
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label-blue {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    display: block;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid;
    position: relative;
    overflow: hidden;
}

.service-card-modern[data-color="teal"] {
    border-top-color: var(--secondary-teal);
}

.service-card-modern[data-color="orange"] {
    border-top-color: var(--accent-orange);
}

.service-card-modern[data-color="purple"] {
    border-top-color: #A855F7;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-modern p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-card-modern[data-color="teal"] .service-link {
    color: var(--secondary-teal);
}

.service-card-modern[data-color="orange"] .service-link {
    color: var(--accent-orange);
}

.service-card-modern[data-color="purple"] .service-link {
    color: #A855F7;
}

.service-link:hover {
    gap: 0.75rem;
    transform: translateX(4px);
}

/* Legacy Services Grid (for backward compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Statistics Banner - Unified Style */
.stats-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(14, 148, 136, 0.95) 0%, rgba(196, 59, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 148, 136, 0.9) 0%, rgba(196, 59, 59, 0.9) 100%);
    z-index: 1;
}

.stats-banner .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Hero Stats - Use same style */
.about-hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.about-hero-stats .stat-item {
    color: var(--white);
}

.about-hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-teal);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-hero-stats .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-hero-stats {
        gap: 2rem;
    }
    
    .about-hero-stats .stat-number {
        font-size: 2rem;
    }
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.step-icon-wrapper {
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    margin: 0;
}

/* What We Do Section */
.what-we-do-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.what-we-do-banner {
    background: linear-gradient(135deg, rgba(40, 78, 145, 0.95) 0%, rgba(44, 191, 198, 0.9) 50%, rgba(242, 165, 66, 0.85) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a1a2e" width="1200" height="400"/><g fill="%23ffffff" opacity="0.1"><circle cx="200" cy="100" r="80"/><circle cx="600" cy="200" r="100"/><circle cx="1000" cy="150" r="60"/><rect x="300" y="250" width="200" height="100" rx="10"/><rect x="800" y="300" width="150" height="80" rx="10"/></g></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.what-we-do-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 78, 145, 0.85) 0%, rgba(44, 191, 198, 0.8) 50%, rgba(242, 165, 66, 0.75) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.section-label-white {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: inline-block;
}

.what-we-do-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.banner-stats {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.service-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-teal), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--neutral-dark);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: var(--primary-blue);
    padding-left: 0.5rem;
}

.service-list li svg {
    flex-shrink: 0;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.category-link:hover {
    color: var(--primary-blue);
    gap: 0.75rem;
}

.what-we-do-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(44, 191, 198, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 191, 198, 0.4);
}

@media (max-width: 1024px) {
    .service-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .what-we-do-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 3rem 0;
    }
    
    .what-we-do-banner {
        padding: 3rem 2rem;
        border-radius: 15px;
    }
    
    .what-we-do-banner h2 {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1.125rem;
    }
    
    .service-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-category-card {
        padding: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--neutral-light) 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.25;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--neutral-light);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(44, 191, 198, 0.1), rgba(40, 78, 145, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-gray);
    font-weight: 500;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--secondary-teal);
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--primary-blue);
    gap: 0.75rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-empty {
    text-align: center;
    padding: 3rem;
    background: var(--neutral-light);
    border-radius: 15px;
}

.blog-empty p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-header {
        margin-bottom: 3rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-image,
    .blog-image-placeholder {
        height: 200px;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #2a1f3d 0%, #4a3a5a 50%, #6b5b7a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(42, 31, 61, 0.95) 0%, rgba(74, 58, 90, 0.9) 50%, rgba(107, 91, 122, 0.85) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-pre-headline {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: inline-block;
}

.cta-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-cta-gradient {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: linear-gradient(90deg, var(--secondary-teal) 0%, var(--accent-orange) 100%);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(44, 191, 198, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.btn-cta-gradient::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;
}

.btn-cta-gradient:hover::before {
    left: 100%;
}

.btn-cta-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(44, 191, 198, 0.5);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-headline {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .btn-cta-gradient {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* About Page Hero Section */
.about-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(51, 65, 85, 0.65) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    max-width: 800px;
    text-align: left;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.about-hero-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.about-hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 1.5rem 0;
}

.about-hero-headline .highlight-teal {
    color: var(--secondary-teal);
}

.about-hero-headline .highlight-orange {
    color: var(--accent-orange);
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 600px;
}

.about-hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.about-hero-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    gap: 1rem;
}

.about-hero-cta svg {
    transition: transform 0.3s ease;
}

.about-hero-cta:hover svg {
    transform: translateY(5px);
}

@media (max-width: 1024px) {
    .about-hero-headline {
        font-size: 3rem;
    }
    
    .about-hero-stats {
        gap: 2rem;
    }
    
    .about-stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 500px;
    }
    
    .about-hero-content {
        padding: 3rem 0;
    }
    
    .about-hero-headline {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .about-hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-stat-label {
        font-size: 0.9rem;
    }
    
    .about-hero-cta {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
}

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--neutral-light);
}

.story-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 191, 198, 0.1) 0%, rgba(40, 78, 145, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.story-image-wrapper:hover .story-image-overlay {
    opacity: 0.5;
}

.about-story-text {
    padding-left: 2rem;
}

.story-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    display: inline-block;
}

.story-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.story-content {
    color: var(--neutral-dark);
    line-height: 1.8;
}

.story-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-highlight {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--primary-blue) !important;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-teal);
    margin-top: 2rem !important;
}

@media (max-width: 1024px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-text {
        padding-left: 0;
    }
    
    .story-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 4rem 0;
    }
    
    .about-story-content {
        gap: 2.5rem;
    }
    
    .story-heading {
        font-size: 2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .story-highlight {
        font-size: 1.0625rem !important;
        padding-left: 1rem;
    }
}

/* Our Journey Timeline Section */
.our-journey-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.journey-header {
    text-align: center;
    margin-bottom: 5rem;
}

.journey-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-gray);
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.7;
}

.journey-timeline {
    position: relative;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-teal), var(--accent-orange));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-card {
    text-align: right;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    z-index: 3;
    position: relative;
}

.timeline-card {
    flex: 1;
    max-width: 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.timeline-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 0.75rem;
}

.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.timeline-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0 0 1rem 0;
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-gray);
    margin-top: 0.5rem;
}

/* Journey stats now uses stats-banner class - removed duplicate styles */

@media (max-width: 1024px) {
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .timeline-item:nth-child(even) .timeline-card {
        text-align: center;
    }
    
    .timeline-card {
        max-width: 100%;
        margin: 1.5rem 0 0 0;
    }
    
    .timeline-line {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
    }
    
    .timeline-node {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
    
    /* Journey stats responsive handled by stats-grid */
    
    .journey-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .our-journey-section {
        padding: 4rem 0;
    }
    
    .journey-header {
        margin-bottom: 3rem;
    }
    
    .journey-header h2 {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1.125rem;
    }
    
    .journey-timeline {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }
    
    .timeline-card {
        padding: 1.5rem;
    }
    
    .timeline-card h3 {
        font-size: 1.25rem;
    }
    
    /* Journey stats responsive handled by stats-grid */
}

/* Two Businesses, One Vision Section */
.two-businesses-section {
    padding: 6rem 0;
    background: var(--neutral-light);
    position: relative;
}

.two-businesses-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label-orange {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: inline-block;
}

.two-businesses-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.two-businesses-tagline {
    font-size: 1.25rem;
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.6;
}

.two-businesses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.business-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.business-box-teal {
    border-color: rgba(44, 191, 198, 0.3);
}

.business-box-teal:hover {
    border-color: var(--secondary-teal);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(44, 191, 198, 0.2);
}

.business-box-orange {
    border-color: rgba(242, 165, 66, 0.3);
}

.business-box-orange:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(242, 165, 66, 0.2);
}

.business-icon-wrapper {
    margin-bottom: 1.5rem;
}

.business-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.business-box:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
}

.business-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
}

.business-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.business-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
}

.business-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.business-services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--neutral-dark);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-services-list li:last-child {
    border-bottom: none;
}

.business-services-list li:hover {
    color: var(--primary-blue);
    padding-left: 0.5rem;
}

.business-services-list li svg {
    flex-shrink: 0;
}

.business-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.business-stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--neutral-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.business-stat-item:hover {
    background: rgba(44, 191, 198, 0.1);
    transform: translateY(-3px);
}

.business-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.business-stat-label {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.raaxo-advantage-box {
    background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--accent-orange) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 191, 198, 0.3);
}

.raaxo-advantage-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 191, 198, 0.95) 0%, rgba(242, 165, 66, 0.95) 100%);
    z-index: 1;
}

.advantage-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.raaxo-advantage-box h3 {
    position: relative;
    z-index: 2;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.raaxo-advantage-box p {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .two-businesses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-businesses-header h2 {
        font-size: 2.5rem;
    }
    
    .business-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .two-businesses-section {
        padding: 4rem 0;
    }
    
    .two-businesses-header {
        margin-bottom: 3rem;
    }
    
    .two-businesses-header h2 {
        font-size: 2rem;
    }
    
    .two-businesses-tagline {
        font-size: 1.125rem;
    }
    
    .business-box {
        padding: 2rem;
    }
    
    .business-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .raaxo-advantage-box {
        padding: 3rem 2rem;
    }
    
    .raaxo-advantage-box h3 {
        font-size: 1.75rem;
    }
    
    .raaxo-advantage-box p {
        font-size: 1rem;
    }
}

/* What Drives Us Section */
.what-drives-us-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.section-main-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin: 0 0 4rem 0;
    line-height: 1.2;
}

.drives-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.drives-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.drives-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.drives-card-border {
    height: 6px;
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.drives-card-content {
    padding: 2.5rem;
}

.drives-icon-wrapper {
    margin-bottom: 1.5rem;
}

.drives-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.drives-card:hover .drives-icon {
    transform: scale(1.1) rotate(5deg);
}

.drives-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1.25rem 0;
}

.drives-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0;
}

.core-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.core-values-list li:last-child {
    border-bottom: none;
}

.core-values-list li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.core-values-list li strong {
    color: var(--primary-blue);
}

/* What Makes Us Different Section */
.what-makes-different-section {
    padding: 6rem 0;
    background: var(--neutral-light);
    position: relative;
}

.makes-different-header {
    text-align: center;
    margin-bottom: 4rem;
}

.makes-different-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
    line-height: 1.2;
}

.makes-different-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.6;
}

.makes-different-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.different-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.different-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.different-icon-wrapper {
    margin-bottom: 1.5rem;
}

.different-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.different-card:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
}

.different-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.different-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0;
}

@media (max-width: 1200px) {
    .makes-different-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .drives-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-main-heading {
        font-size: 2.5rem;
    }
    
    .makes-different-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .what-drives-us-section,
    .what-makes-different-section {
        padding: 4rem 0;
    }
    
    .section-main-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .makes-different-header {
        margin-bottom: 3rem;
    }
    
    .makes-different-header h2 {
        font-size: 2rem;
    }
    
    .makes-different-subtitle {
        font-size: 1.125rem;
    }
    
    .makes-different-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .drives-card-content {
        padding: 2rem;
    }
    
    .different-card {
        padding: 2rem;
    }
}

/* About Page - Our Proven Process Section */
.about-process-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.about-process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-process-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
    line-height: 1.2;
}

.about-process-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-gray);
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.7;
}

.about-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.about-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(44, 191, 198, 0.3);
}

.about-step-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.about-step-icon-wrapper {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.about-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.about-process-step:hover .about-step-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-process-step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.about-process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0;
}

@media (max-width: 1024px) {
    .about-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-process-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-process-section {
        padding: 4rem 0;
    }
    
    .about-process-header {
        margin-bottom: 3rem;
    }
    
    .about-process-header h2 {
        font-size: 2rem;
    }
    
    .about-process-subtitle {
        font-size: 1.125rem;
    }
    
    .about-process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-process-step {
        padding: 2rem;
    }
    
    .about-step-number {
        left: 2rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* Services Page Hero Section */
.services-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    max-width: 900px;
    text-align: left;
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.services-hero-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: inline-block;
}

.services-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.services-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem 0;
    max-width: 700px;
}

.services-hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.feature-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .services-hero-headline {
        font-size: 2.75rem;
    }
    
    .services-hero-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        min-height: 500px;
    }
    
    .services-hero-content {
        padding: 3rem 0;
    }
    
    .services-hero-headline {
        font-size: 2.25rem;
    }
    
    .services-hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-hero-features {
        gap: 1rem;
    }
    
    .service-feature-badge {
        padding: 0.875rem 1.25rem;
    }
    
    .feature-number {
        font-size: 1.25rem;
    }
    
    .feature-label {
        font-size: 0.75rem;
    }
}

/* The Raaxo Difference Section */
.raaxo-difference-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.raaxo-difference-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.raaxo-difference-heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin: 0 0 2rem 0;
}

.raaxo-difference-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin: 0 0 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.raaxo-difference-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.difference-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--neutral-light);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.difference-badge:hover {
    background: rgba(44, 191, 198, 0.1);
    border-color: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.difference-badge svg {
    color: var(--secondary-teal);
    flex-shrink: 0;
}

.difference-badge span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .raaxo-difference-section {
        padding: 4rem 0;
    }
    
    .raaxo-difference-heading {
        font-size: 1.125rem;
    }
    
    .raaxo-difference-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .raaxo-difference-badges {
        gap: 1rem;
    }
    
    .difference-badge {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Why Businesses Trust Raaxo Section */
.why-trust-raaxo-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    position: relative;
    overflow: hidden;
}

.why-trust-raaxo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(45, 53, 97, 0.95) 100%);
    z-index: 1;
}

.why-trust-raaxo-section .container {
    position: relative;
    z-index: 2;
}

.why-trust-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin: 0 0 4rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trust-icon-wrapper {
    margin-bottom: 1.5rem;
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Services Process Section */
.services-process-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services-process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-process-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
    line-height: 1.2;
}

.services-process-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-gray);
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.7;
}

.services-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.services-process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.services-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(44, 191, 198, 0.3);
}

.services-step-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.services-step-icon-wrapper {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.services-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.services-process-step:hover .services-step-icon {
    transform: scale(1.1) rotate(5deg);
}

.services-process-step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.services-process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0;
}

@media (max-width: 1024px) {
    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-trust-heading {
        font-size: 2.5rem;
    }
    
    .services-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-process-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-trust-raaxo-section {
        padding: 4rem 0;
    }
    
    .why-trust-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .trust-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-card {
        padding: 2rem;
    }
    
    .services-process-section {
        padding: 4rem 0;
    }
    
    .services-process-header {
        margin-bottom: 3rem;
    }
    
    .services-process-header h2 {
        font-size: 2rem;
    }
    
    .services-process-subtitle {
        font-size: 1.125rem;
    }
    
    .services-process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-process-step {
        padding: 2rem;
    }
    
    .services-step-number {
        left: 2rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.tech-stack-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.tech-stack-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 700px;
    line-height: 1.7;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
}

.tech-stack-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.tech-stack-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-teal);
}

.tech-stack-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-dark);
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 700px;
    line-height: 1.7;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-teal);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--secondary-teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin: 0;
}

@media (max-width: 1024px) {
    .tech-stack-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tech-stack-heading,
    .faq-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tech-stack-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .tech-stack-heading,
    .faq-heading {
        font-size: 2rem;
    }
    
    .tech-stack-subtitle,
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-stack-item {
        padding: 1.25rem 0.75rem;
    }
    
    .tech-stack-item span {
        font-size: 0.875rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.75rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.9375rem;
    }
}

/* Portfolio Hero Section */
.portfolio-hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.portfolio-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.portfolio-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.portfolio-hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    max-width: 900px;
    text-align: left;
}

.portfolio-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-breadcrumb a:hover {
    color: var(--white);
}

.portfolio-hero-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: inline-block;
}

.portfolio-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.portfolio-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem 0;
    max-width: 800px;
}

.portfolio-hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.portfolio-hero-stats .stat-item {
    color: var(--white);
}

.portfolio-hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-teal);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-hero-stats .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content-section {
    padding: 4rem 0;
    background: var(--white);
}

@media (max-width: 1024px) {
    .portfolio-hero-headline {
        font-size: 2.75rem;
    }
    
    .portfolio-hero-description {
        font-size: 1.125rem;
    }
    
    .portfolio-hero-stats {
        gap: 2rem;
    }
    
    .portfolio-hero-stats .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-section {
        min-height: 600px;
    }
    
    .portfolio-hero-content {
        padding: 3rem 0;
    }
    
    .portfolio-hero-headline {
        font-size: 2.25rem;
    }
    
    .portfolio-hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-hero-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .portfolio-hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .portfolio-hero-stats .stat-label {
        font-size: 0.75rem;
    }
}

/* Services Categories Section */
.services-categories-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-category-block {
    margin-bottom: 6rem;
}

/* Service Detail Page Styles */
.service-detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a2332 100%);
    padding: 6rem 0;
}

.service-detail-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.service-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(45, 53, 97, 0.9) 50%, rgba(26, 35, 50, 0.95) 100%);
    z-index: 2;
}

.service-detail-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-breadcrumb a:hover {
    color: var(--white);
}

.service-detail-category-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    display: inline-block;
}

.service-detail-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.service-detail-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem 0;
    max-width: 800px;
}

.service-detail-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.service-stat-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-stat-badge .stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.service-stat-badge .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-service-quote {
    background: var(--secondary-teal);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service-quote:hover {
    background: rgba(44, 191, 198, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 191, 198, 0.3);
}

.btn-service-portfolio {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service-portfolio:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Service Overview Section */
.service-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.service-overview-content {
    max-width: 100%;
}

.service-overview-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin: 0 0 1.5rem 0;
}

.service-quick-info {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.quick-info-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1.5rem 0;
}

.quick-info-list {
    margin-bottom: 2rem;
}

.quick-info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.quick-info-item:last-child {
    border-bottom: none;
}

.quick-info-label {
    font-size: 0.9375rem;
    color: var(--neutral-gray);
    font-weight: 500;
}

.quick-info-value {
    font-size: 0.9375rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.btn-quick-info-cta {
    display: block;
    width: 100%;
    background: var(--secondary-teal);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-quick-info-cta:hover {
    background: rgba(44, 191, 198, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 191, 198, 0.3);
}

/* What's Included Section */
.service-whats-included-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.whats-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.whats-included-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.whats-included-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.included-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.75rem 0;
}

.included-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    margin: 0;
}

/* Process Detail Section */
.service-process-detail-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-detail-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--secondary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(44, 191, 198, 0.3);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0 0.5rem 0;
}

.process-step-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    margin: 0;
}

/* Technologies Section */
.service-technologies-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.technology-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--secondary-teal);
}

.technology-card span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

/* Case Study Section */
.service-case-study-section {
    padding: 5rem 0;
    background: var(--white);
}

.case-study-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 2rem 0;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-study-item {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
}

.case-study-item strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Final CTA Section */
.service-final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(14, 148, 136, 0.1) 0%, rgba(40, 78, 145, 0.1) 100%);
}

.service-final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.service-final-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0 0 2rem 0;
}

.service-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-service-contact {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service-contact:hover {
    background: rgba(40, 78, 145, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 78, 145, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .service-quick-info {
        position: static;
    }
    
    .whats-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technologies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        min-height: 400px;
        padding: 4rem 0;
    }
    
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-detail-description {
        font-size: 1.125rem;
    }
    
    .service-section-heading {
        font-size: 2rem;
    }
    
    .service-overview-section,
    .service-whats-included-section,
    .service-process-detail-section,
    .service-technologies-section,
    .service-case-study-section,
    .service-final-cta-section {
        padding: 4rem 0;
    }
    
    .whats-included-grid {
        grid-template-columns: 1fr;
    }
    
    .process-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-card {
        padding: 2rem;
    }
    
    .service-final-cta-content h2 {
        font-size: 2rem;
    }
}

.service-category-block:last-child {
    margin-bottom: 0;
}

/* Portfolio Filter Section */
.portfolio-filter-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--secondary-teal);
    color: var(--secondary-teal);
}

.filter-btn.active {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
    color: var(--white);
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-item-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item-image img {
    transform: scale(1.1);
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-info {
    color: var(--white);
    width: 100%;
}

.portfolio-item-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-teal);
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-item-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.portfolio-item-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.portfolio-item-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-service-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: var(--white);
    font-weight: 500;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(14, 148, 136, 0.1) 0%, rgba(40, 78, 145, 0.1) 100%);
}

.portfolio-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.portfolio-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0 0 2rem 0;
}

.portfolio-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-filter-section {
        padding: 2rem 0;
    }
    
    .portfolio-filters {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .portfolio-grid-section {
        padding: 3rem 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item-image {
        height: 250px;
    }
    
    .portfolio-cta-section {
        padding: 4rem 0;
    }
    
    .portfolio-cta-content h2 {
        font-size: 2rem;
    }
}

/* Portfolio Detail Page Styles */
.portfolio-detail-hero {
    padding: 4rem 0 3rem;
    background: var(--white);
}

.portfolio-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

.portfolio-detail-breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-detail-breadcrumb a:hover {
    color: var(--secondary-teal);
}

.portfolio-detail-breadcrumb span {
    color: var(--neutral-gray);
}

.portfolio-detail-header {
    max-width: 900px;
}

.portfolio-detail-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(44, 191, 198, 0.1);
    border-radius: 50px;
}

.portfolio-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.portfolio-detail-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0 0 2rem 0;
}

.portfolio-detail-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.portfolio-meta-item {
    font-size: 0.9375rem;
    color: var(--neutral-dark);
}

.portfolio-meta-item strong {
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Portfolio Main Image Section */
.portfolio-main-image-section {
    padding: 0;
    background: var(--white);
}

.portfolio-main-image {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.portfolio-main-image img {
    width: 100%;
    max-width: 1600px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

/* Portfolio Challenge Section */
.portfolio-challenge-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.portfolio-challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.portfolio-challenge-box,
.portfolio-solution-box {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.portfolio-challenge-box h2,
.portfolio-solution-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1.5rem 0;
}

.portfolio-challenge-box p,
.portfolio-solution-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin: 0;
}

/* Portfolio Results Section */
.portfolio-results-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 3rem 0;
    text-align: center;
}

.portfolio-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.portfolio-result-item:hover {
    background: rgba(44, 191, 198, 0.1);
    transform: translateX(5px);
}

.result-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-result-item span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

/* Portfolio Technologies Detail Section */
.portfolio-technologies-detail-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.portfolio-technologies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-tech-tag {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.portfolio-tech-tag:hover {
    border-color: var(--secondary-teal);
    background: rgba(44, 191, 198, 0.1);
    transform: translateY(-2px);
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-gallery-item {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-gallery-item:hover img {
    transform: scale(1.1);
}

/* Portfolio Detail CTA Section */
.portfolio-detail-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(14, 148, 136, 0.1) 0%, rgba(40, 78, 145, 0.1) 100%);
}

.portfolio-detail-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-detail-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.portfolio-detail-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0 0 2rem 0;
}

.portfolio-detail-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .portfolio-challenge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-results-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-detail-hero {
        padding: 3rem 0 2rem;
    }
    
    .portfolio-detail-title {
        font-size: 2rem;
    }
    
    .portfolio-detail-subtitle {
        font-size: 1.125rem;
    }
    
    .portfolio-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-challenge-section,
    .portfolio-results-section,
    .portfolio-technologies-detail-section,
    .portfolio-gallery-section,
    .portfolio-detail-cta-section {
        padding: 4rem 0;
    }
    
    .portfolio-challenge-box,
    .portfolio-solution-box {
        padding: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-detail-cta-content h2 {
        font-size: 2rem;
    }
}

.service-category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-icon-wrapper {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(44, 191, 198, 0.3);
}

.service-category-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.service-category-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.6;
}

.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-enhanced {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-teal);
}

.service-icon-enhanced {
    margin-bottom: 1.5rem;
}

.service-icon-square {
    width: 56px;
    height: 56px;
    background: var(--secondary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(44, 191, 198, 0.2);
}

.service-title-enhanced {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.service-description-enhanced {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    margin: 0 0 1.5rem 0;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--neutral-dark);
    line-height: 1.5;
}

.service-features-list li svg {
    flex-shrink: 0;
}

.service-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(44, 191, 198, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-teal);
    margin-bottom: 1.5rem;
}

.service-link-enhanced {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link-enhanced:hover {
    color: var(--secondary-teal);
    transform: translateX(5px);
}

.service-link-enhanced::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link-enhanced:hover::after {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .services-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-category-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .services-categories-section {
        padding: 4rem 0;
    }
    
    .service-category-block {
        margin-bottom: 4rem;
    }
    
    .service-category-header {
        margin-bottom: 2.5rem;
    }
    
    .service-category-title {
        font-size: 2rem;
    }
    
    .service-category-subtitle {
        font-size: 1rem;
    }
    
    .services-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-enhanced {
        padding: 1.75rem;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--neutral-light);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-gray);
}

.modal-close:hover {
    color: var(--alert-red);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-slider {
        height: 600px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .top-bar-left {
        justify-content: center;
    }
    
    .top-bar-right {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .why-raaxo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-raaxo-text h2 {
        font-size: 2rem;
    }
    
    .why-raaxo-image {
        order: 2;
    }
    
    .why-raaxo-text {
        order: 1;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem;
    }
}

/* Pricing Page Styles */

/* Pricing Hero Section */
.pricing-hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.pricing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pricing-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(3px);
    transform: scale(1.1);
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.pricing-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.pricing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    justify-content: center;
}

.pricing-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.pricing-breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 1.5rem;
}

.pricing-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.pricing-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-badge {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.pricing-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Pricing Packages Section */
.pricing-packages-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

.pricing-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.pricing-section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured {
    border: 2px solid var(--secondary-teal);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue-teal);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--neutral-light);
}

.pricing-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--neutral-gray);
}

.pricing-card-description {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-top: 0.5rem;
}

.pricing-card-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-card-cta {
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-blue-teal);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 78, 145, 0.3);
    color: var(--white);
}

.btn-pricing-featured {
    background: var(--gradient-teal-yellow);
}

.btn-pricing-featured:hover {
    box-shadow: 0 8px 20px rgba(44, 191, 198, 0.4);
}

/* Why Choose Our Pricing Section */
.pricing-why-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.pricing-why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-why-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.pricing-why-item p {
    font-size: 1rem;
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Custom Quote CTA Section */
.pricing-custom-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    color: var(--white);
}

.pricing-custom-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-custom-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pricing-custom-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.pricing-custom-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Responsive Pricing Page */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero-section {
        min-height: 550px;
    }
    
    .pricing-hero-content {
        padding: 3rem 1.5rem;
    }
    
    .pricing-hero-headline {
        font-size: 2.5rem;
    }
    
    .pricing-hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .pricing-hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pricing-badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-section-title {
        font-size: 2rem;
    }
    
    .pricing-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-custom-content h2 {
        font-size: 2rem;
    }
    
    .pricing-custom-content p {
        font-size: 1.125rem;
    }
    
    .pricing-custom-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-custom-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Quick Service Cards */
.quick-service-cards {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
}

.quick-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quick-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.quick-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.quick-service-card p {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

.quick-service-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.quick-service-link:hover {
    color: var(--secondary-teal);
}

/* Service Filter Navigation */
.service-filter-nav {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-nav-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #F3F4F6;
    color: var(--neutral-dark);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-nav-btn:hover {
    background: #E5E7EB;
}

.filter-nav-btn.active {
    background: #FEF3C7;
    color: var(--neutral-dark);
}

.filter-nav-btn.active svg {
    color: #F2A542;
}

.filter-nav-secondary {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.filter-nav-btn-secondary {
    padding: 0.5rem 1rem;
    border: none;
    background: #F3F4F6;
    color: var(--neutral-dark);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-nav-btn-secondary:hover {
    background: #E5E7EB;
}

/* Service Pricing Sections */
.service-pricing-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-pricing-section:nth-child(even) {
    background: var(--neutral-light);
}

.service-pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-pricing-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.service-pricing-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    line-height: 1.7;
}

.service-pricing-note {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured-modern {
    border: 2px solid var(--secondary-teal);
    transform: scale(1.05);
}

.pricing-card-featured-modern:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card-badge-modern {
    position: absolute;
    top: -15px;
    left: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.pricing-card-price-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-card-meta {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 1rem;
}

.pricing-card-description-modern {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.pricing-features-list li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-pricing-modern {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-pricing-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Add-ons Section */
.addons-section {
    padding: 6rem 0;
    background: var(--white);
}

.addons-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.addon-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.addon-card:hover {
    border-color: var(--secondary-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.addon-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.addon-card p {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 1rem;
}

.addon-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.addon-link:hover {
    color: var(--secondary-teal);
}

/* Payment & Scope Info Section */
.payment-scope-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

.payment-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-info-card,
.scope-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-info-card h3,
.scope-info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section ul li {
    padding: 0.5rem 0;
    color: var(--neutral-gray);
    font-size: 0.95rem;
}

.payment-methods li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scope-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.scope-info-card ul li {
    padding: 0.75rem 0;
    color: var(--neutral-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--neutral-light);
}

.scope-info-card ul li:last-child {
    border-bottom: none;
}

.scope-note {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* Pricing FAQ Section */
.pricing-faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-faq-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Quiz Section */
.quiz-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E0F2FE 0%, var(--white) 100%);
}

.quiz-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.quiz-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.quiz-question {
    margin-bottom: 2.5rem;
}

.quiz-question h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: var(--secondary-teal);
    background: #F0FDFA;
}

.quiz-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-teal);
}

.quiz-option input[type="radio"]:checked + span {
    color: var(--secondary-teal);
    font-weight: 600;
}

.quiz-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-quiz-primary {
    flex: 1;
    padding: 1rem 2rem;
    background: var(--secondary-teal);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-quiz-primary:hover {
    background: #26A69A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 191, 198, 0.3);
    color: var(--white);
}

.btn-quiz-secondary {
    flex: 1;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--secondary-teal);
    border: 2px solid var(--secondary-teal);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-quiz-secondary:hover {
    background: var(--secondary-teal);
    color: var(--white);
}

/* Pricing Testimonials Section */
.pricing-testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--neutral-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E5E7EB;
}

.testimonial-name {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--neutral-gray);
}

/* Responsive Pricing Page Updates */
@media (max-width: 1024px) {
    .quick-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card-featured-modern {
        transform: scale(1);
    }
    
    .pricing-card-featured-modern:hover {
        transform: translateY(-8px);
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-service-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-scope-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-actions {
        flex-direction: column;
    }
    
    .service-pricing-title {
        font-size: 2rem;
    }
    
    .addons-section-title,
    .pricing-faq-title,
    .quiz-title,
    .testimonials-section-title {
        font-size: 2rem;
    }
}

/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(2px);
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 78, 145, 0.85) 0%, rgba(44, 191, 198, 0.75) 100%);
    z-index: 2;
}

.blog-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    justify-content: center;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--white);
}

.blog-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.blog-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.blog-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.blog-empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.blog-empty-icon {
    margin-bottom: 2rem;
}

.blog-empty-state h2 {
    font-size: 2rem;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.blog-empty-state p {
    font-size: 1.125rem;
    color: var(--neutral-gray);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--neutral-light);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: var(--secondary-teal);
    color: var(--white);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-blue);
}

.blog-post-excerpt {
    font-size: 1rem;
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

.blog-post-author,
.blog-post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-post-link:hover {
    color: var(--secondary-teal);
    gap: 0.75rem;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--neutral-light);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.pagination-info {
    font-size: 1rem;
    color: var(--neutral-gray);
    font-weight: 500;
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    position: relative;
    margin-top: 0;
}

.blog-detail-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    color: var(--white);
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.blog-detail-breadcrumb a:hover {
    color: var(--white);
}

.blog-detail-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-detail-category-tag {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--secondary-teal);
    color: var(--white);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
}

.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar,
.author-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: var(--secondary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.post-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-detail-share span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.share-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Blog Content Section */
.blog-content-section {
    padding: 4rem 0;
    background: var(--white);
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-article {
    background: var(--white);
}

/* Blog Article Content Styling */
.blog-article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-dark);
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
    font-weight: 700;
}

.blog-article-content h2 {
    font-size: 2rem;
}

.blog-article-content h3 {
    font-size: 1.5rem;
}

.blog-article-content h4 {
    font-size: 1.25rem;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article-content li {
    margin-bottom: 0.75rem;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--secondary-teal);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--neutral-gray);
}

.blog-article-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.blog-article-content a:hover {
    color: var(--secondary-teal);
}

.blog-article-content code {
    background: var(--neutral-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-article-content pre {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-light);
}

.blog-article-tags h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.blog-tags-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-tag {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background: var(--neutral-light);
    color: var(--neutral-dark);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--secondary-teal);
    color: var(--white);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-sidebar-widget {
    background: var(--neutral-light);
    border-radius: 16px;
    padding: 2rem;
}

.blog-sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.author-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-bio-avatar,
.author-bio-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.author-bio-avatar-placeholder {
    background: var(--secondary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.author-bio-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.author-bio-info p {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item a {
    display: block;
}

.recent-post-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.recent-post-item:hover h4 {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

/* Related Posts Section */
.related-posts-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

.related-posts-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.related-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.related-post-content h3 a {
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: var(--primary-blue);
}

.related-post-content p {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-post-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.related-post-link:hover {
    color: var(--secondary-teal);
}

/* Responsive Blog Pages */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        min-height: 400px;
    }
    
    .blog-hero-headline {
        font-size: 2.5rem;
    }
    
    .blog-hero-description {
        font-size: 1.125rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-detail-hero-image {
        height: 300px;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-pagination {
        flex-direction: column;
        gap: 1rem;
    }
}



/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 78, 145, 0.85);
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-cta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Get In Touch Section */
.get-in-touch-section {
    padding: 5rem 0;
    background: var(--white);
}

.get-in-touch-section .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--neutral-light);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--secondary-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 191, 198, 0.15);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

.contact-card-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-card-btn:hover {
    background: currentColor;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-main {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-main .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin-bottom: 2.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(44, 191, 198, 0.1);
}

.form-control::placeholder {
    color: var(--neutral-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

.char-min {
    color: var(--neutral-gray);
}

.char-count {
    font-weight: 600;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.radio-label:hover {
    background: var(--neutral-light);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary-teal);
}

.radio-label span {
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--secondary-teal);
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--secondary-teal);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-blue);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    background: var(--white);
    border: 2px solid var(--neutral-gray);
    color: var(--neutral-dark);
}

.btn-secondary:hover {
    background: var(--neutral-light);
    border-color: var(--neutral-gray);
    transform: translateY(-2px);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--neutral-gray);
    text-align: center;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    display: block;
    color: var(--alert-red);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.sidebar-features {
    margin-bottom: 2.5rem;
}

.sidebar-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 0.25rem;
}

.sidebar-feature p {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.5;
}

.sidebar-contact-info {
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-light);
}

.sidebar-contact-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar-contact-item svg {
    flex-shrink: 0;
}

.sidebar-contact-item a {
    color: var(--neutral-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-contact-item a:hover {
    color: var(--secondary-teal);
}

.sidebar-hours {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    margin-top: 1rem;
    font-style: italic;
}

.sidebar-checklist {
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-light);
}

.sidebar-checklist h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.sidebar-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.sidebar-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: 700;
}

/* FAQ Section */
.contact-faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-subtitle {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neutral-gray);
    margin-bottom: 0.5rem;
}

.contact-faq-section .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-faq-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-teal);
}

.faq-item.active {
    border-color: var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(44, 191, 198, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--secondary-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--neutral-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--secondary-teal);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        position: static;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 400px;
        padding: 4rem 0;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .get-in-touch-section,
    .contact-form-section,
    .contact-faq-section {
        padding: 3rem 0;
    }
    
    .get-in-touch-section .section-title,
    .contact-faq-section .section-title {
        font-size: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-main {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    padding: 4rem 0 3rem;
    color: var(--white);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
}

.faq-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.faq-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* FAQ Search Section */
.faq-search-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-light);
}

.faq-search-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    border: 2px solid var(--neutral-light);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(44, 191, 198, 0.1);
}

.faq-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-gray);
    pointer-events: none;
}

.faq-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--neutral-light);
    background: var(--white);
    color: var(--neutral-dark);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    border-color: var(--secondary-teal);
    color: var(--secondary-teal);
}

.faq-tab.active {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
    color: var(--white);
}

/* FAQ Content Section */
.faq-content-section {
    padding: 4rem 0;
    background: var(--white);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-teal);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(44, 191, 198, 0.1);
}

.faq-item.active {
    border-color: var(--secondary-teal);
    box-shadow: 0 4px 15px rgba(44, 191, 198, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--secondary-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--neutral-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--secondary-teal);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-blue);
}

.faq-no-results {
    text-align: center;
    padding: 3rem;
    color: var(--neutral-gray);
    font-size: 1.125rem;
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: 4rem 0;
    background: var(--neutral-light);
    text-align: center;
}

.faq-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-hero {
        padding: 3rem 0 2rem;
    }
    
    .faq-hero-title {
        font-size: 2.5rem;
    }
    
    .faq-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-search-section {
        padding: 2rem 0;
    }
    
    .faq-search-input {
        padding: 0.875rem 1rem 0.875rem 3rem;
        font-size: 0.95rem;
    }
    
    .faq-category-tabs {
        gap: 0.5rem;
    }
    
    .faq-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .faq-content-section {
        padding: 3rem 0;
    }
    
    .faq-category {
        margin-bottom: 3rem;
    }
    
    .faq-category-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-cta-section {
        padding: 3rem 0;
    }
    
    .faq-cta-text {
        font-size: 1.25rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Legal Pages Styles (Privacy Policy, Terms & Conditions) */
.legal-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    padding: 4rem 0 3rem;
    color: var(--white);
}

.legal-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.legal-hero-date {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.legal-content-section {
    padding: 4rem 0;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary-teal);
}

.legal-text {
    font-size: 1.0625rem;
    color: var(--neutral-dark);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    font-size: 1.0625rem;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-info-box {
    background: var(--neutral-light);
    border-left: 4px solid var(--secondary-teal);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.contact-info-item {
    font-size: 1.0625rem;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

.contact-info-item a {
    color: var(--secondary-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-footer-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--neutral-light);
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    color: var(--secondary-teal);
    transform: translateX(-5px);
}

.btn-back-home svg {
    transition: transform 0.3s ease;
}

.btn-back-home:hover svg {
    transform: translateX(-3px);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 3rem 0 2rem;
    }
    
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-hero-date {
        font-size: 1rem;
    }
    
    .legal-content-section {
        padding: 3rem 0;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-section {
        margin-bottom: 2.5rem;
    }
    
    .legal-section-title {
        font-size: 1.75rem;
    }
    
    .legal-text,
    .legal-list li {
        font-size: 1rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        font-size: 1rem;
    }
    
    .contact-info-item strong {
        display: block;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
}

/* Get a Quote Page Styles */
.quote-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    padding: 4rem 0 3rem;
    color: var(--white);
}

.quote-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.quote-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.quote-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.quote-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.quote-feature-item svg {
    flex-shrink: 0;
}

.quote-form-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.quote-form-main {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.quote-form-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin-bottom: 2.5rem;
}

.quote-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--neutral-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.form-section-hint {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.service-checkbox {
    display: block;
    cursor: pointer;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.service-checkbox-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
}

.service-checkbox:hover .service-checkbox-content {
    border-color: var(--secondary-teal);
    background: var(--neutral-light);
}

.service-checkbox.checked .service-checkbox-content {
    border-color: var(--secondary-teal);
    background: rgba(44, 191, 198, 0.1);
}

.service-checkbox-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-light);
    border-radius: 10px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-checkbox.checked .service-checkbox-icon {
    background: var(--secondary-teal);
    color: var(--white);
}

.service-checkbox-content span {
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 1rem;
}

.form-actions {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--neutral-light);
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--neutral-gray);
    text-align: center;
}

.form-disclaimer a {
    color: var(--secondary-teal);
    text-decoration: underline;
}

.form-disclaimer a:hover {
    color: var(--primary-blue);
}

/* Quote Sidebar */
.quote-sidebar {
    position: sticky;
    top: 100px;
}

.quote-sidebar .sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.quote-sidebar .sidebar-card:last-child {
    margin-bottom: 0;
}

.quote-sidebar h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-benefits li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.sidebar-benefits li:last-child {
    margin-bottom: 0;
}

.sidebar-benefits svg {
    flex-shrink: 0;
    color: var(--secondary-teal);
    margin-top: 0.25rem;
}

.sidebar-benefits strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 0.25rem;
}

.sidebar-benefits p {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-contact-item:hover {
    border-color: var(--secondary-teal);
    background: rgba(44, 191, 198, 0.05);
    color: var(--secondary-teal);
    transform: translateX(5px);
}

.sidebar-contact-item svg {
    flex-shrink: 0;
    color: var(--secondary-teal);
}

.sidebar-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.sidebar-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    counter-increment: step-counter;
}

.sidebar-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-teal);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.sidebar-steps strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 0.25rem;
}

.sidebar-steps p {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    margin: 0;
    line-height: 1.6;
}

.alert-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success svg {
    flex-shrink: 0;
    color: #155724;
}

/* Responsive Design for Get a Quote Page */
@media (max-width: 1024px) {
    .quote-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quote-sidebar {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quote-hero {
        padding: 3rem 0 2rem;
    }
    
    .quote-hero-title {
        font-size: 2.5rem;
    }
    
    .quote-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .quote-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quote-form-section {
        padding: 3rem 0;
    }
    
    .quote-form-main {
        padding: 2rem;
    }
    
    .quote-form-title {
        font-size: 2rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .form-section-title {
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE ENHANCEMENTS
   ============================================ */

/* General Mobile Typography Improvements */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Ensure touch targets are at least 44x44px */
    .btn, button, a.btn {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    /* Container padding on mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Section padding reduction on mobile */
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Grid improvements for mobile */
    .grid, [class*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Card improvements */
    .card, [class*="card"] {
        margin-bottom: 1.5rem;
    }
    
    /* Form improvements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Table responsiveness */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .btn, button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        max-width: 100%;
    }
}

/* ============================================
   Floating Widget - WhatsApp
   ============================================ */
.floating-widgets {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.floating-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #20BA5A;
}

.floating-widget:active {
    transform: translateY(-1px) scale(1.02);
}

.floating-widget svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile positioning - keep above bottom nav */
@media (max-width: 768px) {
    .floating-widgets {
        bottom: 90px;
    }
    
    .floating-widget {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .floating-widget svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   Mobile Bottom Navigation - Sticky
   ============================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0.5rem 0;
    padding-bottom: env(safe-area-inset-bottom, 0.5rem);
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--neutral-gray);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    flex: 1;
    max-width: 20%;
}

.mobile-bottom-nav .nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.7rem;
    line-height: 1;
    margin-top: 2px;
}

.mobile-bottom-nav .nav-item:hover {
    color: var(--primary-blue);
    background: rgba(40, 78, 145, 0.05);
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary-blue);
    background: rgba(40, 78, 145, 0.1);
}

.mobile-bottom-nav .nav-item.active svg {
    stroke: var(--primary-blue);
    transform: scale(1.1);
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    /* Desktop: Ensure nav displays correctly */
    .nav {
        position: relative !important;
        display: block !important;
        right: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        left: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .mobile-home-icon {
        display: none !important;
    }
    
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* ============================================
   Mobile Footer Improvements
   ============================================ */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 6rem;
        margin-bottom: 70px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
        max-width: 100%;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        font-size: 0.9rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-contact-item {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   Main Content Padding for Mobile Bottom Nav
   ============================================ */
@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
    
    .cta-section {
        margin-bottom: 80px;
        padding-bottom: 2rem;
    }
}

/* ============================================
   Mobile Header Additional Improvements
   ============================================ */
@media (max-width: 768px) {
    .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--white) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .header-content {
        padding: 0.75rem 1rem !important;
    }
    
    .container {
        padding: 0 1rem;
    }
}
