/* ============================================
   HOMEPAGE STYLES - CLEAN & MINIMAL
   ============================================ */

/* ============================================
   HERO SECTION - TWO COLUMN LAYOUT
   ============================================ */

.hero {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern - very light */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 15, 50, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 15, 50, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column - Content */
.hero-left {
    color: #0a0f29;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0a0f29;
}

.hero-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6376;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #0a0f29;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hero-cta .btn-primary:hover {
    background: #1a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 15, 41, 0.15);
}

.hero-cta .btn-primary i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.hero-cta .btn-primary:hover i {
    transform: translateX(3px);
}

/* Right Column - Form */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-form-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
}

.hero-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0f29;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #5a6376;
    margin-bottom: 2rem;
}

/* Form Styles */
.hero-form .form-group {
    margin-bottom: 1rem;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #0a0f29;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #9ca3af;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: #0a0f29;
    box-shadow: 0 0 0 3px rgba(10, 15, 41, 0.08);
}

.hero-form textarea {
    resize: vertical;
    min-height: 100px;
}

.hero-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: #0a0f29;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hero-form .btn-submit:hover {
    background: #1a1f3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 15, 41, 0.2);
}

.hero-form .btn-submit i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.hero-form .btn-submit:hover i {
    transform: translateX(3px);
}

.form-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-note i {
    color: #10b981;
    margin-right: 0.3rem;
}


.trusted-by {
    background: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid #f3f4f6;
}

.trusted-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0f29;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    padding: 1rem;
}

.logo-item img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Removed grayscale filter - logos are now colorful */
    opacity: 1;
}




/* ============================================
   PROBLEMS WE SOLVE SECTION
   ============================================ */

.problems-we-solve {
    background-color: #f9fafb;
    padding: var(--space-5xl) 0;
}

.problems-we-solve h2 {
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: #0a0f29;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

/* ============================================
   OUR PROCESS SECTION
   ============================================ */

.our-process {
    background-color: #ffffff;
    padding: var(--space-5xl) 0;
}

.our-process h2 {
    text-align: center;
    margin-bottom: var(--space-md);
    color: #0a0f29;
}

.section-subtitle {
    text-align: center;
    color: #5a6376;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3xl);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

/* Connecting line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(10% + 30px);
    right: calc(10% + 30px);
    height: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}
/* ============================================
   INDUSTRIES WE EMPOWER SECTION - EXACT FONT MATCH
   ============================================ */

.industries-we-empower {
    background: #ffffff;
    padding: 5rem 0 4rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

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

.industries-header {
    margin-bottom: 0.2rem;
}

.industries-subtitle {
    font-size: 1.25rem;
    font-weight: 600;   
    color: #7a7a7a;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    font-family: inherit;
}

/* Hero Industry Layout */
.industry-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-industry-content {
    padding: 0;
}

.hero-industry-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.75rem;
    line-height: 1.1;
    transition: opacity 0.3s ease;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.hero-industry-description {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    color: #7a7a7a;
    margin-bottom: 2.25rem;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
    font-family: inherit;
}

.industry-read-more-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #0066ff;
    border: 2px solid #0066ff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.industry-read-more-btn:hover {
    background: #0066ff;
    color: #ffffff;
}

/* Hero Image */
.hero-industry-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease;
}

.hero-industry-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Industries Carousel */
.industries-carousel {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    padding-top: 1rem;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    color: #0a0f29;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
    align-self: center;
}

.carousel-arrow:hover {
    background: #0a0f29;
    color: #ffffff;
    border-color: #0a0f29;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.industries-cards-wrapper {
    display: flex;
    gap: 1.75rem;
    flex-grow: 1;
    overflow: hidden;
}

/* Industry Card - With Matching Fonts */
.industry-card {
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 0 calc(25% - 1.3rem);
    min-width: 0;
    border-top: 3px solid #e5e7eb;
    padding-top: 1.5rem;
}

.industry-card:hover {
    transform: translateY(-4px);
}

.industry-card:hover,
.industry-card.active {
    border-top-color: #0066ff;
}

.industry-card-separator {
    display: none;
}

.industry-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.01em;
}

.industry-card-description {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: #7a7a7a;
    margin: 0;
    font-family: inherit;
    letter-spacing: 0.01em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .industries-container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .industries-container {
        max-width: 960px;
    }
    
    .industry-hero-layout {
        gap: 3.5rem;
    }
    
    .hero-industry-title {
        font-size: 3rem;
    }
    
    .industry-card {
        flex: 0 0 calc(33.333% - 1.2rem);
    }
}

@media (max-width: 968px) {
    .industries-container {
        max-width: 100%;
    }
    
    .industry-hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-industry-title {
        font-size: 2.5rem;
    }
    
    .industry-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .industries-cards-wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .industries-we-empower {
        padding: 3.5rem 0;
    }
    
    .hero-industry-title {
        font-size: 2rem;
    }
    
    .hero-industry-description {
        font-size: 1rem;
    }
    
    .industry-card {
        flex: 0 0 100%;
    }
}




