/* Albra - self-hosted */
@font-face {
    font-family: 'Albra';
    src: url('../fonts/AlbraTRIAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body,
p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Albra', serif;
    font-weight: 400;
}

/* ===========================
   Header
   =========================== */
.top-bar {
    background: #1a8cc3;
    padding: 10px 0;
}

.top-bar-link {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

.top-bar-link i {
    margin-right: 6px;
}

.top-bar-social {
    gap: 10px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.main-navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1030;
}

.main-navbar .container {
    position: relative;
}

.main-navbar .navbar-brand img {
    max-height: 55px;
    width: auto;
}

.main-navbar .navbar-nav {
    gap: 10px;
}

.main-navbar .navbar-nav .nav-link {
    font-family: 'Albra', serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 8px 20px;
    position: relative;
}

.main-navbar .navbar-nav .nav-link.active {
    color: #c41e3a;
}

.main-navbar .navbar-nav .nav-link:hover {
    color: #c41e3a;
}

.main-navbar .btn-support {
    background: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.main-navbar .btn-support:hover {
    background: #b81925;
    color: #fff;
}

.main-navbar .navbar-toggler {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 10px;
}

.main-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(26, 140, 195, 0.25);
}

.main-navbar .navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
}

.mobile-menu-open-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #f5f5f5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-open-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 31, 45, 0.2);
}

.mobile-menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #D91F2D;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.mobile-menu-open .mobile-menu-open-btn .mobile-menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-open-btn .mobile-menu-bar:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-open-btn .mobile-menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1040;
}

body.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 20px 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
    box-sizing: border-box;
}

.mobile-menu-logo {
    flex: 1;
    min-width: 0;
}

.mobile-menu-logo img {
    max-height: 42px;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #D91F2D;
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-menu-close:hover {
    background: #b81925;
    transform: scale(1.05);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-footer {
    padding: 16px 20px 22px;
    border-top: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    margin-bottom: 10px;
}

.mobile-menu-contact i {
    color: #5daae0;
    width: 16px;
}

.mobile-menu-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    margin-bottom: 0;
}

.mobile-menu-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #D91F2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mobile-menu-social a:hover {
    background: #D91F2D;
    border-color: #D91F2D;
    color: #fff;
}

@media (min-width: 992px) {
    .mobile-menu-body {
        display: flex;
        align-items: center;
        flex: 1;
        width: 100%;
        overflow: visible;
        padding: 0;
    }

    .main-navbar .navbar-collapse.mobile-menu-panel {
        position: static;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: auto !important;
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        box-shadow: none;
        border-top: none;
        overflow: visible;
        flex-direction: row;
        align-items: center;
    }
}

.main-navbar .navbar-cta {
    flex-shrink: 0;
}

/* Quote Modal */
.quote-modal-content {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    border-top: 4px solid #D91F2D;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.quote-modal-header {
    display: block;
    position: relative;
    padding: 28px 28px 10px;
    border-bottom: none;
    background: #fff;
}

.quote-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.quote-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 31, 45, 0.1);
    color: #D91F2D;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.quote-modal-title {
    font-family: 'Albra', serif;
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.quote-modal-highlight {
    color: #5daae0;
}

.quote-modal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.quote-modal-body {
    padding: 10px 28px 28px;
}

.quote-modal-form .form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.quote-modal-form .form-control,
.quote-modal-form .form-select {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
}

.quote-modal-form .form-control:focus,
.quote-modal-form .form-select:focus {
    border-color: #5daae0;
    box-shadow: 0 0 0 0.2rem rgba(93, 170, 224, 0.2);
}

.quote-modal-btn {
    width: 100%;
    background: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    border: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.quote-modal-btn:hover {
    background: #b81925;
    color: #fff;
}

.quote-modal-btn i {
    margin-left: 8px;
}

.modal-backdrop.show {
    opacity: 0.75;
}

/* Services Dropdown */
.services-dropdown .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 0.15em;
    transition: transform 0.3s ease;
}

