/* -----------------------
   1. GLOBAL VARIABLES
   ----------------------- */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd9;
    --secondary: #6c757d;
    --accent: #ff6b9d;
    --blush: #ffe0ec;
    --dark: #111111;
    --text: #333333;
    --gray: #666666;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: rgba(0,0,0,0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(233, 30, 99, 0.15);
    --shadow-glow: 0 0 20px rgba(233, 30, 99, 0.3);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

/* -----------------------
   2. RESET & BASE
   ----------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* -----------------------
   3. UTILITIES
   ----------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p {
    color: var(--white);
}

.text-gray,
.text-gray h1,
.text-gray h2,
.text-gray h3,
.text-gray h4,
.text-gray h5,
.text-gray h6,
.text-gray p {
    color: var(--gray);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.font-bold {
    font-weight: 700 !important;
}

.text-xl {
    font-size: 1.25rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
    position: relative;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
}

/* -----------------------
   4. BUTTONS
   ----------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff4f6f 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
    z-index: 2;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.shadow-glow {
    box-shadow: 0 0 30px rgba(255, 79, 111, 0.5);
}

/* -----------------------
   5. NAVBAR
   ----------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    height: 70px;
    overflow: visible;
    z-index: 1000;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar .nav-links a { color: #111111; }
.navbar .nav-dropdown > a { color: #111111; }
.navbar .logo-text-main { color: #111111; }
.navbar .mobile-menu-btn i { color: #111111; }

.navbar .nav-links a:hover, 
.navbar .nav-links a.active,
.navbar .nav-dropdown:hover > a { 
    color: var(--primary); 
}

/* Scrolled state for sticky shadow refinement */
.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 2px;
    object-fit: contain;
    display: block;
}

.logo-img--header {
    width: auto;
    height: 54px;
    max-width: 220px;
    border-radius: 0;
    object-fit: contain;
}

.logo-box {
    width: 44px;
    height: 44px;
    background: #ff476e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.logo-t {
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 800;
    margin-right: -4px;
    margin-top: 2px;
    z-index: 2;
    text-shadow: 1px 0px 0px #ff476e;
}

.logo-s {
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
    font-weight: 800;
    margin-left: -5px;
    margin-top: 2px;
    z-index: 1;
}

.logo-text-main {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 900;
    color: #2d3748;
    letter-spacing: -0.5px;
}

.logo-text-main.text-white {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0 auto;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown specific styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 320px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--light);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
    transition: var(--transition);
}

.dropdown-item::after {
    display: none !important;
    /* Remove the underline effect for dropdown items */
}

.dropdown-item:hover {
    background-color: var(--light);
}

.dropdown-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.dropdown-text h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
    font-weight: 600;
}

.dropdown-text p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.3;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 70px 24px 30px;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.mobile-nav-close button {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-close button:hover {
    background: var(--blush);
    color: var(--primary);
}

.mobile-nav a:not(.btn) {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--dark);
    display: block;
}

.mobile-nav a.active:not(.btn) {
    color: var(--primary);
}

.mobile-nav .btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: linear-gradient(135deg, var(--primary) 0%, #ff4f6f 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3) !important;
}

.mobile-nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4) !important;
}

/* -----------------------
   PACKAGES PAGE
   ----------------------- */
.packages-hero {
    padding: 140px 0 80px;
    background: var(--white);
    color: var(--dark);
    overflow: hidden;
}



.packages-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.packages-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.packages-hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 620px;
    margin-bottom: 24px;
}

.packages-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.packages-hero-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.packages-visual-card {
    border-radius: var(--radius-lg);
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 26px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.packages-visual-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 65, 108, 0.18);
    border: 1px solid rgba(255, 65, 108, 0.35);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 18px;
 
}

.packages-visual-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-weight: 500;
}

.packages-visual-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 65, 108, 0.15);
}

.packages-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.packages-tab {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.packages-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 65, 108, 0.35);
}

.packages-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b87 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(255, 79, 111, 0.25);
}

.packages-panel {
    display: none;
}

.packages-panel.active {
    display: block;
}

