@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #14bbab;
    --primary-hover: #0e9386;
    --primary-dark: #0c7c71;
    --primary-light: #eefbf9;
    --primary-tint: #f4fdfc;
    --secondary-color: #232323;
    --dark-text: #232323;
    --body-text: #4a5568;
    --light-text: #718096;
    --accent-orange: #f58220;
    --accent-yellow: #ffb900;
    --rating-star: #ffb900;
    --white: #ffffff;
    --light-bg: #f8fbfb;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    --danger: #e53e3e;
    --success: #38a169;
    --shadow-sm: 0 2px 6px rgba(20, 187, 171, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 32px rgba(20, 187, 171, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.35rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 0.95rem;
}

p {
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-dark {
    color: var(--dark-text) !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-light-tint {
    background-color: var(--primary-light) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark {
    background-color: var(--secondary-color) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-fluid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Row & Columns Flex */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 15px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.text-right {
    text-align: right;
}

.w-100 {
    width: 100%;
}

.position-relative {
    position: relative;
}

.position-fixed {
    position: fixed;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 187, 171, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000000;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-accent:hover {
    background-color: #d97012;
    color: var(--white);
}

.btn-lg {
    padding: 15px 34px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.header-topbar {
    background-color: #f7fafc;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
    padding: 6px 0;
}

.header-topbar a {
    color: var(--body-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-topbar a:hover {
    color: var(--primary-color);
}

.header-topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-main {
    padding: 12px 0;
}

.site-logo {
    display: inline-block;
}

.site-logo img {
    height: 48px;
    width: auto;
}

/* Navigation & Mega Menu */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-text);
    text-transform: capitalize;
    transition: var(--transition);
}

.nav-link:hover,
.nav-item.active>.nav-link {
    color: var(--primary-color);
}

.nav-link i.fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-item:hover>.nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown / Mega Menu Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--primary-color);
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
}

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

.dropdown-item {
    display: block;
    padding: 8px 22px;
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 28px;
}

/* Mega Menu Full Width */
.mega-menu-item {
    position: static !important;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--primary-color);
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
}

.mega-menu-item:hover>.mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 6px;
}

.mega-menu-column ul li a {
    color: #4a5568;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: var(--transition);
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   HERO SECTION & CONSULTATION FORM
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f7fdfc 0%, #eefbf9 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(20, 187, 171, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.hero-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(20, 187, 171, 0.15);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-trust-ratings {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-stars {
    color: var(--rating-star);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.rating-label {
    font-size: 0.82rem;
    color: var(--light-text);
    font-weight: 600;
}

/* Consultation / Calculator Card Form */
.consult-calculator-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.card-header-teal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 18px 25px;
    text-align: center;
}

.card-header-teal h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.card-header-teal p {
    font-size: 0.88rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.calculator-body {
    padding: 24px 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--dark-text);
    background-color: #fdfdfd;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(20, 187, 171, 0.15);
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    appearance: none;
    -webkit-appearance: none;
}

.pages-words-sync {
    display: flex;
    gap: 12px;
}

.pages-words-sync>div {
    flex: 1;
}

.page-counter-wrap {
    display: flex;
    align-items: center;
}

.counter-btn {
    background: #edf2f7;
    border: 1px solid var(--border-color);
    width: 38px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.counter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.counter-btn.minus {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.counter-btn.plus {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.counter-input {
    text-align: center;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    height: 42px;
}

/* Price Box */
.price-display-box {
    background: #f4fdfc;
    border: 1.5px dashed var(--primary-color);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0;
}

.price-strike {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #ff4d4f;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-left: 6px;
}

.price-final {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ==========================================================================
   STATISTICS & COUNTERS SECTION
   ========================================================================== */
.stats-section {
    padding: 50px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.stat-box {
    text-align: center;
    padding: 20px 15px;
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
}

/* ==========================================================================
   WHY CHOOSE US / PERKS SECTION
   ========================================================================== */
.why-choose-section {
    padding: 80px 0;
    background-color: #fbfdfd;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-header .sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.perk-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(20, 187, 171, 0.4);
}

.perk-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.7rem;
    transition: var(--transition);
}

.perk-card:hover .perk-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.perk-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.perk-card p {
    color: #666;
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICES GRID / CARDS
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 180px;
}

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

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.9rem;
    color: #666;
    flex: 1;
    margin-bottom: 15px;
}

/* ==========================================================================
   ORDERING PROCESS (HOW IT WORKS)
   ========================================================================== */
.order-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3fcfb 0%, #ffffff 100%);
}

.process-step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 18px;
    border-radius: var(--radius-full);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 15px 0 15px;
}

.process-step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 0;
}

/* ==========================================================================
   SUBJECTS GRID
   ========================================================================== */
.subjects-section {
    padding: 80px 0;
    background-color: var(--white);
}

.subject-item-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.subject-item-box:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.subject-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.subject-item-box h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--dark-text);
}

.subject-item-box span {
    font-size: 0.82rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================================================
   WRITERS SHOWCASE
   ========================================================================== */
.writers-section {
    padding: 80px 0;
    background: #fbfdfd;
}

.writer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 30px;
}

.writer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.writer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(20, 187, 171, 0.2);
}

.writer-degree {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.writer-card h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.writer-specialty {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.writer-stats-row {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.writer-stats-row strong {
    color: var(--dark-text);
    display: block;
}

/* ==========================================================================
   PRICING PLANS
   ========================================================================== */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    margin-bottom: 30px;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card.featured .popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pricing-amount span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--light-text);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 25px 0 30px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li i {
    color: var(--primary-color);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5fcfb 0%, #eefbf9 100%);
}

.review-card-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin: 10px;
    transition: var(--transition);
}

.review-card-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.review-stars {
    color: var(--rating-star);
    font-size: 1rem;
}

.review-quote-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.reviewer-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--light-text);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdfdfd;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.accordion-item.active .accordion-header {
    background: var(--primary-light);
    color: var(--primary-color);
    border-bottom: 1px solid rgba(20, 187, 171, 0.2);
}

.accordion-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

.accordion-body {
    padding: 20px 24px;
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
    display: none;
    background: var(--white);
}

.accordion-item.active .accordion-body {
    display: block;
}

/* ==========================================================================
   APP BANNER & CTA
   ========================================================================== */
.app-banner-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: 40px auto;
}

.app-banner-section h2 {
    color: var(--white);
    font-size: 2rem;
}

.quick-order-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.quick-order-cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.quick-order-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #1a1a1a;
    color: #a0aec0;
    padding: 70px 0 25px;
    font-size: 0.9rem;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 18px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links li a {
    color: #a0aec0;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #a0aec0;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-list li a {
    color: #a0aec0;
}

.footer-contact-list li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #a0aec0;
    margin-left: 15px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   FLOATING ACTIONS & CHAT
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.6;
    animation: pulseWhatsapp 2s infinite;
    z-index: -1;
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9990;
    padding: 10px 15px;
}

.mobile-bottom-bar .btn-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.mobile-bottom-bar .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
}

/* Breadcrumbs */
.breadcrumbs-bar {
    padding: 14px 0;
    background-color: #f7fafc;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.breadcrumb-list li a {
    color: #718096;
}

.breadcrumb-list li a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li.active {
    color: var(--dark-text);
    font-weight: 600;
}

.breadcrumb-separator {
    color: #a0aec0;
    font-size: 0.75rem;
}

/* Fix intl-tel-input padding overlap */
.iti--allow-dropdown input[type="tel"],
.iti--allow-dropdown input[type="text"],
.iti input {
    padding-left: 52px !important;
}