.services-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.services-dropdown-menu {
    min-width: 320px;
    padding: 0;
    margin-top: 14px !important;
    border: none;
    border-radius: 12px;
    overflow: auto;
    height: 460px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    border-top: 4px solid #D91F2D;
}
.services-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}
.services-dropdown-menu::-webkit-scrollbar-thumb {
    background: #1a8cc3;
    border-radius: 2px;
}
.services-dropdown-menu::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .services-dropdown-menu {
        height: auto;
    }
}
.services-dropdown-head {
    padding: 16px 18px 14px;
    background: linear-gradient(135deg, #fafafa 0%, #f3f3f3 100%);
    border-bottom: 1px solid #eee;
}

.services-dropdown-head-label {
    display: block;
    font-family: 'Albra', serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

.services-dropdown-head-desc {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.services-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px !important;
    white-space: normal;
    border-bottom: 1px solid #f3f3f3;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.services-dropdown-item:last-child {
    border-bottom: none;
}

.services-dropdown-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(93, 170, 224, 0.12);
    color: #5daae0;
    font-size: 16px;
    transition: background 0.25s ease, color 0.25s ease;
}

.services-dropdown-text {
    flex: 1;
    min-width: 0;
}

.services-dropdown-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.services-dropdown-text small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #777;
    line-height: 1.4;
    margin-top: 2px;
}

.services-dropdown-arrow {
    flex-shrink: 0;
    font-size: 11px;
    color: #ccc;
    transition: color 0.25s ease, transform 0.25s ease;
}

.services-dropdown-item:hover,
.services-dropdown-item:focus,
.services-dropdown-item.active {
    background: #fff5f5;
}

.services-dropdown-item:hover .services-dropdown-icon,
.services-dropdown-item.active .services-dropdown-icon {
    background: #D91F2D;
    color: #fff;
}

.services-dropdown-item:hover .services-dropdown-text strong,
.services-dropdown-item.active .services-dropdown-text strong {
    color: #D91F2D;
}

.services-dropdown-item:hover .services-dropdown-arrow,
.services-dropdown-item.active .services-dropdown-arrow {
    color: #D91F2D;
    transform: translateX(3px);
}

.services-dropdown-item.active {
    border-left: 3px solid #D91F2D;
    padding-left: 15px !important;
}

/* ===========================
   Hero Banner
   =========================== */
.hero-banner {
    background: url('../images/banner_bg.webp') center center / cover no-repeat;
    padding: 70px 0 0;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.hero-title {
    font-family: 'Albra', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
    color: #2b2b2b;
    margin-bottom: 22px;
}

.hero-highlight {
    color: #5daae0;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #777;
    margin-bottom: 0;
}

.hero-books {
    width: 100%;
}

.hero-books img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Promo Banner
   =========================== */
.promo-banner {
    position: relative;
    overflow: hidden;
    padding: 35px 0;
    color: #fff;
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

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

.promo-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}

.promo-title {
    font-family: 'Albra', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .promo-title {
        font-size: 21px;
    }
}

@media (min-width: 1200px) {
    .promo-title {
        font-size: 22px;
    }
}

@media (min-width: 1400px) {
    .promo-title {
        font-size: 24px;
    }
}

.promo-btn {
    background: #D91F2D;
    color: #fff;
    font-family: 'Albra', serif;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.promo-btn:hover {
    background: #b81925;
    color: #fff;
}

.promo-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    margin-bottom: 0;
}

/* ===========================
   Exclusive Services Section
   =========================== */
.exclusive-section {
    padding: 80px 0;
    background: #fff;
}

.exclusive-title {
    font-family: 'Albra', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    color: #2b2b2b;
    margin-bottom: 22px;
}

.exclusive-highlight {
    color: #5daae0;
}

.exclusive-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #777;
    margin-bottom: 18px;
}

.exclusive-desc:last-of-type {
    margin-bottom: 28px;
}

.exclusive-btn {
    background: #D91F2D;
    color: #fff;
    font-family: 'Albra', serif;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.exclusive-btn:hover {
    background: #b81925;
    color: #fff;
}

.exclusive-image img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Featured Bestsellers Section
   =========================== */
.bestsellers-section {
    padding: 0 0 90px;
    background: #fff;
}

.bestsellers-header {
    margin-bottom: 45px;
}

.bestsellers-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
}

.bestsellers-title-dark {
    color: #2b2b2b;
}

.bestsellers-title-blue {
    color: #5daae0;
}

.bestsellers-desc,
.guarantee-desc,
.counter-desc,
.portfolio-desc,
.testimonial-desc,
.faq-subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.7;
    text-wrap: balance;
}

.bestsellers-desc {
    color: #999;
}

.bestseller-cover {
    margin-bottom: 18px;
    cursor: zoom-in;
}