.packages-grid {
    display: grid;
    gap: 24px;
}

.packages-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 65, 108, 0.25);
}

.package-card--featured {
    border: 1px solid rgba(255, 65, 108, 0.35);
    box-shadow: 0 18px 50px rgba(255, 79, 111, 0.12);
}

.package-card-top {
    margin-bottom: 16px;
}

.package-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.package-badge--featured {
    background: rgba(255, 65, 108, 0.12);
    border: 1px solid rgba(255, 65, 108, 0.25);
}

.package-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.package-summary {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.package-highlights {
    display: grid;
    gap: 10px;
    margin: 16px 0 20px;
}

.package-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
}

.package-highlights i {
    color: var(--primary);
    font-size: 1.15rem;
    margin-top: 2px;
}

.package-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-link {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.package-link:hover {
    color: var(--dark);
}

.package-checklist {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
}

.package-checklist-head {
    text-align: center;
    margin-bottom: 16px;
}

.package-checklist-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.package-checklist-desc {
    color: var(--gray);
    font-weight: 500;
    margin: 0;
}

.table-scroll {
    overflow: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.table-scroll:focus {
    outline: 2px solid rgba(255, 65, 108, 0.45);
    outline-offset: 3px;
}

.table-scroll--tall {
    max-height: 560px;
}

.pkg-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
}

.pkg-table thead th {
    position: sticky;
    top: 0;
    z-index: 6;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.pkg-table th,
.pkg-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    white-space: nowrap;
}

.pkg-table th[scope="row"] {
    text-align: left;
    font-weight: 700;
    color: var(--dark);
}

.pkg-table tbody td {
    color: var(--text);
    font-weight: 600;
}

.pkg-table tbody tr:hover td,
.pkg-table tbody tr:hover th[scope="row"] {
    background: rgba(0, 0, 0, 0.015);
}

.pkg-table thead th:first-child,
.pkg-table tbody th[scope="row"] {
    position: sticky;
    left: 0;
    z-index: 5;
    background: var(--white);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.pkg-table thead th:first-child {
    z-index: 7;
}

.pkg-group th {
    text-align: left;
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--dark);
    background: rgba(255, 65, 108, 0.06);
    border-bottom: 1px solid rgba(255, 65, 108, 0.12);
}

.pkg-yes,
.pkg-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.pkg-yes {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #047857;
}

.pkg-no {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray);
}

.comparison-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    min-width: 980px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 260px repeat(8, minmax(120px, 1fr));
}

.comparison-cell {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark);
}

.comparison-feature {
    justify-content: flex-start;
    position: sticky;
    left: 0;
    background: var(--white);
    z-index: 3;
}

.comparison-head .comparison-cell {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 4;
    font-family: var(--font-heading);
}

.comparison-group .comparison-cell {
    background: rgba(255, 65, 108, 0.06);
    font-family: var(--font-heading);
}

.comparison-row:hover .comparison-cell {
    background: rgba(0, 0, 0, 0.015);
}

.comparison-cell i {
    color: var(--primary);
    font-size: 1.25rem;
}

.mobile-compare {
    display: none;
}

.mobile-compare-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.mobile-compare-desc {
    color: var(--gray);
}

.mobile-compare-trigger {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
}

.mobile-compare-panel {
    display: none;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.mobile-compare-panel.open {
    display: block;
}

.mobile-compare-group h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.mobile-compare-group ul {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.faq-wrap {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark);
}

.faq-a {
    display: none;
    padding: 0 18px 18px;
    color: var(--gray);
    font-weight: 500;
}

.faq-a.open {
    display: block;
}

@media (max-width: 1024px) {
    .packages-hero-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid--3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .packages-grid--2 {
        grid-template-columns: 1fr;
    }

    .table-scroll--tall {
        max-height: 420px;
    }
}

/* -----------------------
   5b. INNER PAGE HERO
   ----------------------- */
.inner-hero {
    padding: 160px 0 80px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 79, 111, 0.2) 0%, rgba(17, 17, 17, 0) 70%);
    z-index: 1;
}

.inner-hero .hero-title {
    color: var(--white);
}