/* ========================================
   RETAIL SUCCESS STORIES SECTION
======================================== */

.retail-success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section Header */
.success-stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.success-stories-header .header-left {
    flex: 1;
}

.success-stories-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.success-stories-header .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

.btn-view-more {
    background: #0066FF;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

/* Carousel Container */
.success-stories-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
}

/* Story Slide */
.story-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: none;
}

.story-slide.active {
    display: block;
}

/* Story Banner with Constrained Height */
.story-banner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    max-height: 550px; /* LIMIT THE HEIGHT */
}

.story-banner img {
    width: 100%;
    height: 550px; /* SET FIXED HEIGHT */
    object-fit: cover; /* CROP IMAGE TO FIT */
    display: block;
}

/* Case Study Button Overlay */
.btn-case-study-overlay {
    position: absolute;
    bottom: 60px;
    left: 50px;
    background: #1a1a1a;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-case-study-overlay:hover {
    background: #000;
    transform: translateX(5px);
}

/* Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066FF;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 100;
}

.carousel-nav-btn:hover {
    background: #0052cc;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    left: 20px;
}

.carousel-nav-btn.next {
    right: 20px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .story-banner {
        max-height: 450px;
    }
    
    .story-banner img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .success-stories-header {
        flex-direction: column;
    }
    
    .success-stories-header h2 {
        font-size: 1.75rem;
    }
    
    .story-banner {
        max-height: 400px;
    }
    
    .story-banner img {
        height: 400px;
    }
    
    .btn-case-study-overlay {
        bottom: 30px;
        left: 30px;
        padding: 12px 30px;
        font-size: 0.875rem;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .story-banner {
        max-height: 350px;
    }
    
    .story-banner img {
        height: 350px;
    }
}





/* ===========================
   FAQ Section
=========================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light, #f9f9f9);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--primary-color, #0066cc);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--primary-color, #0066cc);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary, #555);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }
}







/* ============================================
   FEATURED WORK SECTION - VERTICAL CARDS
   ============================================ */

.featured-work {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0f29;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #5a6376;
    font-size: 1.1rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Case Study Card - Vertical Layout */
.case-study-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Image Section */
.case-study-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.case-study-card:hover .case-study-image-wrapper img {
    transform: scale(1.05);
}

/* Content Section */
.case-study-content-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-study-header {
    margin-bottom: 1.25rem;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0f29;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.industry-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a6376;
    background: #f3f4f6;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-transform: capitalize;
}

.case-study-main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-study-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6376;
    margin-bottom: 1.5rem;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0f29;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #5a6376;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* View Case Study Button */
.view-case-study-btn {
    display: inline-block;
    width: 100%;
    padding: 0.875rem;
    background: #0a0f29;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-case-study-btn:hover {
    background: #1a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 15, 41, 0.2);
}

/* View All CTA */
.view-all-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0a0f29;
    border: 2px solid #0a0f29;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0a0f29;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-work {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study-image-wrapper {
        height: 200px;
    }
    
    .case-study-content-wrapper {
        padding: 1.5rem;
    }
    
    .client-name {
        font-size: 1.3rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
}


/* ============================================
   OUR SERVICES SECTION
   ============================================ */

.our-services {
    background-color: #ffffff;
    padding: var(--space-5xl) 0;
}

.our-services h2 {
    color: #0a0f29;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    background-color: #f9fafb;
    padding: var(--space-5xl) 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: #0a0f29;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background-color: #ffffff;
    padding: var(--space-5xl) 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: #0a0f29;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */

.contact-cta {
    background: #0a0f29;
    color: var(--color-white);
    padding: var(--space-4xl) 0;
}

.contact-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Left Column */
.cta-left-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cta-benefits span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
}

.cta-benefits i {
    color: rgba(255, 255, 255, 0.9);
}

/* Right Column - Compact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: var(--space-2xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#contact-form .form-group {
    margin-bottom: var(--space-md);
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-base);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #0a0f29;
    box-shadow: 0 0 0 3px rgba(10, 15, 41, 0.08);
}

#contact-form button[type="submit"] {
    width: 100%;
}

#contact-form .form-note {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Hero Section Responsive */
@media (max-width: 968px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
  .trusted-by {
        padding: 3rem 0;
    }
    
    .trusted-heading {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }
    
    .logo-item {
        height: 60px;
    }
    
    .logo-item img {
        max-width: 100px;
        max-height: 45px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .hero-form-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .hero-form input,
    .hero-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero-form .btn-submit {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .logo-item {
        height: 50px;
    }
    
    .logo-item img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .contact-cta .container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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