.bestseller-cover img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bestseller-cover:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.bestseller-name {
    font-family: 'Albra', serif;
    font-size: 18px;
    font-weight: 500;
    color: #2b2b2b;
    margin-bottom: 6px;
}

.bestseller-author {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

/* ===========================
   Services Icons Section
   =========================== */
.services-icons-section {
    position: relative;
    overflow: hidden;
    padding: 65px 0;
    color: #fff;
}

.services-icons-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.services-icons-section .container {
    position: relative;
    z-index: 1;
}

.service-icon-img {
    width: 120px;
    height: auto;
    margin-bottom: 22px;
    display: inline-block;
}

.service-icon-title {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.service-icon-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Guarantee & Experts Section
   =========================== */
.single-bg-section {
    padding: 80px 0 90px;
    background: url('../images/single-bg.webp') center center / cover no-repeat;
}

.experts-block {
    margin-top: 70px;
}

.guarantee-header {
    margin-bottom: 45px;
}

.guarantee-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
}

.guarantee-title-dark {
    color: #2b2b2b;
}

.guarantee-title-blue {
    color: #5daae0;
}

.guarantee-desc {
    color: #777;
}

.guarantee-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    border-left: 6px solid #D91F2D;
    padding: 42px 28px 38px 26px;
    min-height: 210px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.guarantee-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #5daae0;
}

.guarantee-card-title {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    color: #D91F2D;
    margin-bottom: 14px;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.guarantee-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ===========================
   Experts Block
   =========================== */
.experts-header {
    margin-bottom: 45px;
}

.experts-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #2b2b2b;
    margin-bottom: 18px;
}

.experts-highlight {
    color: #5daae0;
}

.experts-desc {
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

.expert-card {
    background: #2b2b2b;
    border: none;
    border-radius: 14px;
    padding: 28px 20px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-intro {
    font-family: 'Albra', serif;
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.expert-name {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.expert-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}

.expert-btn {
    background: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.3s ease;
}

.expert-btn:hover {
    background: #b81925;
    color: #fff;
}

/* ===========================
   Counters Section
   =========================== */
.counter-section {
    padding: 80px 0 90px;
    background: url('../images/counter-bg.webp') center center / cover no-repeat;
    color: #fff;
}

.counter-header {
    margin-bottom: 50px;
}

.counter-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}

.counter-desc {
    color: rgba(255, 255, 255, 0.9);
}

.counter-item {
    padding: 10px 15px;
}

.counter-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 22px;
}

.counter-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.counter-icon-trophy {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D91F2D;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
}

.counter-number {
    font-family: 'Albra', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 8px;
}

.counter-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio-section {
    padding: 80px 0 90px;
    background: #fff;
    overflow: hidden;
}

.portfolio-header {
    margin-bottom: 35px;
}

.portfolio-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
}

.portfolio-title-dark {
    color: #2b2b2b;
}

.portfolio-title-blue {
    color: #5daae0;
}

.portfolio-desc {
    color: #777;
}

.portfolio-tabs {
    border-bottom: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 40px;
}

.portfolio-tabs .nav-link {
    font-family: 'Albra', serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border: none;
    background: transparent;
    padding: 6px 0;
    border-radius: 0;
}

.portfolio-tabs .nav-link:hover {
    color: #D91F2D;
    border: none;
}

.portfolio-tabs .nav-link.active {
    color: #D91F2D;
    background: transparent;
    border: none;
}

.portfolio-tab-content {
    width: 100%;
    overflow: hidden;
}

.portfolio-carousel-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.portfolio-slider {
    width: 100%;
}

.portfolio-slider .slick-list {
    margin: 0;
    padding: 0 !important;
}

.portfolio-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.portfolio-slider.slick-initialized .slick-slide {
    height: auto;
    padding-left: 7px;
    padding-right: 7px;
}

.portfolio-slider .slick-slide > div {
    height: 100%;
}

.portfolio-slide {
    height: 100%;
    padding: 0;
    cursor: zoom-in;
    position: relative;
    z-index: 2;
}

.portfolio-slide img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-slide:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

/* Portfolio Lightbox */
body.portfolio-lightbox-open {
    overflow: hidden;
}

.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.portfolio-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(4px);
}

.portfolio-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border-top: 4px solid #D91F2D;
    animation: portfolioLightboxIn 0.35s ease;
}

