@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ========== Steps That Scale Your Success Section ========== */
.steps-scale-success-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.steps-scale-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.steps-scale-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-scale-label-btn {
    background: #8B4513;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.steps-scale-label-btn:hover {
    background: #6B3410;
}

.steps-scale-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin: 0;
    line-height: 1.2;
}

/* Timeline Wrapper */
.steps-scale-timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 40px 0;
}

/* Vertical Timeline Line */
.steps-scale-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            #8B4513 0px,
            #8B4513 8px,
            transparent 8px,
            transparent 16px);
    transform: translateX(-50%);
    z-index: 1;
}

/* Step Container */
.steps-scale-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.steps-step-left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.steps-step-right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
    flex-direction: row-reverse;
}

/* Step Card */
.steps-scale-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-scale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.steps-scale-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.steps-scale-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

/* Step Marker */
.steps-scale-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.steps-scale-number {
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.steps-scale-arrow {
    width: 24px;
    height: 24px;
    color: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-scale-arrow svg {
    width: 100%;
    height: 100%;
}

.steps-arrow-left {
    transform: translateX(-8px);
}

.steps-arrow-right {
    transform: translateX(8px);
}

/* ========== Our Proofreading Process Section ========== */
.proofreading-process-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.proofreading-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.proofreading-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.proofreading-process-label-btn {
    background: #8B4513;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.proofreading-process-label-btn:hover {
    background: #6B3410;
}

.proofreading-process-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin: 0;
    line-height: 1.2;
}

/* Timeline Wrapper */
.proofreading-process-timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 40px 0;
}

/* Vertical Timeline Line */
.proofreading-process-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            #8B4513 0px,
            #8B4513 8px,
            transparent 8px,
            transparent 16px);
    transform: translateX(-50%);
    z-index: 1;
}

/* Step Container */
.proofreading-process-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.proofreading-step-left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.proofreading-step-right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
    flex-direction: row-reverse;
}

/* Step Card */
.proofreading-process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 17px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proofreading-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.proofreading-process-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.proofreading-process-card-description {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

/* Step Marker */
.proofreading-process-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.proofreading-process-number {
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.proofreading-process-arrow {
    width: 24px;
    height: 24px;
    color: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proofreading-process-arrow svg {
    width: 100%;
    height: 100%;
}

.proofreading-arrow-left {
    transform: translateX(-8px);
}

.proofreading-arrow-right {
    transform: translateX(8px);
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    background: #F6F0D7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ========== Header Styles ========== */

/* Top Bar */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.talk-expert-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.talk-expert-btn:hover {
    background: #e8e8e8;
}

.expert-bullet {
    width: 8px;
    height: 8px;
    background: #8B4513;
    border-radius: 50%;
    display: inline-block;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Open Sans", Arial, sans-serif;
}

.phone-number {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.phone-number:hover {
    text-decoration: underline;
}

.phone-label {
    color: #8B4513;
    font-size: 14px;
    font-weight: 500;
}

/* Main Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 0;
    gap: 40px;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo-wrapper a {
    display: block;
    text-decoration: none;
}

.logo-wrapper img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-content {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 30px;
}

.logo-imperial {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    font-family: "Playfair Display", "Georgia", serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-icons {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.logo-book-icon {
    width: 22px;
    height: 22px;
    color: #8B4513;
    position: absolute;
    left: 110px;
    top: 20px;
}

.logo-quill-icon {
    width: 26px;
    height: 26px;
    color: #8B4513;
    position: absolute;
    left: 78px;
    top: -6px;
    transform: rotate(25deg);
}

.logo-publishers {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    font-family: "Playfair Display", "Georgia", serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -4px;
    padding-left: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    justify-self: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-top {
    gap: 30px;
    position: relative;
    left: 43px;
}

.nav-menu-bottom {
    gap: 20px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    padding: 6px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: #8B4513;
}

.nav-link.active {
    color: #8B4513;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #8B4513;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    padding-right: 8px;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    color: currentColor;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: #8B4513;
}

/* CTA Buttons */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    border: 1px solid #000;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.phone-button:hover {
    background: #f5f5f5;
}

.phone-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.live-chat-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #8B4513;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.live-chat-button:hover {
    background: #e55a00;
    transform: translateY(-1px);
}

.chat-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.publishing-hero {
    min-height: 80vh;
    background: #efebea;
    overflow: hidden;
}

.hero-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 110px 24px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.hero-left {
    width: 52%;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #0f1016;
    font-size: 45px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-title span {
    color: #000;
}

.hero-subtitle {
    margin-top: 24px;
    margin-bottom: 34px;
    color: #6f7780;
    font-size: 22px;
    line-height: 1.2;
}

.lead-form {
    width: 100%;
    max-width: 1120px;
}

.step-text {
    color: #0f1016;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 14px;
}

.field-strip {
    height: 72px;
    background: #ffffff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    box-shadow: 0 0 0 1px rgba(12, 18, 28, 0.04);
    overflow: hidden;
}

.field-col {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 18px 0 42px;
    position: relative;
}

.field-col input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #6f7780;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1;
}

.field-col input::placeholder {
    color: #7f8790;
}

.field-icon {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.62;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-user {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Ccircle cx='11' cy='7' r='4' stroke='%2395A0AA' stroke-width='1.6'/%3E%3Cpath d='M3.5 18.2C3.5 14.8 6.6 12.4 11 12.4C15.4 12.4 18.5 14.8 18.5 18.2' stroke='%2395A0AA' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M7.2 2.8L10 6.7L8.4 8.8C9.3 10.9 11.1 12.7 13.2 13.6L15.3 12L19.2 14.8L17.8 19.2C16.8 19.8 15.7 20.1 14.6 20.1C7.9 20.1 1.9 14.1 1.9 7.4C1.9 6.3 2.2 5.2 2.8 4.2L7.2 2.8Z' stroke='%2395A0AA' stroke-width='1.4' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Crect x='3' y='5' width='16' height='12' rx='2' stroke='%2395A0AA' stroke-width='1.6'/%3E%3Cpath d='M4.5 7L11 11.2L17.5 7' stroke='%2395A0AA' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.next-btn {
    height: 52px;
    width: 180px;
    margin-right: 10px;
    border: 0;
    border-radius: 12px;
    background: #8B4513;
    color: #ffffff;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

.consent-row {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 1020px;
    color: #0d1118;
    font-size: 14px;
    line-height: 1.4;
}

.consent-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 5px;
    accent-color: #000;
}

.consent-row a {
    color: #000;
}

.hero-right {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12px;
}

.book-image {
    width: 100%;
    max-width: 690px;
    height: auto;
    display: block;
}


/* Trending section */
.trending-section {
    background: #fff;
    padding: 48px 0 90px;
}

.trending-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 56px;
}

.trending-title {
    font-size: 38px;
    line-height: 1.1;
    color: #121522;
    font-weight: 700;
}

.trending-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.tab-btn {
    background: transparent;
    border: 0;
    color: #101423;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #000;
}

.tab-btn.active {
    background: #8B4513;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
}

.trending-grid {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.review-card {
    width: 400px;
    flex: 0 0 400px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.review-book {
    width: 118px;
    flex: 0 0 118px;
}

.review-book img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.18);
}

.review-content {
    padding-top: 4px;
}

.review-text {
    font-size: 14px;
    line-height: 1.35;
    color: #5b6776;
    margin-bottom: 12px;
}

.review-stars {
    color: #8B4513;
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 1;
}

/* Books Carousel */
.books-carousel-wrapper {
    flex: 1;
    position: relative;
}

.books-carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.book-card {
    width: 145px;
    flex: 0 0 145px;
}

.book-card img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.18);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

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

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

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

.carousel-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1);
}

.book-card.is-hidden {
    display: none;
}

/* Testimonial Section - New Layout */
.testimonial-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #1a2332 0%, #89986D 100%);
    overflow: hidden;
}

.testimonial-wrap {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    align-items: center;
}

.testimonial-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(20%);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 24px;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
    margin-bottom: 30px;
}

.testimonial-title {
    font-size: 32px;
    line-height: 1.2;
    color: #1a2332;
    font-weight: 500;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 2px;
}

