/* services.css */

/* Service Hero Section */
.service-hero {
    padding: 100px 0 80px;
    position: relative;
    background: #F9F9F9;
    overflow: hidden;
}

.service-hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-hero-content {
    flex: 1.1;
    padding-top: 20px;
}

.service-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #1e1c1c;
}

.service-hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-form-card {
    flex: 0.9;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.hero-form-card .form-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-form-card h3 {
    font-size: 2.2rem;
    color: #1e1c1c;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-form-card .sale-badge-container {
    background: #41160d;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.hero-form-card .sale-discount {
    margin-bottom: 25px;
}

.hero-form-card .discount-tag {
    background: #1e1c1c;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
}

.hero-form-card .discount-text {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.hero-form-card .form-group {
    margin-bottom: 18px;
    text-align: left;
}

.hero-form-card label {
    display: block;
    font-size: 12px;
    color: #41160d;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: capitalize;
}

.hero-form-card input, .hero-form-card select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    background: #fcfcfc;
    color: #333;
    transition: all 0.3s ease;
}

.hero-form-card input:focus {
    outline: none;
    border-color: #41160d;
    background: #fff;
}

.hero-form-card button.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 50px;
    background: #41160d;
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(240, 92, 80, 0.2);
}

.hero-form-card button.btn-submit:hover {
    background: #2e0e08;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(240, 92, 80, 0.3);
}

/* Red Blob on Left Edge */
.edge-blob-left {
    position: absolute;
    left: -5%;
    top: 90%;
    width: 30%;
    height: 350px;
    background: #41160d;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    z-index: 1;
    opacity: 1;
}

/* Service Details Section */
.service-details {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-details-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-details-content {
    flex: 1;
}

.service-details-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
}

.service-details-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-stats-box {
    background: #1c1a1a;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    justify-content: space-around;
    margin-top: 45px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.service-stat .icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: #1e1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.service-stat h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.service-stat p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.service-details-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-details-image img {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    max-width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service-details-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #41160d;
    border-radius: 50%;
    right: -100px;
    bottom: -100px;
    z-index: 1;
}

/* Center CTA Section */
.center-cta {
    padding: 100px 0;
    background: #fcfcfc;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.center-cta-blob {
    position: absolute;
    left: 0;
    top: 30%;
    width: 12%;
    height: 180px;
    background: #41160d;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.center-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.center-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.center-cta p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 120px 0;
    background: var(--white);
}

.why-choose-header {
    margin-bottom: 50px;
}

.why-choose-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1c1c;
    position: relative;
    display: inline-block;
}

.why-choose-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1e1c1c;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1e1c1c;
    font-weight: 700;
}

.why-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Bottom CTA Banner */
.bottom-cta {
    padding: 60px 0 0px;
    background: var(--white);
    margin-bottom: -150px;
}

.bottom-cta-banner {
    background: #41160d;
    border-radius: 30px;
    padding: 80px 80px 80px 48%;
    position: relative;
    color: var(--white);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(240, 92, 80, 0.3);
}

.bottom-cta-img {
    position: absolute;
    left: 40px;
    bottom: 0;
    max-width: 42%;
    z-index: 2;
}

.bottom-cta-banner h2 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.bottom-cta-buttons .btn-white {
    background: var(--white);
    color: #41160d;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-hero-container, .service-details-container {
        flex-direction: column;
    }
    .bottom-cta-banner {
        padding: 50px 30px;
        text-align: center;
    }
    .bottom-cta-img {
        position: relative;
        left: 0;
        max-width: 60%;
        margin: 0 auto 30px;
        display: block;
    }
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .service-stats-box {
        flex-direction: column;
        gap: 30px;
    }
}


/* ISBN/Publishing Services Grid */
.isbn-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}
.isbn-service-card {
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}
.isbn-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    border-color: #41160d;
}
.isbn-service-card .icon {
    width: 48px;
    height: 48px;
    background: #41160d;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
}
.isbn-service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e1c1c;
}
.isbn-service-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}
/* Service Feature List */
.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.service-feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}
.service-feature-list li:last-child { border-bottom: none; }
@media (max-width: 600px) {
    .isbn-services-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Formatting & Publishing - Alternating Sections
   ===================================================== */

/* Top Cards Section */
.fp-section-cards {
    padding: 80px 0;
    background: #fff;
}

.fp-cards-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.fp-cards-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1e1c1c;
    line-height: 1.2;
}

.fp-cards-header p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

.fp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.fp-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 38px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.fp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: #41160d;
}

.fp-card-icon {
    width: 64px;
    height: 64px;
    background: #41160d;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.fp-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e1c1c;
}

.fp-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.fp-cards-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

/* Alternating Sections */
.fp-alt-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.fp-alt-section:nth-child(even) {
    background: #fafafa;
}

.fp-alt-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.fp-alt-reversed .fp-alt-container {
    flex-direction: row;
}

.fp-alt-content {
    flex: 1;
}

.fp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #41160d;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 5px 14px;
    background: rgba(240, 92, 80, 0.08);
    border-radius: 50px;
}

.fp-alt-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e1c1c;
}

.fp-alt-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.fp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.fp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.97rem;
    line-height: 1.7;
}

.fp-feature-list li:last-child {
    border-bottom: none;
}

.fp-feature-list li i {
    color: #41160d;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Alternating Image */
.fp-alt-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-alt-image img {
    border-radius: 20px;
    max-width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    object-fit: cover;
    max-height: 420px;
    width: 100%;
}

.fp-img-blob {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #41160d;
    border-radius: 50%;
    right: -80px;
    bottom: -80px;
    z-index: 1;
    opacity: 0.85;
}

.fp-img-blob-left {
    left: -80px;
    right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .fp-alt-container {
        flex-direction: column !important;
        gap: 40px;
    }
    .fp-cards-grid {
        grid-template-columns: 1fr;
    }
    .fp-img-blob {
        display: none;
    }
}

@media (max-width: 768px) {
    .fp-alt-content h2 { font-size: 1.8rem; }
    .fp-cards-header h2 { font-size: 1.8rem; }
}