@keyframes portfolioLightboxIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.portfolio-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #D91F2D;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(217, 31, 45, 0.35);
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 5;
}

.portfolio-lightbox-close:hover {
    background: #b81925;
    transform: scale(1.05);
}

.portfolio-lightbox-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f7f7f7;
}

.portfolio-lightbox-slider {
    width: 100%;
}

.portfolio-lightbox-slider .slick-list {
    border-radius: 10px;
}

.portfolio-lightbox-slide {
    padding: 12px;
    text-align: center;
}

.portfolio-lightbox-slide img {
    width: auto;
    max-width: 100%;
    max-height: min(62vh, 520px);
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.portfolio-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #D91F2D;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    z-index: 4;
}

.portfolio-lightbox-arrow:hover {
    background: #D91F2D;
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.portfolio-lightbox-prev {
    left: -18px;
}

.portfolio-lightbox-next {
    right: -18px;
}

.portfolio-lightbox-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 0 4px;
}

.portfolio-lightbox-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.portfolio-lightbox-counter {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #5daae0;
    padding: 5px 12px;
    border-radius: 50px;
}

.portfolio-lightbox-slider .slick-arrow.slick-hidden {
    display: inline-flex !important;
}

.portfolio-slider.slick-initialized .slick-slide {
    pointer-events: auto;
}

.portfolio-slider.slick-initialized .portfolio-slide {
    pointer-events: auto;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonial-section {
    padding: 80px 0 110px;
    background: #fff;
    overflow: hidden;
}

.testimonial-header {
    margin-bottom: 45px;
}

.testimonial-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
}

.testimonial-title-dark {
    color: #2b2b2b;
}

.testimonial-title-blue {
    color: #5daae0;
}

.testimonial-desc {
    color: #777;
}

.testimonial-slider-wrap {
    padding: 0 15px;
}

.testimonial-slider .slick-list {
    overflow: visible;
    padding: 20px 0 40px !important;
}

.testimonial-slider .slick-track {
    display: flex;
    align-items: center;
}

.testimonial-slider .slick-slide {
    height: auto;
    padding: 0 12px;
    transition: none;
}

.testimonial-slider .slick-slide > div {
    height: 100%;
}

.testimonial-slider .slick-slide .testimonial-card {
    /* transform: scale(0.88); */
    transform-origin: center center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.testimonial-slider .slick-slide.testimonial-side-blur .testimonial-card {
    /* filter: blur(10px);
    -webkit-filter: blur(10px); */
}

.testimonial-slider .slick-slide.slick-center .testimonial-card {
    filter: none !important;
    -webkit-filter: none !important;
    transform: scale(1) !important;
}

.testimonial-slide {
    height: 100%;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    overflow: hidden;
}

.testimonial-card-inner {
    display: flex;
    min-height: 300px;
}

.testimonial-user-col {
    flex: 0 0 36%;
    max-width: 36%;
    padding: 22px 18px 22px 22px;
    display: flex;
    flex-direction: column;
}

.testimonial-user-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonial-user-meta {
    text-align: right;
    margin-top: 14px;
}

.testimonial-user-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 4px;
}

.testimonial-user-role {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

.testimonial-content-col {
    flex: 1;
    position: relative;
    padding: 26px 24px 42px 16px;
    display: flex;
    flex-direction: column;
}

.testimonial-content-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.testimonial-quote-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.testimonial-quote-heading {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    color: #5daae0;
    margin: 0;
    padding-top: 6px;
}

.testimonial-text-block {
    border-left: 4px solid #5daae0;
    padding-left: 18px;
    margin-bottom: 22px;
    flex: 1;
}

.testimonial-text-block p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 0;
}

.testimonial-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding-right: 4px;
}

.testimonial-thanks {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

.testimonial-ratings {
    width: auto;
    height: 20px;
    display: block;
}

.testimonial-accent-bar {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 185px;
    max-width: 55%;
    height: auto;
    display: block;
}

.testimonial-slider .slick-dots {
    bottom: 0;
    line-height: 0;
}

.testimonial-slider .slick-dots li {
    margin: 0 5px;
}

.testimonial-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.testimonial-slider .slick-dots li button:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    opacity: 1;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    background: #5daae0;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: url('../images/footer_bg.webp') center center / cover no-repeat;
    color: #fff;
}

