/* -------- Services Page Specific Styles -------- */

/* --- Hero Section --- */
#landing-title, #landing-subtext, #landing-button {
    opacity: 0;
    position: relative;
    top: 50px;
    transition: opacity 1s ease-out, top 1s ease-out;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(200deg, #2c204866, #4b168788), url("/static/images/services-molecule.78a67946e696.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.landing-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 0, 0, 0.568) 50%);
    z-index: 1;
}

.overlay {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 2;
    padding: 2rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideDown 1s ease-out;
}

.badge-text {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.overlay h1 {
    font-family: 'Gelica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 4rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, #ef5fdc 0%, #d3c509 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

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

.overlay p {
    font-family: "Neue Montreal", sans-serif !important;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero-primary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* -------- Responsive Adjustments for Hero Section -------- */

@media (max-width: 992px) {
    .overlay h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .overlay {
        width: 95%;
        padding: 1rem;
    }
    .overlay h1 {
        font-size: 2.5rem;
    }
    .overlay p {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .landing-container {
        background: linear-gradient(200deg, #2c204866, #4b168788), url("/static/images/services-molecule.78a67946e696.png") no-repeat center center;
    }
}

@media (max-width: 576px) {
    .overlay h1 {
        font-size: 2rem;
    }
    .overlay p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* --- Description Section --- */
.description-section {
    padding: 50px 20px;
}

.d-title {
    width: 80%;
    text-align: center;
}

.description-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    line-height: 1.2;
    color: rgb(27, 31, 32);
    margin-bottom: 1rem;
}

.description-subtitle {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(120, 120, 120);
    margin-top: 10px;
}

/* ========================= */
/* ===== ACCORDION STYLES ====== */
/* ========================= */

.industries-accordion {
    max-width: 900px;
    margin: 3rem auto;
}

.accordion-item {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #2C2048;
}

.accordion-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.accordion-header:hover {
   

}

.accordion-header h3 {
    font-family: 'Gelica', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin: 0;
    color: inherit;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #E471AB;
}

.accordion-header:hover .accordion-icon {
    color: #2C2048;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: white;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, #2C2048, #E471AB);
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-inner {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.content-text {
    flex: 1;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-text li {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.industry-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-caption {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Accordion Styles */
@media (max-width: 992px) {
    .d-title {
        width: 100%;
    }
    .description-title {
        font-size: 2.5rem;
    }
    .description-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .industry-image {
        max-width: 250px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .description-title {
        font-size: 2rem;
    }
    .description-subtitle {
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1.5rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-inner {
        padding: 1.5rem;
    }
    
    .content-text li {
        font-size: 0.9rem;
    }
    
    .industry-image {
        max-width: 200px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .industries-accordion {
        margin: 2rem auto;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-inner {
        padding: 1rem;
    }
    
    .industry-image {
        max-width: 150px;
        height: 100px;
    }
    
    .image-caption {
        font-size: 0.8rem;
    }
}

/* ========================= */
/* ===== BENEFITS SECTION ====== */
/* ========================= */

.benefits-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-header {
    margin-bottom: 4rem;
}

.benefits-main-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #2c2048;
    margin-bottom: 1rem;
}

.benefits-main-subtitle {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Primary Benefit Card */
.primary-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.primary-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.benefit-content {
    flex: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C2048, #E471AB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-family: 'Gelica', sans-serif;
    font-size: 1.8rem;
    color: #2c2048;
    margin-bottom: 1rem;
    font-weight: 300;
}

.benefit-description {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefit-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2048;
    font-family: 'Gelica', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Neue Montreal', sans-serif;
}

.benefit-image {
    flex: 0 0 250px;
}

.benefit-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Secondary Benefits */
.secondary-benefits {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #2C2048;
}

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

.benefit-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2C2048, #E471AB);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-card-icon i {
    font-size: 1.3rem;
    color: white;
}

.benefit-card h4 {
    font-family: 'Gelica', sans-serif;
    font-size: 1.1rem;
    color: #2c2048;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.benefit-card p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.benefit-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E471AB;
    font-family: 'Gelica', sans-serif;
}

.metric-text {
    font-size: 0.8rem;
    color: #999;
    font-family: 'Neue Montreal', sans-serif;
}

/* Process Section */
.process-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-title {
    font-family: 'Gelica', sans-serif;
    font-size: 2rem;
    color: #2c2048;
    font-weight: 300;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C2048, #E471AB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Gelica', sans-serif;
}

.step-content h5 {
    font-family: 'Gelica', sans-serif;
    font-size: 1.2rem;
    color: #2c2048;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.step-content p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.process-arrow {
    margin: 0 1rem;
    color: #2C2048;
    font-size: 1.5rem;
}

/* Success Stories */
.success-stories {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.success-title {
    font-family: 'Gelica', sans-serif;
    font-size: 2rem;
    color: #2c2048;
    margin-bottom: 1rem;
    font-weight: 300;
}

.success-description {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.success-stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.success-stat h4 {
    font-size: 2rem;
    color: #2C2048;
    margin-bottom: 0.5rem;
    font-family: 'Gelica', sans-serif;
    font-weight: 700;
}

.success-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-family: 'Neue Montreal', sans-serif;
}

.success-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.benefits-cta {
    background: linear-gradient(135deg, #2c2048, #4a4a6a);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.cta-content h3 {
    font-family: 'Gelica', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-content p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button,
.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Neue Montreal', sans-serif;
    transition: all 0.3s ease;
}

.cta-button,
.btn-cta-primary {
    background: #E471AB;
    color: white;
    border: 2px solid #2C2048;
}

.cta-button:hover,
.btn-cta-primary:hover {
    background: #E471AB;
    border-color: #E471AB;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #E471AB;
    text-decoration: none;
}

/* Responsive Benefits Styles */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .primary-benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-image {
        flex: none;
    }
    
    .secondary-benefits {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .success-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 1rem;
    }
    
    .benefits-main-title {
        font-size: 2.2rem;
    }
    
    .primary-benefit-card {
        padding: 2rem;
    }
    
    .benefit-title {
        font-size: 1.5rem;
    }
    
    .secondary-benefits {
        grid-template-columns: 1fr;
    }
    
    .process-section,
    .success-stories,
    .benefits-cta {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .benefits-main-title {
        font-size: 1.8rem;
    }
    
    .benefit-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
