/***************************
INTEGRATED BUSINESS SOLUTIONS PAGE
***************************/

/* Fix body padding for this page */
body.business-solutions-active {
    padding-top: 80px;
}



/* Hero Section - Full Width, starts right after header */
.solutions-hero {
    width: 100%;
    background: linear-gradient(135deg, #64c6c2 0%, #f89939 100%);
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.12;
    z-index: 0;
}

.solutions-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2));
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
    padding: 10px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: #fff;
    letter-spacing: 0.12em;
    margin-bottom: 35px;
    line-height: 1.15;
    font-weight: 400;
    text-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Stats Bar - With Side Margins */
.stats-bar {
    width: calc(100% - 6%);
    margin-left: 3%;
    margin-right: 3%;
    background: #393939;
    padding: 60px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #64c6c2, #f89939);
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    color: #f89939;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
}

/* Introduction Section - Redesigned Classy Layout */
.solutions-intro {
    width: calc(100% - 6%);
    margin-left: 3%;
    margin-right: 3%;
    background: #f5f5f0;
    padding: 90px 0;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
}

/* Eyebrow + heading centered above */
.intro-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #64c6c2;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
}

.intro-heading {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: #393939;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto 24px;
}

.intro-heading-rule {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #64c6c2, #f89939);
    margin: 0 auto 60px;
}

/* Two-column grid: image left, text right */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Image col */
.intro-image-wrapper {
    position: relative;
}

.intro-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

/* Floating stat card on image */
.intro-floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #393939;
    color: #fff;
    padding: 24px 28px;
    border-bottom: 4px solid #64c6c2;
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
    text-align: center;
    min-width: 130px;
}

.intro-float-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.4rem;
    color: #f89939;
    line-height: 1;
    margin-bottom: 6px;
}

.intro-float-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* Text col */
.intro-text {
    padding-top: 8px;
}

.intro-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: #393939;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #666;
    margin-bottom: 28px;
}

/* Feature pills */
.intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.intro-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #393939;
    background: #fff;
    border: 1px solid rgba(100, 198, 194, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.intro-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64c6c2, #f89939);
    flex-shrink: 0;
}

/* Blockquote */
.intro-quote {
    margin: 0;
    padding: 22px 28px;
    border-left: 4px solid #64c6c2;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    color: #393939;
    line-height: 1.7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Responsive */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .intro-image { height: 380px; }
    .intro-floating-card { right: 12px; bottom: -12px; }
}

/* Pillars Section - With Side Margins */
.pillars-section {
    width: calc(100% - 6%);
    margin-left: 3%;
    margin-right: 3%;
    background: linear-gradient(135deg, #64c6c2 0%, #5ab8b5 100%);
    padding: 60px 0;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3183197/pexels-photo-3183197.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.08;
}

.pillars-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 3.2rem;
    color: #fff;
    letter-spacing: 0.12em;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 400;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #64c6c2, #f89939);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.pillar-card > * {
    position: relative;
    z-index: 1;
}

.pillar-card:hover::before {
    opacity: 0.08;
}

.pillar-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #f89939;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
}

.pillar-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.25rem;
    color: #393939;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pillar-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
}

/* Services Section - With Side Margins */
.services-section {
    width: calc(100% - 6%);
    margin-left: 3%;
    margin-right: 3%;
    background: #fff;
    padding: 60px 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 92%;
    max-width: 1300px;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(100, 198, 194, 0.25);
    transition: all 0.4s ease;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(100, 198, 194, 0.15);
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even) > * {
    direction: ltr;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-block:hover .service-image {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(248, 153, 57, 0.95);
    color: #fff;
    padding: 15px 35px;
    font-family: 'Russo One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.service-content {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.service-block:nth-child(odd) .service-content,
.service-block:nth-child(even) .service-content {
    background: #fff;
}

.service-content h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #393939;
    letter-spacing: 0.08em;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #64c6c2, #f89939);
}

.service-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #393939;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #64c6c2, #f89939);
    clip-path: polygon(0% 50%, 40% 90%, 100% 10%, 90% 0%, 40% 70%, 10% 40%);
}

/* CTA Section - Full Width */
.cta-section {
    width: 100%;
    background: #fff;
    padding: 70px 0;
    margin-left: 0;
    margin-right: 0;
}

.cta-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 6%;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #f5f5f0 0%, #fff 100%);
    padding: 50px 40px;
    border: 3px solid #64c6c2;
    position: relative;
}

.cta-box::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.2rem;
    color: #393939;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #64c6c2, #f89939);
    color: #fff;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    padding: 15px 36px;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    box-shadow: 0 12px 35px rgba(100, 198, 194, 0.25);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(100, 198, 194, 0.42);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .service-block {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 92%;
        margin: 0 auto 40px;
    }
    
    .service-block:nth-child(even) {
        direction: ltr;
    }
    
    .service-image-container {
        min-height: auto;
        height: 350px;
    }
    
    .service-image {
        height: 100%;
    }
}

@media (max-width: 768px) {
    /* Remove side margins on mobile */
    .stats-bar,
    .solutions-intro,
    .pillars-section,
    .services-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .solutions-hero {
        padding: 120px 0 100px 0;
    }
    
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 40px 6%;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
}


/* Hero Harmonization */
.portfolio-hero--business {
  height: auto;
  min-height: calc(100vh - 80px);
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(13, 47, 55, 0.76) 0%, rgba(95, 190, 121, 0.34) 100%),
    url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.portfolio-hero--business::before {
  display: none;
}

.portfolio-hero--business::after {
  display: none;
}

.portfolio-hero--business .portfolio-hero__inner {
  max-width: 1000px;
  text-align: center;
}

.portfolio-hero--business .portfolio-hero__badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(100, 198, 194, 0.55);
  color: #fff;
  font-family: 'Russo One', sans-serif;
}

.portfolio-hero--business .portfolio-hero__title {
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.portfolio-hero--business .portfolio-hero__subtitle {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.9);
}