.footer-main {
    padding: 70px 0 55px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.footer-title {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D91F2D;
}

.footer-social {
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #1a4a8a;
    border-color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D91F2D;
}

.footer-newsletter {
    margin-top: 24px;
}

.footer-newsletter > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

.newsletter-input-wrap {
    position: relative;
    margin-bottom: 12px;
}

.newsletter-input-wrap .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    padding: 12px 52px 12px 20px;
    height: auto;
}

.newsletter-input-wrap .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-wrap .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: #fff;
}

.newsletter-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #c41e3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #a01830;
}

.footer-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.footer-check .form-check-input {
    width: 14px;
    height: 14px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    flex-shrink: 0;
}

.footer-check .form-check-input:checked {
    background-color: #c41e3a;
    border-color: #c41e3a;
}

.footer-check .form-check-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #D91F2D;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
    background: url('../images/form_bg.webp') center center / cover no-repeat;
    color: #fff;
    padding: 75px 0;
}

.quote-title {
    font-family: 'Albra', serif;
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.quote-subtitle {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
}

.quote-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.quote-list li:last-child {
    margin-bottom: 0;
}

.quote-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.quote-form .form-label {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.quote-form .form-control,
.quote-form .form-select {
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    padding: 16px 18px;
    min-height: 52px;
    height: auto;
}

.quote-form .form-control::placeholder {
    color: #aaa;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    background: #fff;
    border: none;
    box-shadow: none;
}

.quote-form .form-select {
    color: #aaa;
}

.quote-form .form-select:valid {
    color: #333;
}

.quote-form textarea.form-control {
    resize: none;
    min-height: 155px;
}

.quote-btn {
    background: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 45px;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.quote-btn:hover,
.quote-btn:focus {
    background: #b81925;
    color: #fff;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 80px 0 90px;
    background: #fff;
}

.faq-header {
    margin-bottom: 45px;
}

.faq-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
}

.faq-title-dark {
    color: #2b2b2b;
}

.faq-title-blue {
    color: #5daae0;
}

.faq-subtitle {
    color: #999;
}

.faq-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0;
    --bs-accordion-active-color: #2b2b2b;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.faq-accordion .accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #f9f9f9;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-item:has(.accordion-collapse.show) {
    background: #fdf2f2;
    border-color: #f0cccc;
}

.faq-accordion .accordion-header {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    font-family: 'Albra', serif;
    font-size: 20px;
    font-weight: 500;
    color: #2b2b2b;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 20px 24px;
    gap: 16px;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #2b2b2b;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .faq-icon {
    margin-left: auto;
    font-size: 14px;
    color: #888;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #888;
    padding: 0 24px 22px;
}

/* ===========================
   About Us Page
   =========================== */
.about-hero {
    background: url('../images/banner_bg.webp') center center / cover no-repeat;
    padding: 70px 0 60px;
}

.about-hero-title {
    font-family: 'Albra', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #2b2b2b;
    margin-bottom: 18px;
}

.about-hero-highlight {
    color: #5daae0;
}

.about-hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: #777;
}

.about-platforms {
    padding: 70px 0 75px;
    background: #f6f6f6;
}

.about-platforms-header {
    margin-bottom: 42px;
}

.about-platforms-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.about-platforms-line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: #b5b5b5;
    flex-shrink: 0;
}

.about-platforms-title {
    font-family: 'Albra', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
    color: #3a5568;
    margin-bottom: 0;
}

.about-platforms-logos img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    object-fit: contain;
}

.about-story {
    padding: 80px 0;
    background: #fff;
}

.about-story-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.about-story-content .exclusive-btn {
    margin-top: 8px;
}

.page-about .about-platforms-logos {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-about .about-story-image {
    overflow: hidden;
}

.about-intro {
    padding: 80px 0;
    background: #fff;
}

.about-section-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #2b2b2b;
    margin-bottom: 22px;
}

.about-title-blue {
    color: #5daae0;
}

.about-text {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 18px;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-intro-image img {
    max-width: 100%;
    height: auto;
}

.about-mv {
    padding: 80px 0;
    background: url('../images/single-bg.webp') center center / cover no-repeat;
}

.about-mv-header {
    margin-bottom: 45px;
}

.about-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

.about-mv-card {
    background: #fff;
    border-radius: 12px;
    border-left: 6px solid #D91F2D;
    padding: 36px 28px 32px 26px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-mv-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5daae0;
    margin-bottom: 12px;
}

.about-mv-title {
    font-family: 'Albra', serif;
    font-size: 24px;
    font-weight: 500;
    color: #2b2b2b;
    margin-bottom: 14px;
}

.about-mv-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 0;
}