.inner-hero .section-subtitle {
    color: #FCE7EB;
}

.inner-hero .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* -----------------------
   5c. SERVICE DETAIL SECTIONS
   ----------------------- */
.service-detail-section {
    padding: 100px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-section:nth-child(even) {
    background-color: var(--light);
}

.service-detail-section.reverse .service-content {
    order: 2;
}

.service-detail-section.reverse .service-image {
    order: 1;
}

.service-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

.service-list {
    margin-top: 30px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.service-list li i {
    color: var(--primary);
    font-size: 1.5rem;
    background: var(--secondary);
    padding: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-list h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.service-list p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Workflow cards (shared for marketing/service pages) */
.workflow-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.workflow-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
}

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 65, 108, 0.25);
}

.workflow-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.workflow-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.workflow-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Book launch section */
.book-launch-section {
    padding: 100px 0;
    background: var(--secondary);
}

.book-launch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.book-launch-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-section.reverse .service-content,
    .service-detail-section.reverse .service-image {
        order: unset;
    }

    .workflow-cards {
        grid-template-columns: 1fr;
    }

    .book-launch-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------
   5d. ABOUT PAGE
   ----------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------
   6. HERO SECTION
   ----------------------- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #000; /* Ensure no white shows through */
}

.hero-bg-slider .slider-track {
    height: 100%;
}

.hero-bg-slider .slider-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    background-color: #000;
    will-change: opacity;
}

.hero-bg-slider .slider-slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-bg-slider .slider-slide.prev-slide {
    opacity: 1;
    z-index: 5;
}

/* Removed blurred background for desktop as per user request */
.hero-bg-slider .slider-slide::before {
    display: none;
}

.hero-bg-slider .slider-slide img {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 30; /* Ensure overlay stays on top of slides */
}

.hero-center-container {
    position: relative;
    z-index: 40; /* Above overlay and images */
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-white { color: var(--white) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }

.text-gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, #ffc1d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.justify-center { 
    display: flex;
    justify-content: center; 
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 46, 99, 0.9) !important;
    color: #FFFFFF !important;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-image-wrapper>img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card .icon-box {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

.pos-1 {
    top: 10%;
    right: -10%;
}

.pos-2 {
    bottom: 10%;
    left: -10%;
}

/* -----------------------
   6b. IMAGE SLIDER
   ----------------------- */
.hero-slider {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    will-change: opacity;
}

.slider-slide.active {
    opacity: 1;
    z-index: 10;
}

.slider-slide.prev-slide {
    opacity: 1;
    z-index: 5;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 50px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
}

/* -----------------------
   6c. BOOKS CAROUSEL
   ----------------------- */
.books-carousel {
    position: relative;
    padding: 0 50px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 8px 4px;
}

.book-card-v2 {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.book-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.book-cover-v2 {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--light);
}

.book-cover-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.book-card-v2:hover .book-cover-v2 img {
    transform: scale(1.05);
}

.book-info-v2 {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.book-info-v2 h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-author-v2 {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.book-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 50px;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .books-carousel {
        padding: 0 40px;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* -----------------------
   7. STATS Section
   ----------------------- */
.stats-section {
    padding: 60px 0;
    background: var(--dark);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--primary);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* -----------------------
   8. WHY Section (Glass Cards)
   ----------------------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(255, 79, 111, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray);
}

/* -----------------------
   9. SERVICES Grid
   ----------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.services-group-title {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

.services-group-title h3 {
    font-size: 2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.services-group-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.services-group-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.view-all-services:hover {
    color: var(--dark);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
    text-align: center;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.service-features li i {
    color: var(--primary);
}

/* -----------------------
   10. PROCESS TIMELINE
   ----------------------- */
.process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    background: var(--secondary);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--secondary);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-top: 8px;
}

.timeline-content p {
    color: var(--gray);
}

/* -----------------------
   11. BOOKS & AUTHORS Grid
   ----------------------- */
