/* Import base styles from graphic design */
@import url('graphic-design-style.css');

/* SaaS Process Section Styles */
.saas-process-section {
    background: #F9F6F0;
    padding: 80px 0;
}

.process-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-number-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.step-number-circle.orange {
    background: #F5C842;
}

.step-number-circle.blue {
    background: #4A90E2;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Grid layout adjustments for 3+2 layout */
.process-step-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.process-step-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
}

/* Responsive design */
@media (max-width: 768px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step-card:nth-child(4),
    .process-step-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .process-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Brand Identity Hero Section Specific Styles */
.brand-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.brand-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.brand-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.brand-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.brand-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brand Mockup Styles */
.brand-mockup {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-illustration {
    width: 100%;
    height: auto;
    max-width: 350px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

/* Floating animation for brand illustration */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Demo button styling */
.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
}

.demo-button:hover {
    background: #E6B800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.4);
}

.demo-button i {
    transition: transform 0.3s ease;
}

.demo-button:hover i {
    transform: translateX(3px);
}

/* Brand Identity Importance Section */
.brand-importance-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.importance-content {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.importance-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-cards-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.1));
    transform: scale(1.2);
}

.importance-text {
    flex: 1;
    max-width: 500px;
}

.importance-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.importance-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Brand Beyond Section */
.brand-beyond-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.beyond-text {
    flex: 1;
    max-width: 500px;
}

.beyond-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.highlight-text {
    color: #F5C842;
}

.beyond-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
}

.action-button:hover {
    background: #E6B800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.4);
}

.action-button i {
    transition: transform 0.3s ease;
}

.action-button:hover i {
    transform: translateX(3px);
}

.beyond-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-showcase-mockup {
    position: relative;
    width: 400px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-showcase-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

/* Goals and Objectives Section */
.goals-objectives-section {
    background: #F9F6F0;
    padding: 80px 0;
}

.goals-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.goals-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.highlight-orange {
    color: #F5C842;
}

.goals-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.objective-card {
    text-align: center;
    padding: 20px;
}

.objective-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.icon-image {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

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

.objective-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.objective-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.additional-benefits {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.benefits-content {
    text-align: left;
}

.benefits-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.benefits-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Brand Identity Services Section */
.brand-services-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.see-examples-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
}

.see-examples-btn:hover {
    background: #E6B800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.4);
}

.see-examples-btn i {
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card-icon {
    margin-bottom: 20px;
}

.service-icon-img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

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

.service-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Brand Identity Design Process Section */
.design-process-section {
    background: #F9F6F0;
    padding: 80px 0;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.process-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.process-icon-img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon-img {
    transform: scale(1.1);
}

.process-step-content {
    flex: 1;
}

.process-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.process-conclusion {
    max-width: 1000px;
    margin: 0 auto;
}

.conclusion-highlight {
    background: #FFFFFF;
    padding: 30px 40px;
    border-radius: 8px;
    border-left: 4px solid #F5C842;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.conclusion-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

/* Brand Design Pricing Section */
.pricing-section {
    background: #F9F6F0;
    padding: 80px 0;
}

.pricing-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5C842 0%, #F59E0B 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(245, 200, 66, 0.3);
}

.pricing-card {
    display: flex;
    padding: 50px;
    gap: 50px;
    align-items: flex-start;
}

.pricing-header {
    flex: 1;
}

.pricing-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.badge-creative {
    background: rgba(255, 255, 255, 0.2);
}

.badge-popular {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pricing-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
}

.pricing-payment {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 280px;
}

.pricing-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 4px;
}

.pricing-tab {
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.pricing-tab.active {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-tab small {
    font-size: 11px;
    opacity: 0.8;
}

.pricing-amount {
    text-align: center;
    margin: 20px 0;
}

.price {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.period {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.8;
    letter-spacing: 1px;
}

.get-started-btn {
    background: #FFFFFF;
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-hero-section {
        padding: 40px 0 60px;
    }
    
    .brand-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .brand-hero-section .hero-title {
        font-size: 36px;
    }
    
    .brand-hero-section .hero-description {
        font-size: 16px;
    }
    
    .brand-mockup {
        width: 300px;
        height: 200px;
    }
    
    .brand-illustration {
        max-width: 250px;
    }
    
    /* Brand importance section responsive */
    .brand-importance-section {
        padding: 60px 0;
    }
    
    .importance-content,
    .brand-beyond-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .importance-title,
    .beyond-title {
        font-size: 28px;
    }
    
    .brand-cards-image {
        max-width: 320px;
    }
    
    .brand-showcase-mockup {
        width: 320px;
        height: 220px;
    }
    
    /* Goals and Objectives responsive */
    .goals-objectives-section {
        padding: 60px 0;
    }
    
    .goals-title {
        font-size: 28px;
    }
    
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .additional-benefits {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .benefits-title {
        font-size: 18px;
    }
    
    /* Brand Services responsive */
    .brand-services-section {
        padding: 60px 0;
    }
    
    .services-header {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        margin-bottom: 50px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    /* Design Process responsive */
    .design-process-section {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .conclusion-highlight {
        padding: 25px 20px;
        margin: 0 20px;
    }
    
    /* Pricing responsive */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-card {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    
    .pricing-title {
        font-size: 24px;
    }
    
    .pricing-payment {
        min-width: auto;
        width: 100%;
    }
    
    .pricing-tabs {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    
    .pricing-tab {
        width: 100%;
        min-width: auto;
    }
    
    .price {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .brand-hero-section .hero-title {
        font-size: 28px;
    }
    
    .brand-mockup {
        width: 250px;
        height: 150px;
    }
    
    .brand-illustration {
        max-width: 200px;
    }
    
    .importance-title,
    .beyond-title {
        font-size: 24px;
    }
    
    .importance-description,
    .beyond-description {
        font-size: 14px;
    }
    
    .brand-cards-image {
        max-width: 280px;
    }
    
    .brand-showcase-mockup {
        width: 280px;
        height: 180px;
    }
    
    .goals-title {
        font-size: 24px;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .objective-title {
        font-size: 16px;
    }
    
    .benefits-title {
        font-size: 16px;
    }
    
    .services-main-title {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-title {
        font-size: 16px;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .process-step-title {
        font-size: 18px;
    }
    
    .process-step-description {
        font-size: 13px;
    }
    
    .pricing-card-wrapper {
        margin: 0 20px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-title {
        font-size: 20px;
    }
    
    .pricing-description {
        font-size: 14px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .get-started-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        flex-direction: column !important;
        padding: 4rem 1rem 2rem !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
        align-items: stretch !important;
    }
    
    .navbar .nav-menu.mobile-active {
        right: 0 !important;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #333;
        border-bottom: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        border-left: 3px solid #F5C842 !important;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .capabilities-dropdown {
        width: 100% !important;
        max-height: none !important;
        padding: 0 !important;
    }
    
    .services-grid {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .service-column {
        width: 100% !important;
    }
    
    .service-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid #e0e0e0 !important;
        display: block !important;
        color: #555 !important;
        text-decoration: none !important;
    }
    
    .service-item:hover {
        background-color: #e8e8e8 !important;
    }
    
    .capabilities-actions {
        padding: 1rem !important;
        border-top: 1px solid #e0e0e0 !important;
        background: #f0f0f0 !important;
    }
    
    .contact-section {
        display: none !important;
    }
    
    /* Fix for nav links spacing in mobile */
    .navbar .nav-menu li {
        margin: 0 !important;
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .navbar .nav-menu .nav-link {
        display: block !important;
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        color: #333 !important;
        border-bottom: none !important;
        width: 100% !important;
    }
}