.about-why {
    padding: 80px 0 90px;
    background: #fff;
}

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 45px 0;
    color: #fff;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

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

.about-cta-title {
    font-family: 'Albra', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
}

.about-cta-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===========================
   Contact Us Page
   =========================== */
.contact-hero {
    background: url('../images/banner_bg.webp') center center / cover no-repeat;
    padding: 70px 0 60px;
}

.contact-hero-title {
    font-family: 'Albra', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #2b2b2b;
    margin-bottom: 18px;
}

.contact-hero-highlight {
    color: #5daae0;
}

.contact-hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: #777;
}

.contact-section {
    background: #f5f5f5;
    padding: 75px 0;
    color: #333;
}

.contact-info-title {
    font-family: 'Albra', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.contact-info-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 28px;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #D91F2D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #fff;
}

.contact-info-icon i {
    color: #fff;
}

.contact-info-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item > div span:not(.contact-info-label) {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #D91F2D;
}

.contact-social-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.contact-social-list {
    gap: 10px;
}

.contact-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-list a:hover {
    background: #D91F2D;
    color: #fff;
    border-color: #D91F2D;
}

.contact-form-wrap {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: 'Albra', serif;
    font-size: 28px;
    font-weight: 500;
    color: #2b2b2b;
    margin-bottom: 22px;
}

.page-contact .contact-form .form-label {
    color: #333;
}

.page-contact .contact-form .quote-btn {
    min-width: 180px;
}

/* ===========================
   Legal Pages (Terms / Privacy)
   =========================== */
.legal-hero {
    background: url('../images/single-bg.webp') center center / cover no-repeat;
    padding: 75px 0 65px;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 31, 45, 0.1);
    color: #D91F2D;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.legal-hero-title {
    font-family: 'Albra', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin-bottom: 18px;
}

.legal-hero-highlight {
    color: #5daae0;
}

.legal-hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: #000;
}

.legal-content-section {
    padding: 70px 0 90px;
    background: #f5f5f5;
}

.legal-updated {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    text-align: center;
}

.legal-updated i {
    color: #5daae0;
    margin-right: 6px;
}

.legal-content-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #D91F2D;
}

.legal-content {
    max-width: 100%;
    margin: 0;
}

.legal-block {
    position: relative;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px 22px 22px 22px;
    margin-bottom: 16px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block-num {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: 'Albra', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #5daae0;
}

.legal-block h2 {
    font-family: 'Albra', serif;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
    padding-right: 48px;
}

.legal-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

.legal-content a {
    color: #5daae0;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    color: #D91F2D;
}

/* ===========================
   Ghost Writing Page
   =========================== */
.gw-hero {
    position: relative;
    padding: 70px 0;
    background: url('../images/single-bg.webp') center center / cover no-repeat;
    overflow: hidden;
}

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

.gw-hero-content {
    color: #000;
}

.gw-hero-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    margin-bottom: 22px;
}

.gw-hero-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 28px;
    max-width: 540px;
}

.gw-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease;
}

.gw-hero-btn:hover {
    background: #b81925;
    color: #fff;
}

.gw-hero-form-wrap {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-top: 4px solid #D91F2D;
    border-left: 5px solid #D91F2D;
    overflow: hidden;
}

.gw-hero-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(217, 31, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gw-form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.gw-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.gw-form-title {
    font-family: 'Albra', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
    margin-bottom: 10px;
}

.gw-form-highlight {
    color: #000;
}

.gw-form-subtitle {
    font-size: 13px;
    line-height: 1.65;
    color: #000;
    margin-bottom: 0;
}

.gw-form .form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 7px;
}