.testimonial-quote {
    margin-bottom: 40px;
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: #ff6b6b;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.quote-text {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-style: italic;
    padding-left: 40px;
}

.testimonial-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b6b;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, #bdc3c7 50%, transparent 100%);
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 24px;
    color: #000;
}

.rating-text {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-cta,
.secondary-cta {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    border: 2px solid;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.primary-cta {
    background: linear-gradient(135deg, #8B4513 0%, #8B4513 100%);
    color: #000;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e74c3c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.secondary-cta {
    background: transparent;
    color: #000;
    border-color: #000;
}

.secondary-cta:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* Trustpilot Section */
/* Trustpilot Section - New Hero Layout */
.trustpilot-section {
    background: linear-gradient(135deg, #1a2332 0%, #89986D 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.trustpilot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.trustpilot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Hero Review Card */
.hero-review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.2;
    margin: 0;
}

.trustpilot-badge-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.tp-logo {
    font-size: 18px;
    font-weight: 700;
    color: #00b67a;
}

.rating-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-inline .stars {
    color: #ffc107;
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.featured-review {
    position: relative;
}

.quote-mark {
    font-size: 120px;
    color: #00b67a;
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

.featured-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 40px;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
    display: block;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #6c757d;
    display: block;
    margin-bottom: 8px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
}

.verified-badge {
    background: #00b67a;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #00b67a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* Mini Reviews */
.mini-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.mini-review {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mini-review:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.mini-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 12px;
}

.mini-quote {
    font-size: 14px;
    color: white;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}

.mini-author {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* CTA Section */
.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-review-btn,
.secondary-review-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    border: 2px solid;
}

.primary-review-btn {
    background: linear-gradient(135deg, #00b67a 0%, #009f6b 100%);
    color: white;
    border-color: #00b67a;
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.3);
}

.primary-review-btn:hover {
    background: linear-gradient(135deg, #009f6b 0%, #00875a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 182, 122, 0.4);
}

.secondary-review-btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.secondary-review-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Publishing Solutions Section */
.publishing-solutions {
    background: #F6F0D7;
    padding: 60px 0;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-title {
    font-size: 36px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #8B4513;
    margin: 0 auto;
}

.solutions-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.carousel-nav {
    background: #ffffff;
    border: 2px solid #e9ecef;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #6c757d;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-nav:hover {
    background: #89986D;
    color: white;
    border-color: #000;
    transform: scale(1.1);
}

.carousel-nav:disabled {
    background: #F6F0D7;
    color: #dee2e6;
    border-color: #dee2e6;
    cursor: not-allowed;
    transform: none;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.genre-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

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

.genre-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin-bottom: 20px;
    background: #F6F0D7;
    border-radius: 12px;
    overflow: hidden;
}

.book-mockup {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: perspective(600px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.book-mockup:hover {
    transform: perspective(600px) rotateY(-10deg) scale(1.05);
}

.book-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 60px;
    height: 60px;
    background: #ffd700;
    top: 15px;
    left: 15px;
}

.circle-2 {
    width: 45px;
    height: 45px;
    background: #87ceeb;
    bottom: 20px;
    right: 20px;
}

.circle-3 {
    width: 55px;
    height: 55px;
    background: #ff6b6b;
    top: 20px;
    right: 15px;
}

.circle-4 {
    width: 40px;
    height: 40px;
    background: #4ecdc4;
    bottom: 25px;
    left: 25px;
}

.circle-5 {
    width: 58px;
    height: 58px;
    background: #8B4513;
    top: 18px;
    left: 18px;
}

.circle-6 {
    width: 42px;
    height: 42px;
    background: #28a745;
    bottom: 22px;
    right: 22px;
}

.circle-7 {
    width: 50px;
    height: 50px;
    background: #6f42c1;
    top: 25px;
    right: 18px;
}

.circle-8 {
    width: 35px;
    height: 35px;
    background: #fd7e14;
    bottom: 28px;
    left: 28px;
}

.genre-content {
    text-align: center;
}

.genre-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.genre-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 18px;
    line-height: 1.4;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: #495057;
}

.check-icon {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #8B4513;
    transform: scale(1.2);
}

.indicator:hover {
    background: #6c757d;
    transform: scale(1.1);
}

.scroll-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.scroll-text {
    color: #6c757d;
}

.scroll-arrow {
    color: #8B4513;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.scroll-more:hover .scroll-arrow {
    transform: translateX(5px);
}

/* ========== Our Full Suite of Services Section ========== */
.full-suite-section {
    background: #fdfcf6;
    /* Very soft cream background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.full-suite-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.full-suite-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.full-suite-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.full-suite-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: #8B4513;
    margin: 0 auto 25px;
    border-radius: 2px;
}

.full-suite-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Grid Layout */
.full-suite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.full-suite-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.full-suite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fefcf3 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.full-suite-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(139, 69, 19, 0.15);
    border-color: #8B4513;
}

.full-suite-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.card-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fdfcf6;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    color: #8B4513;
}

.full-suite-card:hover .card-icon-wrapper {
    background: #8B4513;
    color: #ffffff;
    transform: rotate(8deg) scale(1.1);
}

.full-suite-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-link .arrow {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #6B3410;
}

.card-link:hover .arrow {
    transform: translateX(5px);
}

/* ========== What Sets Us Apart Section - Redesigned ========== */
.what-sets-us-apart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.what-sets-us-apart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.apart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.apart-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.apart-title {
    font-size: 48px;
    line-height: 1.2;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.apart-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-circle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Showcase */
.features-showcase {
    margin-bottom: 60px;
}

/* Main Feature */
.main-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-visual {
    position: relative;
    flex-shrink: 0;
}

.feature-icon-wrapper {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.visual-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    top: -20px;
    right: -20px;
}

.circle-2 {
    width: 60px;
    height: 60px;
    background: #4ecdc4;
    bottom: -15px;
    left: -15px;
}

.decoration-line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, transparent);
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.feature-details {
    flex: 1;
}

.feature-details .feature-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight {
    background: #e8f5e8;
    color: #28a745;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card.modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.feature-card.modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(197, 216, 157, 0.5) !important;
}

.highlight-card::before {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%) !important;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.card-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.percentage-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 800;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

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

/* Call to Action */
.apart-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-button {
    background: #8B4513;
    color: white;
    border: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    flex-shrink: 0;
}

.cta-button:hover {
    background: #6B3410;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

/* Publishing Partner Section */
.publishing-partner {
    background: #8B4513;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.deco-star {
    position: absolute;
    top: 15%;
    left: 8%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.deco-pen {
    position: absolute;
    top: 25%;
    left: 15%;
    opacity: 0.7;
    transform: rotate(-25deg);
    animation: float 8s ease-in-out infinite reverse;
}

.deco-circle {
    position: absolute;
    bottom: 15%;
    right: 10%;
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.deco-dots {
    position: absolute;
    bottom: 25%;
    right: 25%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #8B4513;
    border-radius: 50%;
    opacity: 0.6;
}

.dot:nth-child(2) {
    margin-left: 10px;
}

.dot:nth-child(4) {
    margin-left: 10px;
}

/* Main Content */
.partner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partner-title {
    font-size: 36px;
    line-height: 1.2;
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
}

.partner-description {
    margin-bottom: 30px;
}

.description-text {
    font-size: 15px;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 15px;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.phone-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #8B4513;
}

.partner-cta {
    background: #8B4513;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 216, 157, 0.3);
}

.partner-cta:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 216, 157, 0.4);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Publishing Services Section - Single Line Layout */
.publishing-services {
    background: #F6F0D7;
    padding: 60px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Section */
.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-title {
    font-size: 32px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-description {
    font-size: 14px;
    color: #6c757d;
    max-width: 500px;
    margin: 15px auto 0;
    line-height: 1.5;
}

/* Single Line 6 Grid Layout */
.services-grid-six {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.service-grid-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 180px;
}

.service-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B4513 0%, #89986D 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-grid-item:hover .service-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(156, 171, 132, 0.25);
}

.service-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-name {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-brief {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

/* Hover Content Overlay */
.service-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B4513 0%, #89986D 100%);
    color: white;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.service-grid-item:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.hover-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    line-height: 1.2;
}

.hover-description {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.hover-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover-features li {
    font-size: 10px;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Call to Action */
.services-cta {
    text-align: center;
}

.services-cta-button {
    background: #8B4513;
    color: #000;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 216, 157, 0.3);
}

.services-cta-button:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 216, 157, 0.4);
}

/* Publishing Process Section */
.publishing-process {
    background: #F6F0D7;
    padding: 80px 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.process-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.process-image {
    flex: 1;
    max-width: 500px;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.process-details {
    flex: 1;
    max-width: 600px;
}

.process-title {
    font-size: 42px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.process-details .title-underline {
    width: 80px;
    height: 3px;
    background: #8B4513;
    margin: 20px 0 30px 0;
}

.process-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 35px;
    font-family: "Open Sans", Arial, sans-serif;
}

.process-cta {
    background: #8B4513;
    color: #000;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 216, 157, 0.3);
}

.process-cta:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 216, 157, 0.4);
}

/* Book Publishing Hero Section */
.book-publishing-hero {
    min-height: 50vh;
    /* background: linear-gradient(135deg, #8B45136e 0%, #8B4513b2 50%, #8B4513 100%); */
    background: #efebea;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.book-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.book-hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.book-hero-title {
    color: #000;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.book-hero-subtitle {
    color: #000;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    font-family: "Open Sans", Arial, sans-serif;
}

.book-hero-visual {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-devices-mockup {
    width: 100%;
    height: auto;
    max-width: 800px;
    object-fit: contain;
}
.book-devices-mockup1 {
    width: 60%;
    height: auto;
    max-width: 800px;
    object-fit: contain;
}

/* Landscape Lead Form Section - Single Line */
.landscape-lead-form-section {
    background: #efebea;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.landscape-lead-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(139,69,19,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.landscape-lead-form-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.landscape-single-line-form {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.landscape-form-field {
    flex: 1;
    min-width: 0;
}

.landscape-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.landscape-input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #8B4513;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.landscape-form-field input[type="text"],
.landscape-form-field input[type="email"] {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
}

.landscape-form-field input:hover {
    border-color: #d0d0d0;
}

.landscape-form-field input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: #ffffff;
}

.landscape-form-field input::placeholder {
    color: #999;
}

.landscape-phone-wrapper {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
}

.landscape-phone-wrapper:hover {
    border-color: #d0d0d0;
}

.landscape-phone-wrapper:focus-within {
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.landscape-phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 12px 12px 14px;
    background: #f8f8f8;
    border-right: 1.5px solid #e0e0e0;
    font-size: 14px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    color: #8B4513;
    white-space: nowrap;
    flex-shrink: 0;
}

.landscape-phone-prefix .landscape-input-icon {
    position: static;
    opacity: 1;
    width: 16px;
    height: 16px;
}

.landscape-phone-input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    transition: background 0.3s ease;
    min-width: 0;
}

.landscape-phone-input:focus {
    outline: none;
    background: #ffffff;
}

.landscape-phone-input::placeholder {
    color: #999;
}

.landscape-submit-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.landscape-submit-btn:hover {
    background: linear-gradient(135deg, #C4B599 0%, #6B3410 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.35);
}

.landscape-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.25);
}

.landscape-submit-btn svg {
    transition: transform 0.3s ease;
}

.landscape-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Reviews & Ratings Section */
.reviews-ratings-section {
    background: url(../img/hm-stage-banner.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.reviews-header {
    flex: 1;
    max-width: 400px;
}

.reviews-main-title {
    font-size: 26px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.reviews-subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.rating-platforms {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 600px;
}

.rating-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.platform-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(0);
}

.rating-score {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    font-family: "Open Sans", Arial, sans-serif;
}

.rating-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.star {
    color: #ffc107;
    font-size: 16px;
    line-height: 1;
}

/* Publishing Steps Section */
.publishing-steps-section {
    background: #fff;
    padding: 60px 0;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.step-description {
    font-size: 13px;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 20px;
    font-family: "Open Sans", Arial, sans-serif;
    text-align: left;
}

.step-btn {
    background: #bc6c25;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;
    transition: all 0.3s ease;

}

.step-btn:hover {
    background: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 216, 157, 0.4);
}

/* Professional Editing Services Section */
.professional-editing-services {
    background: #F6F0D7;
    padding: 60px 0;
    position: relative;
}

.editing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.editing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.header-decoration {
    position: absolute;
    top: -15px;
    left: 50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #20c997 100%);
    border-radius: 50% 30% 50% 30%;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.editing-main-title {
    font-size: 32px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.editing-service {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.editing-service.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    max-width: 350px;
}

.service-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.service-content {
    flex: 1;
    max-width: 450px;
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.service-pricing {
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.price-details {
    font-size: 13px;
    color: #6c757d;
    margin-left: 8px;
    font-family: "Open Sans", Arial, sans-serif;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
}

.service-features li:before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #8B4513;
    font-weight: bold;
}

.service-cta-btn {
    background: #8B4513;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 216, 157, 0.3);
}

.service-cta-btn:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 216, 157, 0.4);
}

/* Professional Editing Services - New Layout (Book Cover Design Services) */
.professional-editing-services-new {
    background:
        linear-gradient(135deg, #8B4513 0%, #b87433 45%, #f5e7d7 100%),
        url(../img/hm-stage-banner.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.editing-new-header {
    text-align: center;
    margin-bottom: 30px;
}

.editing-new-title {
    font-size: 32px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.editing-new-subtitle {
    font-size: 16px;
    color: #f8efe6;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.editing-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.editing-service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 420px;
    width: 100%;
}

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

.editing-service-card.featured {
    border: 2px solid #8B4513;
    transform: scale(1.02);
}

.editing-service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.service-card-header {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.service-image-container {
    width: 100%;
    height: 100%;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.editing-service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8B4513;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
}

.featured-badge {
    background: #8B4513;
    color: #ffffff;
}

.service-card-content {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    text-align: center;
    width: 100%;
}

.service-card-pricing {
    margin-bottom: 18px;
    text-align: center;
    padding: 15px;
    background: #f5e7d7;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin-bottom: 4px;
    text-align: center;
}

.service-price-note {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 2px;
    font-family: "Open Sans", Arial, sans-serif;
    text-align: center;
}

.service-price-extra {
    display: block;
    font-size: 11px;
    color: #868e96;
    font-family: "Open Sans", Arial, sans-serif;
    text-align: center;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    text-align: left;
    height: 120px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #8B4513 #f1f3f4;
}

.service-card-features::-webkit-scrollbar {
    width: 4px;
}

.service-card-features::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 2px;
}

.service-card-features::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 2px;
}

.service-card-features::-webkit-scrollbar-thumb:hover {
    background: #a55a23;
}

/* Special styling for first package (Copy Editing) - no wrapping */
.editing-service-card:first-child .service-card-features {
    height: auto;
    overflow-y: visible;
}

.editing-service-card:first-child .service-card-features li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    text-align: left;
}

.feature-icon {
    color: #8B4513;
    font-weight: bold;
    margin-right: 8px;
    margin-top: 1px;
    flex-shrink: 0;
}

.service-card-btn {
    background: linear-gradient(135deg, #8B4513 0%, #b87433 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.35);
}

.service-card-btn:hover {
    background: linear-gradient(135deg, #b87433 0%, #e6b679 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 216, 157, 0.4);
}

/* Contact CTA Section */
.contact-cta {
    background: url(../img/hm-stage-banner.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.contact-content {
    text-align: center;
}

.contact-title {
    font-size: 36px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-button {
    background: #fff;
    color: #000;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 216, 157, 0.4);
}

.contact-cta-button:hover {
    background: #8B4513;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(197, 216, 157, 0.5);
}

/* Decorative Elements */
.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.decoration-star {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.decoration-pen {
    position: absolute;
    top: 30%;
    left: 8%;
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    opacity: 0.7;
    transform: rotate(-25deg);
    animation: float 8s ease-in-out infinite reverse;
}

.decoration-pen::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.decoration-circle {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 100px;
    height: 100px;
    border: 8px solid #fff;
    border-radius: 50%;
    opacity: 0.6;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: rotate 12s linear infinite;
}

.decoration-dots {
    position: absolute;
    bottom: 30%;
    right: 12%;
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.decoration-dots::before,
.decoration-dots::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8B4513;
    border-radius: 50%;
}

.decoration-dots::before {
    top: 0;
    left: 0;
    box-shadow: 15px 0 0 #ffffff, 30px 0 0 #ffffff, 0 15px 0 #ffffff, 15px 15px 0 #ffffff, 30px 15px 0 #ffffff, 0 30px 0 #ffffff, 15px 30px 0 #ffffff, 30px 30px 0 #ffffff;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========== Book Editing Services Modern Layout ========== */
.book-editing-services-modern {
    background: linear-gradient(135deg, #fff 0%, #fff 50%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.book-editing-services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f39c12" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e67e22" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.book-editing-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.book-editing-modern-header {
    text-align: center;
    margin-bottom: 70px;
}

.modern-section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #89986D);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

.book-editing-modern-title {
    font-size: 38px;
    font-weight: 500;
    color: #000;
    font-family: "Playfair Display", serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.book-editing-modern-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.book-editing-modern-layout {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 30px;
    margin-bottom: 50px;
}

.book-editing-modern-layout-split .book-editing-modern-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.primary-column {
    align-self: flex-start;
}

.secondary-column {
    align-self: flex-start;
}

.book-editing-modern-service {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.book-editing-modern-service::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #8B4513, #8B4513);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.book-editing-modern-service:hover::before {
    transform: scaleY(1);
}

.book-editing-modern-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* First 3 cards in first row - each spans 2 columns */
.book-editing-modern-service:nth-child(1) {
    grid-column: 1 / 3;
}

.book-editing-modern-service:nth-child(2) {
    grid-column: 3 / 5;
}

.book-editing-modern-service:nth-child(3) {
    grid-column: 5 / 7;
}

/* Last 2 cards in second row - centered (each spans 2 columns) */
.book-editing-modern-service:nth-child(4) {
    grid-column: 2 / 4;
}

.book-editing-modern-service:nth-child(5) {
    grid-column: 4 / 6;
}

.modern-service-visual {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modern-service-number {
    display: none;
}

.modern-service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8B4513, #8B4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.3);
}

.modern-service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #8B4513, #89986D);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-editing-modern-service:hover .modern-service-icon::before {
    opacity: 1;
}

.modern-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    /* Tint icons to brand brown #8B4513 */
    filter: invert(21%) sepia(63%) saturate(652%) hue-rotate(3deg) brightness(92%) contrast(93%);
    transition: all 0.3s ease;
}

.book-editing-modern-service:hover .modern-icon {
    transform: scale(1.1);
}

.modern-service-number {
    font-size: 18px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Playfair Display", serif;
    background: rgba(243, 156, 18, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(243, 156, 18, 0.2);
}

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

.modern-service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.modern-service-title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    font-family: "Playfair Display", serif;
    margin: 0;
}

.modern-service-tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.modern-service-tag.popular {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.modern-service-tag.comprehensive {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.modern-service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 25px;
    text-align: justify;
}

.modern-service-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8B4513, #89986D);
    border-radius: 50%;
    flex-shrink: 0;
}

.book-editing-modern-cta {
    background: linear-gradient(135deg, #89986D, #89986D);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-editing-modern-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.modern-cta-content {
    position: relative;
    z-index: 2;
}

.modern-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}

.modern-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.modern-cta-button {
    background: linear-gradient(135deg, #8B4513, #89986D);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.modern-cta-button:hover {
    background: linear-gradient(135deg, #89986D, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
}

/* ========== Book Editing Services Section ========== */
.book-editing-services {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.book-editing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-editing-header {
    text-align: center;
    margin-bottom: 60px;
}

.book-editing-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #89986D);
    margin: 0 auto;
    border-radius: 2px;
}

.book-editing-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.book-service-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #8B4513, #89986D);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.book-service-item:hover::before {
    transform: scaleY(1);
}

.book-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-icon-container {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F6F0D7, #e9ecef);
    border-radius: 16px;
    border: 2px solid rgba(243, 156, 18, 0.1);
    transition: all 0.3s ease;
}

.book-service-item:hover .service-icon-container {
    background: linear-gradient(135deg, #8B4513, #89986D);
    border-color: #8B4513;
    transform: scale(1.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

.book-service-item:hover .service-icon {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.service-text-content {
    flex: 1;
    padding-left: 10px;
}

.service-name {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.service-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #89986D);
    border-radius: 2px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 16px;
    text-align: justify;
}

.service-description:last-child {
    margin-bottom: 0;
}

.service-description strong {
    color: #000;
    font-weight: 500;
}

/* ========== Why Palmetto Publishing Section ========== */
.why-palmetto-section {
    background: url(../img/hm-stage-banner.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.why-palmetto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.why-palmetto-header {
    text-align: center;
    margin-bottom: 10px;
}

.why-palmetto-title {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.why-palmetto-underline {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    margin: 0 auto;
    border-radius: 2px;
}

.why-palmetto-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-palmetto-intro-text {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 300;
}

.why-palmetto-link {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 216, 157, 0.5);
    transition: all 0.3s ease;
}

.why-palmetto-link:hover {
    color: #8B4513;
    border-bottom-color: #8B4513;
}

/* 4-card grid layout */
.why-palmetto-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: relative;
}

/* Individual cards */
.why-palmetto-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-palmetto-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.why-palmetto-card-content {
    position: relative;
    z-index: 2;
    padding: 18px 18px 20px;
    color: #000;
}

.why-palmetto-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: "Playfair Display", "Georgia", serif;
    letter-spacing: 0.3px;
}

.why-palmetto-card-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.why-palmetto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Background images reused from services above */
.why-palmetto-card.card-1,
.why-palmetto-card.card-2,
.why-palmetto-card.card-3,
.why-palmetto-card.card-4 {
    background: #ffffff45;
    border: 1px solid #000;
    backdrop-filter: blur(10px);
}



/* Decorative Elements */
.why-palmetto-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.why-palmetto-starburst {
    position: absolute;
    bottom: 50px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.4;
}

.why-palmetto-diagonal-line {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 200px;
    height: 8px;
    background: linear-gradient(135deg, #17A2B8, #89986D);
    transform: rotate(-25deg);
    transform-origin: left center;
    opacity: 0.6;
}

.why-palmetto-orange-blob {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 120px;
    height: 120px;
    background: radial-gradient(ellipse at 30% 40%, #FF6B35 0%, #FF8C5A 50%, transparent 70%);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    opacity: 0.5;
    filter: blur(2px);
}

.why-palmetto-radiating-lines {
    position: absolute;
    top: 100px;
    right: 100px;
    width: 100px;
    height: 100px;
}

.why-palmetto-radiating-lines::before,
.why-palmetto-radiating-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(to bottom,
            #8B4513 0px,
            #8B4513 4px,
            transparent 4px,
            transparent 8px);
    opacity: 0.6;
}

.why-palmetto-radiating-lines::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.why-palmetto-radiating-lines::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.why-palmetto-radiating-lines {
    background:
        repeating-linear-gradient(0deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px),
        repeating-linear-gradient(45deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px),
        repeating-linear-gradient(135deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px);
    background-size: 2px 40px, 2px 40px, 2px 40px, 2px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    mask: radial-gradient(circle, transparent 30%, black 50%);
    -webkit-mask: radial-gradient(circle, transparent 30%, black 50%);
}

/* ========== Book Editing Process Section ========== */
.book-editing-process-section {
    background: #f5f5f0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><defs><pattern id="woodgrain" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M0 0 L200 0 L200 200 L0 200 Z" fill="%23f5f5f0"/><path d="M0 50 Q50 40 100 50 T200 50" stroke="%23e8e8e0" stroke-width="0.5" fill="none" opacity="0.3"/><path d="M0 100 Q50 90 100 100 T200 100" stroke="%23e8e8e0" stroke-width="0.5" fill="none" opacity="0.3"/><path d="M0 150 Q50 140 100 150 T200 150" stroke="%23e8e8e0" stroke-width="0.5" fill="none" opacity="0.3"/><circle cx="30" cy="30" r="1" fill="%23d0d0c0" opacity="0.2"/><circle cx="170" cy="50" r="1.5" fill="%23d0d0c0" opacity="0.2"/><circle cx="50" cy="170" r="1" fill="%23d0d0c0" opacity="0.2"/><circle cx="150" cy="180" r="1.5" fill="%23d0d0c0" opacity="0.2"/></pattern></defs><rect width="200" height="200" fill="url(%23woodgrain)"/></svg>');
    padding: 60px 0;
    position: relative;
}

.book-editing-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.book-editing-process-header {
    text-align: center;
    margin-bottom: 10px;
}

.book-editing-process-title {
    font-size: 34px;
    font-weight: 500;
    color: #000;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.book-editing-process-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #8b451380);
    margin: 0 auto;
    border-radius: 2px;
}

.book-editing-process-intro {
    text-align: center;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.book-editing-process-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.book-editing-process-transition {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0;
}

.book-editing-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.process-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.process-step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #8b451380);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(156, 171, 132, 0.3);
}

.process-step-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
}

.process-step-content {
    flex: 1;
    width: 100%;
}

.process-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 12px;
    margin-top: 0;
}

.process-step-text {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0;
}

/* ========== Streamlined Book Writing Process Section ========== */
.streamlined-writing-process-section {
    background: #ffffff;
    padding: 50px 0;
    position: relative;
}

.streamlined-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.streamlined-process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.streamlined-process-left {
    display: flex;
    flex-direction: column;
}

.streamlined-process-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.streamlined-process-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

.streamlined-process-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    font-family: "Playfair Display", "Georgia", serif;
    margin: 0;
    line-height: 1.2;
}

.streamlined-process-subtitle {
    font-size: 14px;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0;
}

.streamlined-process-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.streamlined-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff;
}

.streamlined-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    padding: 8px 12px;
    border-radius: 4px;
}

.streamlined-step-number {
    flex-shrink: 0;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
}

.streamlined-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    line-height: 1.2;
}

.streamlined-step-description {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0;
}

.streamlined-process-cta {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 5px;
}

.streamlined-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.streamlined-cta-phone {
    background: #FFD700;
    color: #333;
    border: none;
}

.streamlined-cta-phone:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.streamlined-cta-chat {
    background: #ffffff;
    color: #333;
    border: 2px solid #000;
}

.streamlined-cta-chat:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.streamlined-process-right {
    position: relative;
}

.streamlined-process-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #FF8C00;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.streamlined-process-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========== Additional Self-Publishing Services Section ========== */
.self-publishing-services-section {
    background: url(../img/hm-stage-banner.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.self-publishing-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.self-publishing-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.self-publishing-services-title {
    font-size: 38px;
    font-weight: 400;
    color: #f5f5f5;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.self-publishing-services-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #8b451380);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.self-publishing-services-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.self-publishing-services-intro .highlight-text {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 3px;
    font-weight: 500;
}

.self-publishing-services-subheading {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    font-family: "Playfair Display", "Georgia", serif;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.self-publishing-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.self-publishing-service-card {
    background: #ffffff45;
    border: 1px solid #000;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
}

.self-publishing-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.self-publishing-service-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.self-publishing-service-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
}

.self-publishing-service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

.self-publishing-service-description .highlight-text {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 3px;
    font-weight: 500;
}

.self-publishing-service-btn {
    background: linear-gradient(135deg, #8B4513, #8b451380);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(197, 216, 157, 0.3);
}

.self-publishing-service-btn:hover {
    background: linear-gradient(135deg, #8B4513, #89986D);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 216, 157, 0.4);
}

/* Decorative Elements */
.self-publishing-services-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.self-publishing-teal-shape {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 300px;
    background: linear-gradient(135deg, rgba(156, 171, 132, 0.4) 0%, rgba(156, 171, 132, 0.2) 50%, transparent 100%);
    border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
    opacity: 0.6;
    filter: blur(3px);
}

.self-publishing-starburst {
    position: absolute;
    left: 40px;
    top: 45%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.5;
}

.self-publishing-orange-blob {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(ellipse at 30% 40%, rgba(255, 107, 53, 0.6) 0%, rgba(255, 140, 90, 0.4) 50%, transparent 70%);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    opacity: 0.6;
    filter: blur(2px);
}

.self-publishing-radiating-lines {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px),
        repeating-linear-gradient(45deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px),
        repeating-linear-gradient(135deg, transparent, transparent 8px, #8B4513 8px, #8B4513 10px);
    background-size: 2px 40px, 2px 40px, 2px 40px, 2px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    mask: radial-gradient(circle, transparent 30%, black 50%);
    -webkit-mask: radial-gradient(circle, transparent 30%, black 50%);
}

/* ========== Authors Love Working With Us Section ========== */
.authors-love-section {
    background: #ffffff;
    padding: 80px 0;
    border-top: 2px solid #1a2332;
    border-bottom: 2px solid #8B4513;
    position: relative;
}

.authors-love-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.authors-love-header {
    text-align: center;
    margin-bottom: 60px;
}

.authors-love-title {
    font-size: 38px;
    font-weight: 400;
    color: #1a2332;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.authors-love-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #8b451380);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.authors-love-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.authors-love-subtitle .highlight-link {
    color: #1a2332;
    text-decoration: underline;
    text-decoration-color: #8B4513;
    text-underline-offset: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.authors-love-subtitle .highlight-link:hover {
    color: #8B4513;
    text-decoration-color: #1a2332;
}

.authors-love-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Book Cover */
.authors-love-book {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover-wrapper {
    position: relative;
    z-index: 2;
}

.book-cover-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    transform: rotate(-5deg);
    border-radius: 4px;
    position: relative;
    z-index: 3;
}

/* Decorative Elements for Book */
.book-decorative-blob {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(160, 82, 45, 0.3) 50%, transparent 100%);
    border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
    opacity: 0.7;
    filter: blur(4px);
    z-index: 1;
}

.book-decorative-ring {
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 8px solid rgba(156, 171, 132, 0.3);
    border-radius: 50%;
    background: transparent;
    filter: blur(2px);
    z-index: 1;
}

.book-radiating-lines {
    position: absolute;
    top: -50px;
    right: 10px;
    width: 80px;
    height: 80px;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 6px,
            #1a2332 6px,
            #1a2332 8px);
    opacity: 0.4;
    transform: rotate(45deg);
    z-index: 2;
}

/* Right Side - Testimonial Card */
.authors-love-testimonial {
    position: relative;
}

.testimonial-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-open {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Playfair Display", "Georgia", serif;
    line-height: 1;
    opacity: 0.3;
    z-index: 1;
}

.testimonial-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-stars .star {
    font-size: 24px;
    color: #8B4513;
    text-shadow: 0 2px 4px rgba(156, 171, 132, 0.3);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-quote-close {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Playfair Display", "Georgia", serif;
    line-height: 1;
    opacity: 0.3;
    z-index: 1;
}

/* ========== Marketing Services Carousel Section ========== */
.marketing-services-section {
    background: #ffffff;
    padding: 80px 0;
}

.marketing-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.marketing-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.marketing-services-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a2332;
    font-family: "Playfair Display", "Georgia", serif;
    margin-bottom: 15px;
}

.marketing-services-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
}

.marketing-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.marketing-carousel {
    overflow: hidden;
    width: 100%;
}

.marketing-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.marketing-service-card {
    flex: 0 0 380px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

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

.marketing-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.marketing-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.marketing-carousel-prev {
    left: 0;
}

.marketing-carousel-next {
    right: 0;
}

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

.marketing-carousel-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1);
}

.service-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 15px 0;
}

/* Modern Marketing Services Section */
/* Marketing Services Alternating Layout */
.marketing-services-alternating-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.marketing-services-alternating-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.marketing-services-alternating-header {
    text-align: center;
    margin-bottom: 80px;
}

.marketing-services-alternating-title {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.marketing-services-alternating-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #8B4513);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.marketing-services-alternating-subtitle {
    font-size: 18px;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.marketing-services-alternating-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.marketing-service-alternating-item {
    display: flex;
    align-items: center;
    gap: 60px;
    background: url('../img/hm-stage-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.marketing-service-alternating-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg, #8B4513, #89986D);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.marketing-service-alternating-item:hover::before {
    transform: scaleY(1);
}

.marketing-service-alternating-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.marketing-service-alternating-item.reverse {
    flex-direction: row-reverse;
}

.marketing-service-alternating-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.marketing-alternating-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marketing-service-alternating-item:hover .marketing-alternating-img {
    transform: scale(1.05);
}

.marketing-service-alternating-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.marketing-alternating-price-tag {
    display: inline-block;
    background: #000000;
    color: #fff;
    padding: 5px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif", Georgia, serif;
    margin-bottom: 20px;
    align-self: flex-start;
}

.marketing-alternating-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    font-family: "Playfair Display", serif;
    margin-bottom: 18px;
    line-height: 1.3;
}

.marketing-alternating-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 25px;
}

.marketing-alternating-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.marketing-alternating-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.marketing-alternating-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    top: 2px;
}

.marketing-alternating-btn {
    background: linear-gradient(135deg, #000, #000);
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    font-family: "Bai Jamjuree", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.marketing-alternating-btn:hover {
    background: linear-gradient(135deg, #8B4513, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 216, 157, 0.4);
}

/* ========== Book Writing & Marketing Services Section ========== */
.book-services-section {
    background: #ffffff;
    padding: 80px 0;
}

.book-services-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.book-services-left {
    width: 100%;
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-stat-card {
    background: #F5F5DC;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.service-stat-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.service-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.service-stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #8B4513;
    line-height: 1.2;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.book-services-right {
    width: 100%;
    padding-top: 10px;
}

.book-services-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.book-services-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.book-services-text:last-of-type {
    margin-bottom: 30px;
}

.book-services-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.book-services-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.benefit-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF8C00;
    flex-shrink: 0;
    display: block;
}

/* ========== All-Inclusive Book Publishing Section ========== */
.all-inclusive-section {
    background: #ffffff;
    padding: 80px 0;
}

.all-inclusive-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.all-inclusive-title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.all-inclusive-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 50px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.all-inclusive-carousel {
    position: relative;
    width: 100%;
}

.all-inclusive-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.all-inclusive-card {
    background: #F5F5DC;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.all-inclusive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.all-inclusive-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-inclusive-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.all-inclusive-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    line-height: 1.3;
}

.all-inclusive-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
}

.all-inclusive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #D2B48C;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pagination-dot:hover {
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #8B4513;
    transform: scale(1.2);
}

/* ========== Our Full Suite of Services Section ========== */
.full-suite-section {
    background: #ffffff;
    padding: 80px 0;
}

.full-suite-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.full-suite-title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 50px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.full-suite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.full-suite-card {
    background: #8b451308;
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.full-suite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.full-suite-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-suite-icon svg {
    width: 100%;
    height: 100%;
}

.full-suite-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #6B3410;
    line-height: 1.3;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin: 0;
}

/* ========== Philosophy & Promotional Banner Section ========== */
.philosophy-banner-section {
    background: linear-gradient(180deg, #8B4513 0%, #552300 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-banner-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-banner-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-books {
    position: relative;
    width: 100%;
    max-width: 400px;
    perspective: 1000px;
}

.philosophy-book-front {
    position: relative;
    z-index: 2;
    transform: rotateY(-15deg) rotateX(5deg);
}

.philosophy-book-back {
    position: absolute;
    left: -20px;
    top: 10px;
    z-index: 1;
    transform: rotateY(-15deg) rotateX(5deg) scale(0.95);
    opacity: 0.8;
}

.philosophy-book-front img,
.philosophy-book-back img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.philosophy-banner-right {
    color: #ffffff;
}

.philosophy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.philosophy-line {
    width: 40px;
    height: 2px;
    background: #ffffff;
    display: block;
}

.philosophy-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Open Sans", Arial, sans-serif;
    color: #ffffff;
}

.philosophy-main-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    color: #ffffff;
}

.philosophy-subtitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 28px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    color: #ffffff;
}

.philosophy-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #f0f0f0;
}

.philosophy-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.philosophy-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #ffffff;
}

.feature-arrow {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}

.philosophy-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #8B4513 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 30px;
}

.philosophy-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-arrow {
    font-size: 18px;
    color: #000000;
}

.philosophy-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-phone-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #f0f0f0;
}

.contact-number {
    font-size: 20px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    color: #ffffff;
}

/* ========== Why Choose Us Section ========== */
.why-choose-section {
    background: #ffffff;
    padding: 80px 0;
}

.why-choose-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.why-choose-left {
    display: flex;
    flex-direction: column;
}

.why-choose-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.why-choose-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(180deg, #8B4513 0%, #552300 100%);
    display: block;
}

.why-choose-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000000;
}

.why-choose-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    color: #8B4513;
}

.why-choose-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333333;
}

.why-choose-reviews {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.review-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trustpilot-widget {
    align-items: flex-start;
}

.google-widget {
    align-items: flex-start;
}

.review-logo {
    display: flex;
    align-items: center;
}

.review-logo svg {
    width: auto;
    height: 24px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars .star {
    font-size: 20px;
    color: #00B67A;
}

.review-stars.yellow-stars .star {
    color: #FFD700;
}

.review-rating {
    font-size: 14px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333333;
}

.review-label {
    font-size: 12px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #666666;
}

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

.why-choose-feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
}

.feature-separator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #8B4513;
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content {
    flex: 1;
    width: 100%;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 0;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    color: #000000;
    line-height: 1.2;
}

.feature-description {
    font-size: 12px;
    line-height: 1.3;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333333;
    max-height: 55px;
    overflow-y: auto;
    padding-right: 8px;
    margin: 0;
}

.feature-description::-webkit-scrollbar {
    width: 4px;
}

.feature-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.feature-description::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 2px;
}

.feature-description::-webkit-scrollbar-thumb:hover {
    background: #6b3410;
}

.why-choose-cta-section {
    background: #ffffff;
    padding: 0 24px 80px;
}

.why-choose-cta-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-choose-cta-box {
    background: linear-gradient(180deg, #8B4513 0%, #552300 100%);
    border-radius: 12px;
    padding: 40px;
}

.cta-text {
    font-size: 16px;
    line-height: 1.7;
    font-family: "Open Sans", Arial, sans-serif;
    color: #ffffff;
    margin: 0;
}

.why-choose-cta-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.why-choose-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #8B4513 0%, #552300 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Open Sans", Arial, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.why-choose-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.why-choose-cta-button .cta-arrow {
    font-size: 18px;
    color: #fff;
}

.why-choose-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-phone-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-phone-icon svg {
    width: 100%;
    height: 100%;
}

.why-choose-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-choose-contact-label {
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #666666;
}

.why-choose-contact-number {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    color: #8B4513;
}

/* ========== Request Custom Book Banner Section ========== */
.request-book-banner {
    position: relative;
    min-height: 200px;
    background-image: url('../img/bannerBookImg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.request-book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.75);
    z-index: 1;
}

.request-book-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.request-book-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.request-book-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin: 0;
}

.request-book-subtitle {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #00CED1;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

.request-book-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    align-self: flex-start;
}

.request-book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.request-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-arrow-icon svg {
    width: 20px;
    height: 20px;
}

/* ========== FAQ Section ========== */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.faq-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
}

.faq-left {
    background: #8B4513;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #000 !important;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin: 0;
}

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

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    opacity: 0.9;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
    flex: 1;
}

.faq-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-chevron svg {
    width: 16px;
    height: 16px;
}

.faq-right {
    background: #8B4513;
    padding: 60px 50px;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.faq-publisher-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    text-align: center;
}

.faq-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -100px;
}

.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    clip-path: ellipse(50% 50% at 50% 50%);
}

/* ========== From Idea to Published Masterpiece Section ========== */
.idea-to-masterpiece-section {
    background: linear-gradient(135deg, #6b341099 0%, #6B3410 100%);
    padding: 80px 0;
    position: relative;
}

.idea-masterpiece-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.idea-masterpiece-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column */
.idea-masterpiece-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.idea-masterpiece-title {
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    line-height: 1.2;
    margin: 0;
}

.idea-masterpiece-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

.idea-masterpiece-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.idea-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.idea-cta-chat {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.idea-cta-chat:hover {
    background: #8B4513;
    color: #ffffff;
    border-color: #8B4513;
}

.idea-cta-started {
    background: transparent;
    color: #fff;
    border: 2px solid #fff !important;
}

.idea-cta-started:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Right Column - Form Card */
.idea-masterpiece-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.idea-contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 40px;
    max-width: 480px;
    width: 100%;
}

.idea-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idea-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.idea-form-group {
    display: flex;
    flex-direction: column;
}

.idea-form-group input,
.idea-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.idea-form-group input:focus,
.idea-form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.idea-form-group input::placeholder,
.idea-form-group textarea::placeholder {
    color: #999;
}

.idea-phone-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.idea-phone-prefix {
    padding: 14px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 15px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #666;
    white-space: nowrap;
}

.idea-phone-input {
    flex: 1;
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.idea-phone-input:focus {
    border-left: 1px solid #8B4513;
}

.idea-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: "Open Sans", Arial, sans-serif;
}

.idea-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.idea-submit-btn:hover {
    background: linear-gradient(135deg, #C4B599 0%, #6B3410 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.idea-submit-btn:active {
    transform: translateY(0);
}

/* ========== Contact Main Section (Contact Us Page) ========== */
.contact-main-section {
    background: #f5f5f7;
    padding: 80px 0;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: flex-start;
}

/* Left: Form Card */
.contact-form-wrapper {
    display: flex;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 28px 30px 30px;
    width: 100%;
}

.contact-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 6px 0;
}

.contact-form-subtitle {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 22px 0;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-row {
    display: flex;
    gap: 16px;
}

.contact-form-row-two .contact-form-group {
    flex: 1;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: 13px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
}

.contact-form-group label span {
    color: #c0392b;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #aaa;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.contact-form-consent {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.5;
    font-family: "Open Sans", Arial, sans-serif;
    color: #666;
}

.contact-checkbox input {
    margin-top: 3px;
}

.contact-checkbox a {
    color: #8B4513;
    text-decoration: none;
}

.contact-checkbox a:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #C4B599 0%, #6B3410 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(139, 69, 19, 0.25);
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Right: Info Cards Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 22px 22px 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-info-icon-phone {
    background: #f7e7c8;
}

.contact-info-icon-email {
    background: #e6f0ff;
}

.contact-info-icon-location {
    background: #e8f7f0;
}

.contact-info-icon-social {
    background: #f0ecff;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 6px 0;
}

.contact-info-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 12px 0;
}

.contact-info-phone-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    background: #D4C5A9;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-decoration: none;
    margin-bottom: 6px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-phone-btn:hover {
    background: #c4b599;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.contact-info-email-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 6px;
    background: #F7F7F7;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    text-decoration: none;
    margin-bottom: 6px;
}

.contact-info-email-btn:hover {
    background: #ececec;
}

.contact-info-note {
    font-size: 11px;
    color: #999;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

.contact-info-address {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

.contact-info-social-links {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.contact-social-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-social-circle:hover {
    background: #8B4513;
}

/* ========== FAQ Section ========== */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Open Sans", Arial, sans-serif;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    border-top: none;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq-item.active {
    border: 1px solid #000000;
    border-radius: 4px;
    margin: -1px 0;
    padding: 0;
}

.faq-item.active .faq-question {
    padding: 20px 20px 0 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Open Sans", Arial, sans-serif;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8B4513;
}

.faq-question:hover .faq-question-text {
    color: #8B4513;
}

.faq-question:hover .faq-icon {
    color: #8B4513;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #1a1a1a;
}

.faq-item.active .faq-question-text,
.faq-question[aria-expanded="true"] .faq-question-text {
    color: #1a1a1a;
    font-weight: 600;
}

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

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

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    padding-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.faq-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.faq-cta-chat {
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%) !important;
    color: #1a1a1a;
    border: none;
}

.faq-cta-chat:hover {
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 181, 153, 0.3);
}

.faq-cta-started {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.faq-cta-started:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========== What Makes Us Unique Section ========== */
.what-makes-unique-section {
    background: #8b451308;
    padding: 80px 0;
    position: relative;
}

.unique-container {
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Area */
.unique-header {
    text-align: center;
    margin-bottom: 60px;
}

.unique-label-btn {
    background: #8B4513;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.unique-label-btn:hover {
    background: #333333;
}

.unique-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Playfair Display", "Georgia", serif;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.unique-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Grid */
.unique-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 30px;
    margin-bottom: 60px;
}

.unique-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.unique-card-icon {
    width: 50px;
    height: 50px;
    color: #6B3410;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unique-card-icon svg {
    width: 100%;
    height: 100%;
}

.unique-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.unique-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

/* Statistics Section */
.unique-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.unique-stat-circle {
    background: #ffffff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-stat-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.unique-stat-icon {
    width: 32px;
    height: 32px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.unique-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 8px;
    line-height: 1;
}

.unique-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    font-family: "Open Sans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== Process for Book Cover Design Section ========== */
.book-cover-process-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.book-cover-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.book-cover-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.book-cover-process-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    margin: 0;
    line-height: 1.2;
}

/* Timeline Wrapper */
.book-cover-process-timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 40px 0;
}

/* Vertical Timeline Line */
.book-cover-process-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            #8B4513 0px,
            #8B4513 8px,
            transparent 8px,
            transparent 16px);
    transform: translateX(-50%);
    z-index: 1;
}

/* Step Container */
.book-cover-process-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.book-cover-step-left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.book-cover-step-right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
    flex-direction: row-reverse;
}

/* Step Card */
.book-cover-process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.book-cover-process-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #8B4513;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.book-cover-process-card-description {
    font-size: 13px;
    line-height: 1.6;
    color: #1a1a1a;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

/* Step Marker */
.book-cover-process-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.book-cover-process-number {
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.book-cover-process-arrow {
    width: 24px;
    height: 24px;
    color: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-process-arrow svg {
    width: 100%;
    height: 100%;
}

.book-cover-arrow-left {
    transform: translateX(-8px);
}

.book-cover-arrow-right {
    transform: translateX(8px);
}

/* ========== Footer Styles ========== */
.main-footer {
    background: linear-gradient(135deg, #6b341099 0%, #6B3410 100%);
    padding: 60px 0 30px;
    position: relative;
    width: 100%;
}

.main-footer::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-image {
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
}

.footer-description {
    margin-bottom: 30px;
}

.footer-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
}

/* Footer Headings */
.footer-heading {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: "Noto Serif", Georgia, serif;
    margin: 0 0 25px 0;
}

/* Footer Contact */
.footer-contact {
    margin-top: 20px;
}

.contact-item {
    font-size: 14px;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 12px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    stroke: #333;
    flex-shrink: 0;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.contact-item span {
    color: #000;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #8B4513;
    color: #fff;
    border-color: #8B4513;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Payment Logos */
.footer-payment {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-logo {
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.payment-logo.stripe {
    background: #635BFF;
    color: #ffffff;
    border-color: #635BFF;
}

.payment-logo.visa {
    background: #1434CB;
    color: #ffffff;
    border-color: #1434CB;
}

.payment-logo.mastercard {
    background: #EB001B;
    color: #ffffff;
    border-color: #EB001B;
}

.payment-logo.paypal {
    background: #0070BA;
    color: #ffffff;
    border-color: #0070BA;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}

.footer-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 10px;
    color: #333;
}

.footer-list a {
    font-size: 15px;
    color: #000 !important;
    text-decoration: none;
    font-family: "Open Sans", Arial, sans-serif;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #8B4513;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.footer-copyright {
    font-size: 14px;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-family: "Open Sans", Arial, sans-serif;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #8B4513;
}

/* ========== Pricing Section ========== */
.pricing-section {
    background: #FFF9E6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-label {
    background: #8B4513;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-title {
    font-size: 52px;
    font-family: 'Noto Serif', serif;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-subtitle {
    color: #555;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    border-radius: 24px;
    padding: 50px 35px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(255, 197, 68, 0.2);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 197, 68, 0.3);
}

.package-name {
    font-size: 24px;
    font-family: 'Noto Serif', serif;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.package-badge {
    background: #1A1A1A;
    color: #fff;
    padding: 6px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
    z-index: 10;
}

.discount-bar {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 35px;
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    position: relative;
}

/* Decorative vertical bar like in image */
.features-list::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 20px;
    bottom: 20px;
    width: 6px;
    background: #fff;
    border-radius: 10px;
    opacity: 0.9;
}

.features-list li {
    font-size: 15px;
    color: #fff;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
}

.check-icon {
    font-weight: 900;
    font-size: 18px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(26, 26, 26, 0.08);
    padding-top: 30px;
    gap: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.link-text {
    display: flex;
    flex-direction: column;
}

.link-text small {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 2px;
}

.link-text strong {
    font-size: 13px;
    font-weight: 800;
}

.consult-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.consult-btn:hover span {
    text-decoration: underline;
}

/* Decorative Shapes */
.pricing-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pricing-bg-shapes .shape {
    position: absolute;
    z-index: 1;
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.6;
}

.shape-circle-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    opacity: 0.4;
}

.shape-dots-1 {
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#D4C5A9 3px, transparent 3px);
    background-size: 24px 24px;
    top: 15%;
    left: 10%;
    opacity: 0.5;
}

.shape-dots-2 {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#D4C5A9 3px, transparent 3px);
    background-size: 24px 24px;
    bottom: 10%;
    right: 5%;
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 42px;
    }

    .pricing-cards {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-title {
        font-size: 32px;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-header {
        margin-bottom: 40px;
    }
}

/* ========== Streamlined Book Writing Process Section ========== */
.streamlined-process-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.streamlined-process-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.streamlined-process-left {
    flex: 1.2;
}

.streamlined-process-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.process-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.process-main-title {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "Noto Serif", serif;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    font-family: "Open Sans", sans-serif;
}

.process-steps-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-header {
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.step-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding-left: 5px;
    font-family: "Open Sans", sans-serif;
}

.process-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-btn-phone {
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 197, 68, 0.3);
}

.process-btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 197, 68, 0.4);
}

.process-btn-chat {
    background: transparent;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.process-btn-chat:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Image with stylized borders */
.process-image-wrapper {
    position: relative;
    padding: 20px;
}

.process-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #8B4513;
    border-radius: 40px 100px 40px 100px;
    z-index: 1;
}

.image-inner-border {
    position: relative;
    padding: 10px;
    z-index: 2;
}

/* We'll use a wrapper inside the image or use multiple borders */
.process-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 30px 90px 30px 90px;
    display: block;
    object-fit: cover;
    outline: 2px solid #D4C5A9;
    outline-offset: 10px;
    margin: 10px;
}

@media (max-width: 992px) {
    .streamlined-process-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 0 20px;
    }

    .process-btns {
        flex-direction: column;
        width: 100%;
    }

    .process-btn-phone,
    .process-btn-chat {
        width: 100%;
        justify-content: center;
    }

    .process-step-item {
        text-align: left;
    }

    .process-main-title {
        font-size: 32px;
    }
}

/* ========== Thank You Page Section ========== */
.thank-you-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #efebea 0%, #f5f3f1 50%, #efebea 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(139,69,19,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.thank-you-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.thank-you-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.thank-you-icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    line-height: 1.2;
}

.thank-you-subtitle {
    font-size: 20px;
    color: #8B4513;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
}

.thank-you-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 50px 0;
    font-family: "Open Sans", Arial, sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-align: center;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fafafa;
    border-radius: 12px;
    border-left: 4px solid #8B4513;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.thank-you-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Open Sans", Arial, sans-serif;
    border: 2px solid transparent;
}

.thank-you-btn-primary {
    background: linear-gradient(135deg, #D4C5A9 0%, #8B4513 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.thank-you-btn-primary:hover {
    background: linear-gradient(135deg, #C4B599 0%, #6B3410 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.35);
}

.thank-you-btn-secondary {
    background: #ffffff;
    color: #8B4513;
    border-color: #8B4513;
}

.thank-you-btn-secondary:hover {
    background: #8B4513;
    color: #ffffff;
    transform: translateY(-2px);
}

.thank-you-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.info-text {
    font-size: 15px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Open Sans", Arial, sans-serif;
}

.info-text svg {
    color: #8B4513;
    flex-shrink: 0;
}

.info-text a {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

/* ========== Get Started Popup Modal ========== */
.get-started-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.get-started-popup.active {
    display: flex;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    animation: overlayFadeIn 0.4s ease-out;
}

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

.popup-container {
    position: relative;
    z-index: 2;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(139, 69, 19, 0.25), 
                0 10px 30px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    overflow: hidden;
}

.popup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4C5A9 0%, #C4B599 25%, #8B4513 50%, #C4B599 75%, #D4C5A9 100%);
    z-index: 1;
}

.popup-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 197, 169, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-60px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
    border-color: #8B4513;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.popup-close:active {
    transform: rotate(90deg) scale(0.95);
}

.popup-close svg {
    width: 22px;
    height: 22px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

.popup-close:hover svg {
    stroke: #ffffff;
}

.popup-content {
    padding: 60px 50px 45px;
    position: relative;
    z-index: 2;
}

.popup-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.popup-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #D4C5A9 0%, #C4B599 50%, #8B4513 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.3),
                0 4px 12px rgba(139, 69, 19, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.popup-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4C5A9, #8B4513);
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.popup-icon-wrapper svg {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.popup-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: "Noto Serif", Georgia, "Times New Roman", serif;
    line-height: 1.2;
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.popup-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-family: "Open Sans", Arial, sans-serif;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.popup-form-group {
    display: flex;
    flex-direction: column;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e8e6e3;
    border-radius: 10px;
    font-size: 15px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.popup-form-group input:hover,
.popup-form-group textarea:hover {
    border-color: #D4C5A9;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.05);
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.12),
                0 4px 12px rgba(139, 69, 19, 0.1);
    transform: translateY(-1px);
}

.popup-form-group input::placeholder,
.popup-form-group textarea::placeholder {
    color: #999;
}

.popup-phone-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.popup-phone-prefix {
    padding: 16px 14px;
    background: linear-gradient(135deg, #f8f7f5 0%, #f0ede8 100%);
    border: 2px solid #e8e6e3;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    color: #8B4513;
    font-family: "Open Sans", Arial, sans-serif;
    transition: all 0.3s ease;
}

.popup-phone-input {
    border-radius: 0 10px 10px 0 !important;
    border-left: none !important;
}

.popup-phone-group:focus-within .popup-phone-prefix {
    border-color: #8B4513;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
    color: #6B3410;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.12);
}

.popup-submit-btn {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #D4C5A9 0%, #C4B599 50%, #8B4513 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.35),
                0 4px 12px rgba(139, 69, 19, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.popup-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.popup-submit-btn:hover::before {
    left: 100%;
}

.popup-submit-btn:hover {
    background: linear-gradient(135deg, #C4B599 0%, #B4A589 50%, #6B3410 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 69, 19, 0.45),
                0 6px 16px rgba(139, 69, 19, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.popup-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.35);
}

.popup-submit-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.popup-submit-btn:hover svg {
    transform: translateX(6px);
}

.popup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.popup-footer {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 2px solid rgba(139, 69, 19, 0.1);
    position: relative;
}

.popup-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4C5A9, transparent);
}

.popup-footer-text {
    font-size: 13px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.6;
    flex-wrap: wrap;
}

.popup-footer-text svg {
    width: 18px;
    height: 18px;
    color: #8B4513;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(139, 69, 19, 0.2));
}

.popup-footer-text a {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.popup-footer-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B4513, #6B3410);
    transition: width 0.3s ease;
}

.popup-footer-text a:hover {
    color: #6B3410;
}

.popup-footer-text a:hover::after {
    width: 100%;
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}