.books-grid,
.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.book-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.book-cover {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.book-card:hover .book-cover img {
    transform: scale(1.05);
}

.book-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.book-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-author {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.book-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.view-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.875rem;
}

.view-link:hover {
    color: var(--primary);
}

.authors-grid {
    grid-template-columns: repeat(4, 1fr);
}

.author-card {
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.author-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.author-title {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.author-book {
    background: var(--light);
    padding: 8px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.author-book i {
    color: var(--primary);
}

/* -----------------------
   12. TESTIMONIALS
   ----------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: left;
}

.rating {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.quote {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    color: var(--white);
    margin-bottom: 2px;
}

.client-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* -----------------------
   13. BLOG Grid
   ----------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
}

/* -----------------------
   14. FINAL CTA
   ----------------------- */
.cta-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 79, 111, 0.2) 0%, rgba(17, 17, 17, 0) 70%);
    z-index: 1;
}

.text-4xl {
    font-size: 2.5rem;
}

.lg\:text-5xl {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

/* -----------------------
   15. FOOTER
   ----------------------- */
.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    color: var(--gray);
    margin-bottom: 16px;
}

.contact-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* -----------------------
   15.5. FILTER NAV
   ----------------------- */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #d1d5db;
    /* gray */
    background: transparent;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(255, 65, 108, 0.2);
}

/* -----------------------
   16. E-COMMERCE CART & ANIMATIONS
   ----------------------- */
@keyframes cart-bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.cart-toggle-btn.bouncing {
    animation: cart-bounce 0.4s ease-in-out;
}

.cart-sidebar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15) !important;
}

.add-to-cart-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.add-to-cart-btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-enter {
    animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--light);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

.qty-btn {
    transition: background 0.2s ease, transform 0.1s ease !important;
}

.qty-btn:hover {
    background: var(--light) !important;
}

.qty-btn:active {
    transform: scale(0.9) !important;
}

/* -----------------------
   17. RESPONSIVE DESIGN
   ----------------------- */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(20px, 30px) rotate(5deg);
    }
}

body.packages-page {
    background: var(--white);
    color: var(--text);
}

body.packages-page h1,
body.packages-page h2,
body.packages-page h3,
body.packages-page h4,
body.packages-page h5,
body.packages-page h6 {
    color: var(--dark);
}

body.packages-page .navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.packages-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
}

.pkg-main {
    padding-top: 90px;
}

.pkg-hero {
    padding: 70px 0 40px;
    position: relative;
    overflow: hidden;
}

.pkg-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.pkg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 65, 108, 0.18);
    background: rgba(255, 230, 234, 0.7);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.pkg-hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.pkg-hero-subtitle {
    color: var(--gray);
    font-size: 1.075rem;
    max-width: 56ch;
}

.pkg-hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pkg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 650;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.pkg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 65, 108, 0.25);
}

.pkg-btn--gold {
    border-color: rgba(255, 65, 108, 0.35);
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b87 100%);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(255, 79, 111, 0.22);
}

.pkg-btn--gold:hover {
    box-shadow: 0 22px 55px rgba(255, 79, 111, 0.28);
}

.pkg-btn--ghost {
    background: transparent;
}

.pkg-hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.pkg-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.92rem;
}

.pkg-hero-visual {
    position: relative;
}

.pkg-visual-card {
    position: relative;
    border-radius: 26px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: radial-gradient(900px 400px at 10% 10%, rgba(255, 65, 108, 0.12), transparent 55%),
        radial-gradient(700px 400px at 90% 20%, rgba(255, 230, 234, 0.65), transparent 60%),
        rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.pkg-visual-stack {
    position: relative;
    height: 220px;
    margin-bottom: 18px;
}

.pkg-book {
    position: absolute;
    width: 72%;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 230, 234, 0.75));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.pkg-book--1 {
    left: 10px;
    top: 24px;
    transform: rotate(-8deg);
}

.pkg-book--2 {
    left: 36px;
    top: 92px;
    transform: rotate(6deg);
    background: linear-gradient(135deg, rgba(255, 65, 108, 0.22), rgba(255, 255, 255, 0.9));
    border-color: rgba(255, 65, 108, 0.22);
}

.pkg-book--3 {
    left: 14px;
    top: 156px;
    transform: rotate(-2deg);
}

