/* Services Page Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F9F6F0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles - Same as home page */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: #333;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.book-call-btn {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-call-btn:hover {
    background-color: #F1C232;
    transform: translateY(-1px);
}

.language-selector {
    color: #666;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    transform-origin: center;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

/* Capabilities Dropdown */
.capabilities-dropdown {
    width: 800px;
    max-width: 90vw;
}

.capabilities-card {
    padding: 2rem;
}

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

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

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #F5C842;
}

.service-item i {
    width: 20px;
    color: #F5C842;
    font-size: 1rem;
}

.capabilities-actions {
    margin-bottom: 2rem;
    text-align: center;
}

.all-services-btn {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.all-services-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.contact-section {
    background-color: #F5E56B;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.contact-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.book-call-now-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.book-call-now-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

.contact-illustration {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.paper-plane {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5C842;
    font-size: 1.5rem;
}

/* Services Hero Section */
.services-hero-section {
    padding: 6rem 0 8rem 0;
    background-color: #F9F6F0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.services-hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-button {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.services-cta-button:hover {
    background-color: #F1C232;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .services-hero-title {
        font-size: 3rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-hero-section {
        padding: 4rem 0 6rem 0;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .services-cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Capabilities Dropdown Mobile */
    .capabilities-dropdown {
        width: 95vw;
        left: 2.5vw;
        transform: none;
    }
    
    .capabilities-card {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-column {
        gap: 0.75rem;
    }
    
    .service-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .contact-text {
        text-align: left;
    }
    
    .book-call-now-btn {
        align-self: stretch;
        justify-content: center;
    }
    
    .contact-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-description {
        font-size: 0.9rem;
    }
    
    .services-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .capabilities-card {
        padding: 1rem;
    }
    
    .service-item {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .all-services-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .contact-section {
        padding: 1rem;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
    }
    
    .book-call-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* Design Services Section */
.design-services-section {
    padding: 5rem 0;
    background-color: white;
}

.design-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-card-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem;
    margin: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Specific card colors based on screenshot */
.graphic-design {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.motion-graphics {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
}

.brand-identity {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.infographic-design {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.infographic-design .service-card-title {
    color: #333;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    text-shadow: none;
}

.print-design {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.ui-ux-design {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
}

.app-design {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.website-design {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
}

.landing-page-design {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
}

.landing-page-design .service-card-title {
    color: #333;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    text-shadow: none;
}

.powerpoint-design {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.saas-design {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.saas-design .service-card-title {
    color: #333;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    text-shadow: none;
}

.amazon-design {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.startup-design {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
}

.software-design {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.software-design .service-card-title {
    color: #333;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    text-shadow: none;
}

/* Mobile Responsive for Design Services */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .design-services-title {
        font-size: 2.2rem;
    }
    
    .service-card-title {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .design-services-section {
        padding: 4rem 0;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 1rem;
    }
    
    .design-services-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .service-card-title {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(13, 1fr);
        gap: 1rem;
    }
    
    .design-services-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .service-card {
        aspect-ratio: 1.5;
    }
    
    .service-card-title {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* What Makes Us Different Section */
.what-makes-different {
    padding: 120px 0;
    background-color: #F9F6F0;
}

.what-makes-different .section-header {
    text-align: left;
    max-width: 600px;
    margin-bottom: 80px;
}

.what-makes-different .section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}

.what-makes-different .section-subtitle::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #f39c12;
    transform: translateY(-50%);
}

.what-makes-different .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 24px;
}

.what-makes-different .section-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.feature-icon:hover {
    transform: scale(1.05);
}

.feature-emoji {
    font-size: 24px;
    line-height: 1;
}

/* Individual colorful backgrounds for each feature */
.feature-icon.unlimited-requests {
    background-color: #FFE4B5;
}

.feature-icon.unlimited-revisions {
    background-color: #FFE4CC;
}

.feature-icon.unlimited-brand {
    background-color: #E6F3FF;
}

.feature-icon.native-files {
    background-color: #FFF0E6;
}

.feature-icon.art-director {
    background-color: #F0E6FF;
}

.feature-icon.project-manager {
    background-color: #FFFACD;
}

.feature-icon.real-time {
    background-color: #E6F7FF;
}

.feature-icon.trello {
    background-color: #E6FFE6;
}

.feature-icon.money-back {
    background-color: #FFEBE6;
}

.feature-icon.cancel-anytime {
    background-color: #FFE6E6;
}

.feature-icon.senior-designer {
    background-color: #F0F8FF;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}

/* Responsive styles for What Makes Us Different */
@media (max-width: 768px) {
    .what-makes-different {
        padding: 80px 0;
    }
    
    .what-makes-different .section-title {
        font-size: 36px;
    }
    
    .what-makes-different .section-subtitle::before {
        left: -40px;
        width: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-column {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .what-makes-different {
        padding: 60px 0;
    }
    
    .what-makes-different .section-header {
        margin-bottom: 60px;
    }
    
    .what-makes-different .section-title {
        font-size: 28px;
    }
    
    .what-makes-different .section-description {
        font-size: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-text {
        font-size: 15px;
    }
}

/* Benefits Grid Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    width: 100%;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.benefit-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive styles for Benefits Grid */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 60px;
    }
    
    .benefit-card {
        padding: 28px 20px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 17px;
    }
    
    .benefit-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }
    
    .benefit-card {
        padding: 24px 16px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
    
    .benefit-title {
        font-size: 15px;
    }
    
    .benefit-description {
        font-size: 12px;
    }
}

/* Who is it For Section */
.who-is-it-for {
    padding: 120px 0;
    background-color: white;
}

.who-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.who-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.who-section-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.audience-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.audience-badge {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    background: white;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.audience-badge.active {
    background: #F5C842;
    color: #2c3e50;
    border-color: #F5C842;
}

.audience-badge:hover {
    border-color: #F5C842;
    color: #2c3e50;
}

.who-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-content-left {
    max-width: 600px;
    text-align: left;
}

.who-content-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.who-content-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.who-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.who-benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.who-benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.who-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-illustration {
    width: 100%;
    max-width: 400px;
}

.who-illustration-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive styles for Who is it For Section */
@media (max-width: 1024px) {
    .who-is-it-for {
        padding: 100px 0;
    }
    
    .who-content-grid {
        gap: 60px;
    }
    
    .who-content-title {
        font-size: 32px;
    }
    
    .who-section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .who-is-it-for {
        padding: 80px 0;
    }
    
    .who-section-header {
        margin-bottom: 60px;
    }
    
    .who-section-title {
        font-size: 36px;
    }
    
    .who-section-description {
        font-size: 16px;
    }
    
    .audience-badges {
        gap: 12px;
    }
    
    .audience-badge {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .who-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .who-content-left {
        text-align: left;
    }
    
    .who-content-title {
        font-size: 28px;
    }
    
    .who-content-description {
        font-size: 15px;
    }
    
    .who-benefits-list {
        gap: 16px;
    }
    
    .who-benefit-item {
        justify-content: flex-start;
    }
    
    .who-benefit-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .who-is-it-for {
        padding: 60px 0;
    }
    
    .who-section-header {
        margin-bottom: 50px;
    }
    
    .who-section-title {
        font-size: 28px;
    }
    
    .who-section-description {
        font-size: 15px;
    }
    
    .audience-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .audience-badge {
        padding: 8px 16px;
        font-size: 12px;
        width: fit-content;
    }
    
    .who-content-title {
        font-size: 24px;
    }
    
    .who-content-description {
        font-size: 14px;
    }
    
    .who-benefit-text {
        font-size: 12px;
        text-align: left;
    }
    
    .who-illustration {
        max-width: 300px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: #F9F6F0;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 80px 0;
    line-height: 1.2;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F9F6F0;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 32px 32px;
}

.faq-answer p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for FAQ Section */
@media (max-width: 1024px) {
    .faq-section {
        padding: 100px 0;
    }
    
    .faq-title {
        font-size: 42px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question-text {
        font-size: 16px;
        margin-right: 16px;
    }
    
    .faq-answer {
        padding: 0 24px 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question-text {
        font-size: 15px;
        margin-right: 12px;
    }
    
    .faq-answer {
        padding: 0 20px 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #F9F6F0;
}

.contact-card {
    background: linear-gradient(135deg, #F5C842 0%, #F5D65A 100%);
    border-radius: 24px;
    padding: 60px 80px;
    margin: 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-text {
    flex: 1;
    max-width: 450px;
}

.contact-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: rgba(44, 62, 80, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.contact-description {
    font-size: 18px;
    color: rgba(44, 62, 80, 0.8);
    line-height: 1.5;
    margin: 0 0 32px 0;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-button svg {
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(4px);
}

.contact-illustration {
    flex-shrink: 0;
    position: relative;
}

.paper-plane-illustration {
    width: 200px;
    height: 200px;
}

.sparkles {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Responsive styles for Contact Section */
@media (max-width: 1024px) {
    .contact-card {
        padding: 50px 60px;
        margin: 0 60px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .paper-plane-illustration {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 40px;
        margin: 0 40px;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .paper-plane-illustration {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
        margin: 0 20px;
        border-radius: 16px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .contact-button {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .paper-plane-illustration {
        width: 140px;
        height: 140px;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-address {
    color: #A0AEC0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-address p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 24px;
    height: 24px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-continued {
    margin-top: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F5C842;
}

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

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

.contact-email {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.contact-phone {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-cta-button {
    background-color: #F5C842;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.footer-cta-button:hover {
    background-color: #ECC94B;
    transform: translateY(-1px);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-badge {
    width: 30px;
    height: 30px;
}

.footer-partners {
    padding: 2rem 0;
    border-top: 1px solid #4A5568;
    border-bottom: 1px solid #4A5568;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #4A5568;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.footer-copyright p {
    color: #A0AEC0;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    
    .partner-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-copyright {
        align-items: center;
    }
    
    .partner-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-company {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partner-logos {
        gap: 1rem;
        justify-content: center;
    }
    
    .partner-logo {
        height: 20px;
    }
    
    .footer-badge {
        width: 24px;
        height: 24px;
    }
}

/* 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;
    }
}