.gw-form .form-control,
.gw-form .form-select {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    color: #000;
    padding: 13px 16px;
    min-height: 50px;
    height: auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gw-form .form-control::placeholder {
    color: #000;
    opacity: 0.5;
}

.gw-form .form-control:focus,
.gw-form .form-select:focus {
    background: #fff;
    border-color: #D91F2D;
    box-shadow: 0 0 0 3px rgba(217, 31, 45, 0.12);
}

.gw-form .form-select {
    color: #000;
}

.gw-form .form-select:valid {
    color: #000;
}

.gw-form .gw-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    --bs-btn-bg: #D91F2D;
    --bs-btn-border-color: #D91F2D;
    --bs-btn-hover-bg: #b81925;
    --bs-btn-hover-border-color: #b81925;
    --bs-btn-active-bg: #b81925;
    --bs-btn-active-border-color: #b81925;
    --bs-btn-focus-shadow-rgb: 217, 31, 45;
    background-color: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.gw-form .gw-form-btn:hover,
.gw-form .gw-form-btn:focus,
.gw-form .gw-form-btn:active {
    background-color: #b81925;
    border-color: #b81925;
    color: #fff;
    transform: translateY(-1px);
}

.gw-expertise {
    padding: 80px 0;
    background: #fff;
}

.gw-expertise-title {
    font-family: 'Albra', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    margin-bottom: 24px;
}

.gw-expertise-highlight {
    color: #000;
}

.gw-expertise-text {
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 18px;
}

.gw-expertise-text:last-of-type {
    margin-bottom: 22px;
}

.gw-expertise-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.gw-expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

.gw-expertise-list li:last-child {
    margin-bottom: 0;
}

.gw-expertise-list li i {
    color: #D91F2D;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

.gw-expertise-list li strong {
    font-weight: 600;
}

.gw-expertise-images img {
    width: 100%;
    max-width: 620px;
    height: auto;
}

.gw-fiction-elements {
    padding: 80px 0;
    background: #fff;
}

.gw-fiction-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
}

.gw-fiction-title {
    font-family: 'Albra', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    margin-bottom: 22px;
}

.gw-fiction-highlight {
    color: #000;
}

.gw-fiction-text {
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 18px;
}

.gw-fiction-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 14px;
}

.gw-fiction-list {
    padding-left: 18px;
    margin-bottom: 22px;
}

.gw-fiction-list li {
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 10px;
}

.gw-fiction-list li:last-child {
    margin-bottom: 0;
}

.gw-fiction-author {
    margin-top: 28px;
}

.gw-fiction-author-name {
    font-family: 'Albra', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin-bottom: 6px;
}

.gw-fiction-author-role {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
}

.gw-cta-section {
    padding: 80px 0;
    background: url('../images/single-bg.webp') center center / cover no-repeat;
}

.gw-cta-title {
    font-family: 'Albra', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    margin-bottom: 20px;
}

.gw-cta-lead {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 18px;
}

.gw-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #000;
}

.gw-cta-list li:last-child {
    margin-bottom: 0;
}

.gw-cta-list li i {
    color: #D91F2D;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

.gw-cta-text {
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 14px;
    margin-top: 22px;
}

.gw-cta-text:last-of-type {
    margin-bottom: 0;
}

.gw-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.gw-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #D91F2D;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.gw-cta-btn:hover {
    background: #b81925;
    border-color: #b81925;
    color: #fff;
}

.gw-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #000;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gw-cta-btn-outline:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.gw-cta-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #D91F2D;
}

.gw-cta-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    border-radius: 0;
    font-size: 14px;
    color: #000;
    padding: 12px 0;
    min-height: auto;
    box-shadow: none;
}

.gw-cta-form .form-control::placeholder {
    color: #000;
    opacity: 0.45;
}

.gw-cta-form .form-control:focus {
    background: transparent;
    border-color: #D91F2D;
    box-shadow: none;
    color: #000;
}

.gw-cta-form textarea.form-control {
    resize: none;
    min-height: 100px;
}

.gw-cta-consent .form-check-label {
    font-size: 11px;
    line-height: 1.55;
    color: #000;
}

.gw-cta-consent .form-check-label a {
    color: #000;
    text-decoration: underline;
}

.gw-cta-consent .form-check-label a:hover {
    color: #D91F2D;
}

.gw-cta-consent .form-check-input {
    margin-top: 0.2rem;
}

.gw-cta-consent .form-check-input:checked {
    background-color: #D91F2D;
    border-color: #D91F2D;
}

.gw-cta-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    --bs-btn-bg: #D91F2D;
    --bs-btn-border-color: #D91F2D;
    --bs-btn-hover-bg: #b81925;
    --bs-btn-hover-border-color: #b81925;
    --bs-btn-active-bg: #b81925;
    --bs-btn-active-border-color: #b81925;
    background-color: #D91F2D;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 24px;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.gw-cta-submit-btn:hover,