.pkg-meta-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.pkg-meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 65, 108, 0.12);
    border: 1px solid rgba(255, 65, 108, 0.18);
    color: var(--primary);
    font-size: 1.4rem;
}

.pkg-meta-text strong {
    display: block;
    font-size: 1.02rem;
    margin-bottom: 2px;
}

.pkg-meta-text span {
    color: var(--gray);
    font-size: 0.9rem;
}

.pkg-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.pkg-mini {
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--gray);
    font-weight: 600;
}

.pkg-mini i {
    color: var(--primary);
}

.pkg-price-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.pkg-sticky-left {
    position: sticky;
    left: 0;
    z-index: 4;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark);
}

.pkg-th-popular {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b87 100%);
}

.pkg-acc-pill {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 850;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b87 100%);
}

.pkg-acc-cat {
    margin-top: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.5);
}

.pkg-acc-body ul {
    display: grid;
    gap: 8px;
}

.pkg-addon-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pkg-addon {
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    padding: 22px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pkg-addon:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 65, 108, 0.22);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.12);
}

.pkg-addon-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 65, 108, 0.12);
    border: 1px solid rgba(255, 65, 108, 0.18);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.pkg-addon h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pkg-addon p {
    color: var(--gray);
    font-weight: 600;
}

.pkg-cta {
    padding: 70px 0 90px;
}

.pkg-cta-inner {
    border-radius: 26px;
    border: 1px solid rgba(255, 65, 108, 0.22);
    background: radial-gradient(900px 300px at 15% 40%, rgba(255, 65, 108, 0.16), transparent 60%),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 35px 110px rgba(0, 0, 0, 0.08);
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pkg-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pkg-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.pkg-reveal.pkg-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .pos-1,
    .pos-2 {
        display: none;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-text {
        text-align: center;
    }

    .process-text .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .pkg-hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 900px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 40%;
    }

    .stat-divider {
        display: none;
    }

    .feature-grid,
    .services-grid,
    .services-grid--3,
    .books-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .book-card {
        max-width: 100%;
    }

    .book-cover {
        max-width: 180px;
        aspect-ratio: 3 / 4;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pkg-compare-desktop {
        display: none;
    }

    .pkg-compare-mobile {
        display: block;
    }

    .pkg-addon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .books-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .book-cover {
        aspect-ratio: 3 / 4;
        max-width: 150px;
        max-height: 200px;
    }

    .book-info {
        padding: 12px;
    }

    .book-info h3 {
        font-size: 1rem;
    }

    .book-author {
        font-size: 0.75rem;
    }

    .book-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .authors-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===========================
   COMPREHENSIVE MOBILE FIXES
   =========================== */

/* Mobile Landscape */
@media (max-width: 768px) {
    /* Container & Spacing */
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    /* Navigation */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        gap: 15px;
    }
    
    .logo-img--header {
        height: 40px;
        width: auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        font-size: 1.5rem;
        padding: 8px;
    }
    
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 20px;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav-close {
        text-align: right;
        margin-bottom: 30px;
    }
    
    .mobile-nav-close button {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        color: var(--dark);
        font-weight: 500;
    }
    
    /* Hero Section Mobile Refinement */
    /* Stacked Hero Layout for Mobile */
    .hero {
        padding: 0;
        display: flex;
        flex-direction: column;
        height: auto !important;
        min-height: auto !important;
        background-color: #0c0c0c;
    }
    
    .hero-bg-slider {
        position: relative !important;
        height: 280px !important; /* Tightened height to remove bottom gap */
        width: 100% !important;
        order: 1;
        background-color: #000;
    }

    .hero-center-container {
        position: relative !important;
        order: 2;
        padding: 5px 20px 60px; /* Reduced top padding to move text up */
        background-color: #0c0c0c;
        margin-top: -20px; /* Blend with image bottom */
        z-index: 50;
        text-align: center;
    }

    .hero-bg-slider .slider-slide img {
        object-fit: contain !important;
        object-position: top !important;
        background-color: #000;
        border-radius: 0 0 20px 20px; /* Rounded bottom for modern look as seen in screenshot */
    }

    .hero-overlay {
        background: linear-gradient(to bottom, transparent 60%, #0c0c0c 100%);
    }

    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 12px;
    }

    .hero-badge {
        margin-bottom: 15px;
    }
    
    /* End of Hero Mobile Stacked Layout */
    
    /* Service Cards */
    .services-grid,
    .services-grid--3 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
        text-align: center;
    }

    .service-horizontal {
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
        max-width: 450px;
        margin: 0 auto 30px;
        direction: ltr !important;
    }

    .service-horizontal.service-reverse {
        flex-direction: column-reverse !important;
    }

    .service-h-image {
        width: 100% !important;
        height: 220px !important;
    }

    .service-h-content {
        padding: 25px 20px !important;
        text-align: center !important;
    }

    .service-features {
        grid-template-columns: 1fr !important;
        text-align: left;
        margin-top: 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
    }
    
    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .process-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .process-number {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    
    .process-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px;
    }
    
    .process-card p {
        font-size: 0.9rem !important;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
        margin-bottom: 20px;
    }
    
    .author-info {
        gap: 12px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-details h4 {
        font-size: 1rem !important;
    }
    
    .author-details p {
        font-size: 0.85rem !important;
    }
    
    /* CTA Section */
    .cta {
        padding: 60px 0;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 0.95rem !important;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* Inner Pages */
    .inner-hero {
        padding: 120px 0 60px !important;
    }
    
    .inner-hero h1 {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    
    .inner-hero p {
        font-size: 0.95rem !important;
        max-width: 100%;
    }
    
    /* Book Cards */
    .books-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px;
    }
    
    .book-card {
        padding: 20px;
    }
    
    .book-cover {
        max-width: 120px;
        max-height: 160px;
    }
    
    .book-info h3 {
        font-size: 1.1rem !important;
    }
    
    /* Author Cards */
    .authors-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px;
    }
    
    .author-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .author-avatar-large {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }
    
    .author-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px;
    }
    
    .author-card p {
        font-size: 0.9rem !important;
    }
    
    /* Blog Cards */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .blog-card {
        padding: 20px;
    }
    
    .blog-image {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .blog-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px;
    }
    
    .blog-meta {
        font-size: 0.8rem !important;
        margin-bottom: 12px;
    }
    
    .blog-excerpt {
        font-size: 0.9rem !important;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
        margin-bottom: 8px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-q {
        padding: 15px 20px;
        font-size: 1rem !important;
    }
    
    .faq-a {
        padding: 0 20px 15px;
        font-size: 0.9rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.2rem !important;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem !important;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.85rem !important;
    }
}

/* -----------------------
   PACKAGE TABLES (GOLD STANDARD)
   ----------------------- */
.package-checklist {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: 48px;
    overflow: hidden;
}

.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 0 1px var(--border);
}

.pkg-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.95rem;
}

.pkg-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.pkg-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pkg-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.pkg-table tbody tr:hover {
    background: rgba(233, 30, 99, 0.02);
}

.pkg-group th {
    background: #fdf2f5;
    color: var(--dark);
    font-weight: 800;
    padding: 20px;
    border-bottom: 2px solid var(--primary-light);
}

.pkg-yes {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #4caf50;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pkg-no {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #ef5350;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pkg-premium {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
}