.gw-cta-submit-btn:focus,
.gw-cta-submit-btn:active {
    background-color: #b81925;
    border-color: #b81925;
    color: #fff;
}

.gw-guarantees {
    padding: 80px 0;
    background: #f5f5f5;
}

.gw-guarantees-title {
    font-family: 'Albra', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    margin-bottom: 12px;
}

.gw-guarantees-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 28px;
    max-width: 480px;
}

.gw-guarantee-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #D91F2D;
    padding: 22px 18px 20px 16px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gw-guarantee-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Albra', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #D91F2D;
}

.gw-guarantee-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: #000;
    margin: 0;
    padding-right: 36px;
}

.gw-guarantee-item--stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 22px 20px;
    min-height: 120px;
}

.gw-guarantee-item--stat .gw-guarantee-stat {
    display: block;
    font-family: 'Albra', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    color: #D91F2D;
    margin: 0;
}

.gw-guarantee-item--stat .gw-guarantee-text {
    padding-right: 0;
    line-height: 1.5;
}

.gw-guarantees-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    padding: 12px 22px;
    border-radius: 50px;
}

.gw-guarantees-rating i {
    color: #D91F2D;
    font-size: 14px;
}

.gw-guarantees-books img {
    width: 100%;
    max-width: 580px;
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.15));
}

.gw-core-section {
    padding: 80px 0;
    background: #fff;
}

.gw-core-title {
    font-family: 'Albra', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    margin-bottom: 45px;
}

.gw-core-tabs {
    gap: 14px;
}

.gw-core-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px 18px;
    color: #000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.gw-core-tabs .nav-link:hover {
    border-color: #D91F2D;
    color: #000;
}

.gw-core-tabs .nav-link.active {
    background: #fff;
    border-color: #D91F2D;
    color: #D91F2D;
    box-shadow: 0 6px 18px rgba(217, 31, 45, 0.12);
}

.gw-core-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 10px;
    background: #D91F2D;
    color: #fff;
    font-size: 20px;
}

.gw-core-tab-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.gw-core-tab-content {
    min-height: 320px;
}

.gw-core-quote {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.75;
    color: #000;
    padding-left: 18px;
    margin-bottom: 22px;
    border-left: 4px solid #D91F2D;
}

.gw-core-text {
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 22px;
}

.gw-core-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.gw-core-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #000;
}

.gw-core-checklist li:last-child {
    margin-bottom: 0;
}

.gw-core-checklist li i {
    color: #D91F2D;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.gw-faq-section {
    padding: 80px 0 90px;
    background: #fff;
}

.gw-faq-title {
    font-family: 'Albra', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin-bottom: 32px;
}

.gw-faq-title-accent {
    display: block;
    color: #5daae0;
}

.gw-faq-image {
    max-width: 540px;
}

.gw-faq-image img {
    width: 100%;
    height: auto;
    transform: rotate(4deg) scale(1.08);
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.16));
}

.gw-faq-accordion .accordion-item:has(.accordion-collapse.show) {
    background: #fdf2f2;
    border-color: rgba(217, 31, 45, 0.25);
}

.gw-faq-accordion .accordion-button {
    color: #000;
}

.gw-faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
}

.gw-faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    color: #D91F2D;
}

.gw-faq-accordion .accordion-body {
    color: #000;
}

.page-ghost-writing .about-platforms-logos img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.page-ghost-writing .gw-heading-dark {
    color: #000;
}

.page-ghost-writing .gw-heading-blue {
    color: #5daae0;
}

.page-ghost-writing .gw-hero-title,
.page-ghost-writing .gw-form-title,
.page-ghost-writing .about-platforms-title,
.page-ghost-writing .gw-expertise-title,
.page-ghost-writing .gw-core-title,
.page-ghost-writing .guarantee-title,
.page-ghost-writing .gw-fiction-title,
.page-ghost-writing .gw-guarantees-title,
.page-ghost-writing .gw-cta-title,
.page-ghost-writing .gw-faq-title {
    color: #000;
}

.page-ghost-writing .guarantee-card-title {
    color: #000;
}

.page-ghost-writing .gw-fiction-author-name {
    color: #000;
}

.page-ghost-writing .guarantee-number,
.page-ghost-writing .gw-guarantee-item--stat .gw-guarantee-stat,
.page-ghost-writing .gw-guarantee-num {
    color: #D91F2D;
}