/* -----------------------
   CART & CHECKOUT MOBILE REFINEMENT
   ----------------------- */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .navbar {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 4px 30px rgba(0,0,0,0.06) !important;
        height: 70px !important;
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-container {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 20px !important;
    }

    .logo-img--header {
        height: 44px !important;
        width: auto !important;
        max-width: 250px !important;
        transform: scale(1.6);
        transform-origin: left center;
        margin-left: 15px !important;
    }

    .mobile-menu-btn {
        font-size: 2.3rem !important;
        color: var(--dark) !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .cart-sidebar {
        width: 100% !important;
        right: -100% !important;
    }
    
    .cart-sidebar.open {
        right: 0 !important;
    }

    .address-modal > div {
        width: 95% !important;
        max-width: none !important;
        margin: 10px;
        padding: 20px !important;
    }

    #checkout-btn {
        padding: 18px !important;
        font-size: 1.1rem !important;
    }

    .pkg-table th, .pkg-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .pkg-yes, .pkg-no, .pkg-premium {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(233, 30, 99, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* Typography */
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.3rem !important;
    }
    
    h4 {
        font-size: 1.1rem !important;
    }
    
    p {
        font-size: 0.9rem !important;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 1.9rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
    }
    
    /* Process */
    .process-card {
        padding: 20px 15px;
    }
    
    .process-number {
        font-size: 1.8rem !important;
    }
    
    .process-card h3 {
        font-size: 1.2rem !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
    }
    
    /* CTA */
    .cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem !important;
    }
    
    /* Inner Hero */
    .inner-hero {
        padding: 100px 0 50px !important;
    }
    
    .inner-hero h1 {
        font-size: 1.8rem !important;
    }
    
    /* Books */
    .books-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .book-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .book-cover {
        max-width: 100px;
        max-height: 133px;
        margin: 0 auto 15px;
    }
    
    /* Authors */
    .authors-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .author-card {
        padding: 20px 15px;
    }
    
    .author-avatar-large {
        width: 70px;
        height: 70px;
    }
    
    /* Blog */
    .blog-image {
        height: 180px;
    }
    
    .blog-card h3 {
        font-size: 1.1rem !important;
    }
    
    /* Contact */
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem !important;
    }
    
    .service-card,
    .process-card,
    .testimonial-card,
    .author-card,
    .blog-card {
        padding: 20px 15px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}
/* Horizontal Service Card */
/* Horizontal Service Card */
.service-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 50px auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
    align-items: stretch;
    border: 1px solid rgba(0,0,0,0.03);
}

/* No reverse in desktop needed as HTML is already alternating */
.service-reverse {
    direction: ltr; 
}

.service-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.12);
    border-color: var(--primary-light);
}

.service-h-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-h-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-horizontal:hover .service-h-image img {
    transform: scale(1.05);
}

.service-h-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-h-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.service-h-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.85rem;
}

.service-feature-item i {
    color: #4caf50;
    font-size: 1.1rem;
}

/* Consultation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 25px 30px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--white);
    color: var(--primary);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label, .form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #edf2f7;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background-color: #fdfdfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px var(--blush);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 15px; }
}

.modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}


/* Testimonial Avatar Grid */
.testimonials-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-avatars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-avatar-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.testimonial-avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.testimonial-avatar-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(233, 30, 99, 0.1), 0 10px 10px -5px rgba(233, 30, 99, 0.04);
    border-color: var(--primary-light);
}

.testimonial-avatar-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.testimonial-avatar-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(233, 30, 99, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-avatar-item:hover::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .testimonial-avatars-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-avatars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .testimonial-avatars-grid {
        gap: 15px;
    }
}


/* -----------------------
   INSTANT POPUP STYLES
   ----------------------- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    width: 95%;
    max-width: 600px; /* Adjusted for better 'proper' size */
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.7) translateY(50px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    z-index: 1010;
    transition: var(--transition);
    line-height: 1;
}

.popup-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.popup-body {
    display: flex;
    align-items: center;
}

.popup-image {
    flex: 1;
    background: #f8f9fa;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.popup-text {
    flex: 1.2;
    padding: 50px;
}

.popup-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #fff0f3;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .popup-body {
        flex-direction: column;
    }
    .popup-image {
        min-height: 250px;
        width: 100%;
    }
    .popup-text {
        padding: 30px;
        text-align: center;
    }
    .popup-text h2 {
        font-size: 1.6rem;
    }
}



/* Process Flow / Flow Chart */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.5;
}

.process-connector {
    position: absolute;
    left: 60px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }
    .process-connector {
        display: none;
    }
    
    /* MOBILE NAVIGATION REFINEMENTS */
    .nav-actions .btn {
        display: none !important;
    }
    
    .mobile-nav .btn {
        background: linear-gradient(135deg, var(--primary) 0%, #ff4f6f 100%) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        margin: 20px auto !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2) !important;
        border: none !important;
    }
}
