/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #01042d;
    --secondary-color: #fb3e87;
    --accent-color: #f6a42f;
    --accent-color-2: #f9705c;
    --text-color: #01042d;
    --light-bg: #fffffd;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, var(--secondary-color), var(--accent-color-2));
    --gradient-2: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    --shadow-sm: 0 4px 6px rgba(1, 4, 45, 0.05);
    --shadow-md: 0 10px 15px rgba(1, 4, 45, 0.1);
    --shadow-lg: 0 20px 25px rgba(1, 4, 45, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --lemon-milk-font: 'Inter', sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* NERDJITSU Brand Styling with LEMON MILK Font */
.nerdjitsu-brand {
    font-family: var(--lemon-milk-font);
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: baseline;
    line-height: inherit;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 0.5rem 0;
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(1, 4, 45, 0.95) 0%, 
        rgba(251, 62, 135, 0.85) 50%, 
        rgba(246, 164, 47, 0.75) 100%);
    background-image: 
        linear-gradient(135deg, 
            rgba(1, 4, 45, 0.95) 0%, 
            rgba(251, 62, 135, 0.85) 50%, 
            rgba(246, 164, 47, 0.75) 100%),
        url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(246, 164, 47, 0.15) 0%, 
        rgba(1, 4, 45, 0.85) 100%);
}

/* Cool Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--accent-color);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    animation: pulseText 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.8);
    animation: arrowPulse 2s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-arrow {
    background: linear-gradient(to bottom, 
        var(--accent-color) 0%, 
        rgba(246, 164, 47, 0.6) 50%, 
        transparent 100%);
}

.scroll-indicator:hover .scroll-arrow::after {
    border-top-color: var(--accent-color);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Background Elements Container */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Enhanced Floating Elements */
.floating-element {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.12);
    animation: gentleFloat 15s ease-in-out infinite;
    transition: all 0.6s ease;
    filter: blur(0.5px);
}

.floating-element:hover {
    color: rgba(246, 164, 47, 0.6);
    transform: scale(1.1);
    filter: blur(0px);
}

.element-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    font-size: 2.2rem;
}

.element-2 {
    top: 35%;
    right: 20%;
    animation-delay: 5s;
    font-size: 1.6rem;
}

.element-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 10s;
    font-size: 2rem;
}

.element-4 {
    bottom: 40%;
    right: 15%;
    animation-delay: 15s;
    font-size: 1.4rem;
}

.element-5 {
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    font-size: 1.8rem;
}

.element-6 {
    top: 50%;
    left: 10%;
    animation-delay: 7s;
    font-size: 2.4rem;
}

.element-7 {
    top: 70%;
    left: 80%;
    animation-delay: 12s;
    font-size: 1.6rem;
}

.element-8 {
    top: 25%;
    right: 10%;
    animation-delay: 18s;
    font-size: 2rem;
}

.element-9 {
    bottom: 15%;
    left: 60%;
    animation-delay: 22s;
    font-size: 1.8rem;
}

.element-10 {
    top: 80%;
    right: 30%;
    animation-delay: 25s;
    font-size: 1.4rem;
}

/* Additional Background Elements */
.element-11 {
    top: 5%;
    left: 50%;
    animation-delay: 8s;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.08);
}

.element-12 {
    top: 45%;
    right: 5%;
    animation-delay: 13s;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.1);
}

.element-13 {
    bottom: 5%;
    left: 40%;
    animation-delay: 20s;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.09);
}

.element-14 {
    top: 60%;
    left: 5%;
    animation-delay: 16s;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.11);
}

.element-15 {
    top: 15%;
    left: 85%;
    animation-delay: 11s;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.07);
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.06;
    animation: geometricFloat 20s ease-in-out infinite;
}

.shape-1 {
    top: 30%;
    left: 20%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(246, 164, 47, 0.3);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 25%;
    width: 30px;
    height: 30px;
    background: rgba(251, 62, 135, 0.2);
    transform: rotate(45deg);
    animation-delay: 7s;
}

.shape-3 {
    bottom: 30%;
    left: 70%;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation-delay: 14s;
}

.shape-4 {
    top: 75%;
    left: 15%;
    width: 35px;
    height: 35px;
    background: rgba(246, 164, 47, 0.15);
    border-radius: 50%;
    animation-delay: 21s;
}

.shape-5 {
    top: 40%;
    right: 10%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(251, 62, 135, 0.25);
    transform: rotate(30deg);
    animation-delay: 28s;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.12;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.18;
    }
    50% {
        transform: translateY(-40px) translateX(-5px);
        opacity: 0.22;
    }
    75% {
        transform: translateY(-20px) translateX(-15px);
        opacity: 0.18;
    }
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.06;
    }
    25% {
        transform: translateY(-15px) translateX(8px) rotate(5deg);
        opacity: 0.09;
    }
    50% {
        transform: translateY(-30px) translateX(-3px) rotate(-3deg);
        opacity: 0.12;
    }
    75% {
        transform: translateY(-15px) translateX(-12px) rotate(2deg);
        opacity: 0.09;
    }
}

/* Subtle Connection Lines */
.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    animation: subtleFlow 25s linear infinite;
}

.line-1 {
    top: 30%;
    left: 0;
    width: 300px;
    animation-delay: 0s;
    animation-duration: 30s;
}

.line-2 {
    top: 60%;
    right: 0;
    width: 250px;
    animation-delay: 10s;
    animation-duration: 35s;
}

.line-3 {
    bottom: 35%;
    left: 0;
    width: 200px;
    animation-delay: 20s;
    animation-duration: 25s;
}

@keyframes subtleFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.04;
    }
    90% {
        opacity: 0.04;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Subtle Grid Pattern */
.subtle-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 40s linear infinite;
    z-index: 0;
}

@keyframes gridDrift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 1s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== HERO CONTENT LAYOUT ===== */
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(0.5rem, 1.5vw, 1rem);
    align-items: stretch;
    min-height: 45vh;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

.hero-content-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: clamp(8px, 1.4vw, 11px);
    padding: clamp(0.525rem, 1.4vw, 0.875rem) clamp(0.525rem, 1.05vw, 0.7rem);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 21px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    height: 100%;
}

/* Hero Form Styles */
.hero-form-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 100%);
    border-radius: clamp(11px, 1.75vw, 14px);
    padding: clamp(0.7rem, 1.4vw, 1.05rem);
    box-shadow: 
        0 14px 28px rgba(1, 4, 45, 0.12),
        0 6px 11px rgba(1, 4, 45, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    width: 100%;
    max-width: 100%;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--secondary-color), 
        var(--accent-color), 
        var(--accent-color-2));
    border-radius: 24px 24px 0 0;
}

.hero-form-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(251, 62, 135, 0.03) 0%, 
        rgba(246, 164, 47, 0.03) 100%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: clamp(0.875rem, 2.1vw, 1.4rem);
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: clamp(1.4rem, 3.5vw, 1.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(0.525rem, 1.4vw, 0.7rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-header p {
    color: #64748b;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    font-weight: 500;
    max-width: clamp(280px, 80%, 320px);
    margin: 0 auto;
}

.hero-contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.hero-contact-form .form-group {
    margin-bottom: clamp(0.525rem, 1.75vw, 0.7rem);
    position: relative;
    z-index: 1;
}

.hero-contact-form .form-group label {
    display: block;
    margin-bottom: clamp(0.35rem, 1.05vw, 0.525rem);
    font-weight: 600;
    color: #374151;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    letter-spacing: 0.025em;
}

.hero-contact-form .form-group input,
.hero-contact-form .form-group textarea {
    width: 100%;
    padding: clamp(0.6125rem, 1.75vw, 0.7rem);
    border: 2px solid #e5e7eb;
    border-radius: clamp(8px, 1.4vw, 10px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1f2937;
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-contact-form .form-group input:focus,
.hero-contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 
        0 0 0 4px rgba(251, 62, 135, 0.1),
        0 6px 16px rgba(251, 62, 135, 0.15);
    transform: translateY(-2px);
}

.hero-contact-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.hero-submit-button {
    width: 100%;
    padding: clamp(0.7rem, 2.1vw, 0.875rem);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e91e63 100%);
    color: var(--white);
    border: none;
    border-radius: clamp(8px, 1.4vw, 10px);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.35rem, 1.05vw, 0.525rem);
    box-shadow: 
        0 7px 21px rgba(251, 62, 135, 0.35),
        0 4px 11px rgba(251, 62, 135, 0.25);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
}

.hero-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-submit-button:hover::before {
    left: 100%;
}

.hero-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(251, 62, 135, 0.45),
        0 8px 20px rgba(251, 62, 135, 0.35);
    background: linear-gradient(135deg, #e91e63 0%, var(--secondary-color) 100%);
}

.hero-submit-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 25px rgba(251, 62, 135, 0.35),
        0 4px 12px rgba(251, 62, 135, 0.25);
}

.form-footer {
    text-align: center;
    margin-top: auto;
    padding-top: clamp(0.875rem, 2.1vw, 1.05rem);
    border-top: 1px solid #f1f5f9;
    position: relative;
    z-index: 1;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    color: #64748b;
    font-weight: 500;
    line-height: 1.5;
}

.security-note i {
    color: #10b981;
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: clamp(0.2625rem, 1.05vw, 0.35rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    margin-bottom: clamp(0.525rem, 1.4vw, 0.7rem);
    opacity: 0.95;
    max-width: clamp(500px, 80%, 600px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Enhanced Hero Offer Styles */
.hero-offer {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: clamp(0.525rem, 1.4vw, 0.875rem) clamp(0.525rem, 1.05vw, 0.7rem);
    margin: clamp(0.35rem, 1.05vw, 0.525rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    /* reserve space for the badge that sits in the top-right */
    padding-top: clamp(1.75rem, 4vw, 2.25rem);
}

.hero-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(246, 164, 47, 0.12) 0%, 
        rgba(249, 112, 92, 0.12) 50%, 
        rgba(251, 62, 135, 0.12) 100%);
    z-index: -1;
}

.hero-offer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

/* Enhanced Offer Badge */
.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.175rem, 0.7vw, 0.2625rem);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: clamp(0.2625rem, 1.05vw, 0.35rem) clamp(0.525rem, 1.4vw, 0.7rem);
    border-radius: clamp(8px, 1.4vw, 11px);
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
    margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Hero Badge - Positioned above price on right side */
.hero-badge {
    position: absolute;
    top: clamp(0.5rem, 2vw, 0.75rem);
    right: clamp(0.5rem, 2vw, 0.75rem);
    margin: 0;
    z-index: 3;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.offer-badge:hover::before {
    left: 100%;
}

.offer-badge i {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* Enhanced Price Display */
.offer-details {
    /* Create clear separation from the badge above */
    margin-top: clamp(0.75rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.525rem, 1.4vw, 0.7rem);
    margin-bottom: clamp(0.7rem, 1.4vw, 1rem);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1.6rem;
    font-weight: 500;
}

.offer-price {
    color: var(--accent-color);
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    line-height: 1;
}

.offer-price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
    border-radius: 3px;
    box-shadow: 0 6px 12px rgba(246, 164, 47, 0.5);
}

.savings {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(246, 164, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.savings::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.savings:hover::before {
    left: 100%;
}

.offer-title {
    color: var(--white);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    margin-top: clamp(0rem, 0vw, 0rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
    width: 100%;
    margin: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.value-prop {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12), 
        rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: clamp(0.525rem, 1.4vw, 0.7rem) clamp(0.525rem, 1.05vw, 0.7rem);
    text-align: center;
    color: var(--white);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(246, 164, 47, 0.15), 
        rgba(251, 62, 135, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.18), 
        rgba(255, 255, 255, 0.12));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.value-prop:hover::before {
    opacity: 1;
}

.value-prop i {
    color: var(--accent-color);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: clamp(0.35rem, 1.05vw, 0.525rem);
    display: block;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.value-prop span {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: clamp(0.7rem, 1.4vw, 1.05rem);
    margin-top: clamp(0.7rem, 1.75vw, 1.05rem);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: clamp(0.375rem, 1vw, 0.5rem);
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: clamp(0.375rem, 1.5vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    background: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 4, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 62, 135, 0.03) 0%, transparent 50%);
    padding: 5rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--light-bg) 49%, var(--white) 51%);
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(1, 4, 45, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
    background: rgba(246, 164, 47, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color-2);
    background: rgba(249, 112, 92, 0.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.1rem;
}

.service-card .learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-card .learn-more:hover {
    color: var(--accent-color-2);
    transform: translateX(5px);
}

.service-card .learn-more i {
    transition: transform 0.3s ease;
}

.service-card .learn-more:hover i {
    transform: translateX(3px);
}

/* About Section */
.about {
    background: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 4, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 62, 135, 0.03) 0%, transparent 50%);
    padding: 5rem 2rem;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--light-bg) 49%, var(--white) 51%);
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    transform: translate(10px, 10px);
    z-index: -1;
}

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

.about-image:hover .about-img {
    transform: scale(1.05);
}


.about-text {
    padding: 2rem;
    width: 100%;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-2));
    border-radius: 0 2px 2px 0;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 62, 135, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(251, 62, 135, 0.2);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(251, 62, 135, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(251, 62, 135, 0.4);
}

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

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Blog Section */
.blog {
    padding: 4rem 2rem;
    background: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 4, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 62, 135, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(251, 62, 135, 0.03) 0%, 
        rgba(246, 164, 47, 0.03) 100%);
    pointer-events: none;
}

.blog h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.blog h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.blog-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Blog Carousel */
.blog-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 4rem;
}

.blog-carousel {
    overflow: hidden;
    position: relative;
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.blog-carousel-track .blog-card {
    width: 350px;
    flex-shrink: 0;
    margin-right: 2rem;
    max-height: none !important;
}

.blog-carousel-track .blog-card:last-child {
    margin-right: 0;
}

/* Carousel-specific content styling */
.blog-carousel-track .blog-card {
    max-height: none !important;
    display: flex;
    flex-direction: column;
}

.blog-carousel-track .blog-card .blog-content {
    padding: 1.25rem !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-carousel-track .blog-card .blog-meta {
    margin-bottom: 0.75rem !important;
    font-size: 0.85rem !important;
    color: #374151 !important;
}

.blog-carousel-track .blog-card .blog-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    flex: none;
}

.blog-carousel-track .blog-card .blog-content p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
    flex: 1;
}

.blog-carousel-track .blog-card .blog-tags {
    margin-bottom: 1rem !important;
    gap: 0.4rem !important;
}

.blog-carousel-track .blog-card .tag {
    padding: 0.3rem 0.7rem !important;
    font-size: 0.75rem !important;
}

.blog-carousel-track .blog-card .read-more {
    font-size: 0.9rem !important;
    margin-top: auto !important;
    align-self: flex-start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.2rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(1, 4, 45, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    max-height: 400px !important;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 160px !important;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1rem !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem !important;
    font-size: 0.9rem !important;
}

.blog-category {
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #374151;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    font-weight: 700;
    flex: 1;
}

.blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    color: #666;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    font-size: 0.95rem !important;
    flex: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.tag {
    background: rgba(251, 62, 135, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Testimonials Section */
.testimonials {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: linear-gradient(135deg, 
        rgba(1, 4, 45, 0.95) 0%, 
        rgba(251, 62, 135, 0.85) 50%, 
        rgba(246, 164, 47, 0.75) 100%);
    background-image: 
        linear-gradient(135deg, 
            rgba(1, 4, 45, 0.95) 0%, 
            rgba(251, 62, 135, 0.85) 50%, 
            rgba(246, 164, 47, 0.75) 100%),
        url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(246, 164, 47, 0.15) 0%, 
        rgba(1, 4, 45, 0.85) 100%);
    z-index: 1;
}

.testimonials > * {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    justify-content: center;
}



.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

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

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.business-type {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.result-item i {
    font-size: 1.1rem;
    color: var(--accent-color);
}



.cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}



/* Contact Section */
.contact {
    background: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 4, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 62, 135, 0.03) 0%, transparent 50%);
    padding: 5rem 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--light-bg) 49%, var(--white) 51%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 3px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(1, 4, 45, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(246, 164, 47, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 1rem 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--white) 49%, var(--primary-color) 51%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
    width: 180px;
    margin: 2rem 0 1rem 0;
    display: block;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 253, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 1200px;
        gap: 2.5rem;
    }
    
    nav {
        max-width: 1200px;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 75vh;
        padding: 1.5rem 0;
    }

    .hero-content {
        max-width: 1000px;
        gap: 1.5rem;
        padding: 0 1.5rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 500px;
    }
    
    .hero-content-card {
        padding: 1.4rem 1.05rem;
    }

    .hero-offer {
        padding: 1.4rem 1.05rem;
        margin: 1.05rem 0;
    }

      .offer-badge {
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 1.25rem;
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  }

    .price-comparison {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .original-price {
        font-size: 1.3rem;
    }

    .offer-price {
        font-size: 2.8rem;
    }

    .offer-title {
        font-size: 1.5rem;
        margin-top: 0.75rem;
    }

    .value-props {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .value-prop {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .value-prop i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .trust-indicators {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .trust-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-form-container {
        padding: 1.4rem 1.05rem;
        max-width: 400px;
    }

    .form-header {
        margin-bottom: 1.05rem;
    }

    .form-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .form-header p {
        font-size: 0.9rem;
        max-width: 280px;
    }

    .hero-contact-form .form-group {
        margin-bottom: 0.875rem;
    }

    .hero-contact-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }

    .hero-contact-form .form-group input,
    .hero-contact-form .form-group textarea {
        padding: 0.6125rem;
        font-size: 0.9rem;
    }

    .hero-contact-form .form-group textarea {
        min-height: 80px;
    }

    .hero-submit-button {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .form-footer {
        margin-top: 0.875rem;
        padding-top: 0.7rem;
    }

    .security-note {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: var(--shadow-md);
    }

    .nav-links a {
        margin: 0.5rem 0;
        color: var(--white);
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero Section Mobile Styles */
    .hero {
        min-height: auto;
        padding: 4rem 1rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        min-height: auto;
    }

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

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-content-card {
        padding: 1.225rem 0.875rem;
        border-radius: 14px;
    }

    .hero-offer {
        padding: 1.225rem 0.875rem;
        margin: 0.875rem 0;
    }

    .offer-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .price-comparison {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .original-price {
        font-size: 1.1rem;
    }

    .offer-price {
        font-size: 2.2rem;
    }

    .offer-title {
        font-size: 1.3rem;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1.25rem 0;
    }

    .value-prop {
        padding: 1.25rem 1rem;
        font-size: 0.85rem;
    }

    .value-prop i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .trust-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-form-container {
        padding: 1.05rem 0.875rem;
        max-width: 100%;
        border-radius: 11px;
    }

    .form-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.525rem;
    }

    .form-header p {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .hero-contact-form .form-group {
        margin-bottom: 0.7rem;
    }

    .hero-contact-form .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .hero-contact-form .form-group input,
    .hero-contact-form .form-group textarea {
        padding: 0.6125rem;
        font-size: 0.9rem;
    }

    .hero-submit-button {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .form-footer {
        margin-top: 0.7rem;
        padding-top: 0.7rem;
    }

    .security-note {
        font-size: 0.75rem;
    }

    /* Mobile adjustments for animated elements */
    .floating-element {
        font-size: 1.4rem;
        opacity: 0.08;
    }
    
    .geometric-shape {
        opacity: 0.04;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        height: 25px;
    }
    
    .connection-line {
        opacity: 0.02;
    }
    
    .subtle-grid {
        background-size: 60px 60px;
        animation-duration: 60s;
    }

      .contact-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .blog-carousel-container {
    padding: 0 2rem;
  }

  .blog-carousel-track .blog-card {
    min-width: 300px;
    max-height: none !important;
  }
  
  .blog-carousel-track .blog-card .blog-content {
    padding: 1rem !important;
  }
  
  .blog-carousel-track .blog-card .blog-content h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .blog-carousel-track .blog-card .blog-content p {
    font-size: 0.85rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .blog-carousel-track .blog-card .read-more {
    font-size: 0.85rem !important;
    margin-top: 0.5rem !important;
  }
  
  /* Blog page card improvements for mobile */
  .blog-post-card .post-content {
    padding: 1.25rem !important;
  }
  
  .blog-post-card .post-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .blog-post-card .post-content p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .blog-post-card .read-more {
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
  }
  
  /* Ensure date and read time are visible on mobile */
  .post-date,
  .post-read-time {
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
  }
  
  /* Blog grid responsive improvements */
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  /* Additional mobile improvements */
  .blog-post-card .post-image {
    height: 160px;
  }
  
  .blog-post-card .post-content {
    padding: 1.25rem !important;
  }
  
  .blog-post-card .post-meta {
    margin-bottom: 0.75rem !important;
  }
  
  .blog-post-card .post-tags {
    margin-bottom: 1rem !important;
  }

  .testimonials-grid {
    gap: 2rem;
    padding: 0 2rem;
  }
}

@media (max-width: 1024px) {
  .testimonials-grid {
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.85rem;
  }

  .testimonials-cta {
    margin: 2rem 2rem 0;
    padding: 2rem;
  }

  
}

@media (max-width: 768px) {
    .about-image {
        height: 300px;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }





    .logo {
        height: 50px;
    }
    
    .logo-img {
        height: 100%;
    }
    
    .footer-logo {
        height: 50px;
        width: 150px;
        margin: 1.5rem 0 1rem 0;
    }

    .service-card {
        min-height: 350px;
        padding: 2.5rem 2rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        padding: 1.2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .about-content, .contact-container {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform-origin: 0%;
    transform: scaleX(0);
    z-index: 1001;
    transition: transform 0.1s ease;
}

/* Pricing Section */
.pricing {
    padding: 8rem 1rem;
    background: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(1, 4, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 62, 135, 0.03) 0%, transparent 50%);
    position: relative;
    margin-top: -2rem;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, 
        rgba(1, 4, 45, 0.1) 0%, 
        rgba(1, 4, 45, 0.05) 30%, 
        transparent 100%);
    z-index: 1;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: var(--primary-color);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    opacity: 0.8;
}

.pricing-category {
    margin-bottom: 6rem;
}

.pricing-category h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.pricing-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 3px;
}

.category-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.delivery-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(246, 164, 47, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.delivery-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.delivery-info strong {
    color: var(--primary-color);
}

.view-all-plans {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.view-all-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.view-all-button:hover {
    background: var(--gradient-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all-plans p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1rem;
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(1, 4, 45, 0.08);
    border: 1px solid rgba(1, 4, 45, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(1, 4, 45, 0.15);
    border-color: rgba(251, 62, 135, 0.2);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(246, 164, 47, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, rgba(246, 164, 47, 0.02) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 50px rgba(246, 164, 47, 0.3);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price .period {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.plan-description {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.plan-features {
    flex: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.plan-features i {
    color: var(--accent-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.note {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(1, 4, 45, 0.1);
}

.plan-cta {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    background: var(--gradient-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Plan-specific colors */
.pricing-card.starter {
    border-top: 4px solid var(--accent-color);
}

.pricing-card.basic {
    border-top: 4px solid var(--secondary-color);
}

.pricing-card.standard {
    border-top: 4px solid var(--accent-color-2);
}

.pricing-card.premium {
    border-top: 4px solid var(--primary-color);
}

.pricing-card.web-lite {
    border-top: 4px solid #28a745;
}

.pricing-card.web-pro {
    border-top: 4px solid #17a2b8;
}

.pricing-card.web-elite {
    border-top: 4px solid #6f42c1;
}

.pricing-card.review-standard {
    border-top: 4px solid #fd7e14;
}

.pricing-card.review-premium {
    border-top: 4px solid #e83e8c;
}

.pricing-card.website-starter {
    border-top: 4px solid #20c997;
}

.pricing-card.website-business {
    border-top: 4px solid #007bff;
}

.pricing-card.website-pro {
    border-top: 4px solid #6f42c1;
}

.pricing-card.app-mobile {
    border-top: 4px solid #10b981;
}

.pricing-card.app-web {
    border-top: 4px solid #3b82f6;
}

/* Pricing Page Hero */
.pricing-hero {
    background: linear-gradient(135deg, 
        rgba(1, 4, 45, 0.95) 0%, 
        rgba(251, 62, 135, 0.85) 50%, 
        rgba(246, 164, 47, 0.75) 100%);
    background-image: 
        linear-gradient(135deg, 
            rgba(1, 4, 45, 0.95) 0%, 
            rgba(251, 62, 135, 0.85) 50%, 
            rgba(246, 164, 47, 0.75) 100%),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1rem 6rem 1rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(246, 164, 47, 0.1) 0%, 
        rgba(1, 4, 45, 0.95) 100%);
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 6rem 1rem 4rem 1rem;
        margin-top: 60px;
    }

    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .pricing-hero p {
        font-size: 1.1rem;
    }

    .pricing {
        padding: 4rem 1rem;
    }

    .pricing h2 {
        font-size: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-offer {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .offer-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }

    .offer-price {
        font-size: 2.5rem;
    }

    .offer-title {
        font-size: 1.1rem;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-prop {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

        /* Mobile adjustments for animated elements */
    .floating-element {
        font-size: 1.4rem;
        opacity: 0.12;
    }
    
    .connection-line {
        opacity: 0.03;
    }
    
    .subtle-grid {
        background-size: 60px 60px;
        animation-duration: 60s;
    }
} 
/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1400px and below) */
@media (max-width: 1400px) {
  .hero-content {
    max-width: 1200px;
    gap: clamp(2rem, 3vw, 3rem);
  }
}

/* Medium Desktop/Laptop (1024px and below) */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: auto;
  }

  .hero-content-card,
  .hero-form-container {
    width: 100%;
    max-width: 100%;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    height: auto;
    min-height: fit-content;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    max-width: clamp(500px, 80%, 600px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-offer {
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
  }

  .value-props {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
    margin: clamp(1rem, 2.5vw, 1.5rem) 0;
  }

  .trust-indicators {
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Small Laptop/Tablet (768px and below) */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem);
  }

  .hero-content {
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    min-height: auto;
    align-items: stretch;
  }

  .hero-content-card,
  .hero-form-container {
    padding: clamp(1.05rem, 2.8vw, 1.4rem) clamp(0.7rem, 2.1vw, 1.05rem);
    border-radius: clamp(11px, 2.1vw, 17px);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }

  .hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }

  .hero-offer {
    padding: clamp(1.05rem, 2.8vw, 1.4rem) clamp(0.7rem, 2.1vw, 1.05rem);
    margin: clamp(0.7rem, 2.1vw, 1.05rem) 0;
  }

  .offer-badge {
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .price-comparison {
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }

  .original-price {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }

  .offer-price {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .offer-title {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
    margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
  }

  .value-props {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin: clamp(1rem, 2.5vw, 1.5rem) 0;
  }

  .value-prop {
    padding: clamp(0.7rem, 2.1vw, 1.05rem) clamp(0.525rem, 1.4vw, 0.7rem);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }

  .value-prop i {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
  }

  .trust-indicators {
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }

  .trust-item {
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }

  .form-header h3 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
  }

  .form-header p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    max-width: 100%;
  }

  .hero-contact-form .form-group {
    margin-bottom: clamp(0.525rem, 1.4vw, 0.7rem);
  }

  .hero-contact-form .form-group label {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    margin-bottom: clamp(0.2625rem, 0.7vw, 0.35rem);
  }

  .hero-contact-form .form-group input,
  .hero-contact-form .form-group textarea {
    padding: clamp(0.525rem, 1.4vw, 0.6125rem);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }

  .hero-contact-form .form-group textarea {
    min-height: clamp(80px, 15vw, 100px);
  }

  .hero-submit-button {
    padding: clamp(0.6125rem, 2.1vw, 0.7rem);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .form-footer {
    margin-top: clamp(0.7rem, 2.1vw, 0.875rem);
    padding-top: clamp(0.525rem, 1.4vw, 0.7rem);
  }

  .security-note {
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  }
  
  .floating-element {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    opacity: 0.06;
  }
  
  .geometric-shape {
    opacity: 0.03;
  }
  
  .scroll-indicator {
    bottom: clamp(1rem, 3vw, 1.5rem);
  }
  
  .scroll-text {
    font-size: clamp(0.6rem, 2.5vw, 0.7rem);
  }
  
  .scroll-arrow {
    height: clamp(20px, 5vw, 25px);
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .hero {
    padding: clamp(2rem, 6vw, 3rem) clamp(0.5rem, 2vw, 1rem);
  }

  .hero-content {
    gap: clamp(1rem, 3vw, 1.5rem);
    padding: 0 clamp(0.25rem, 1.5vw, 0.5rem);
  }

  .hero-content-card,
  .hero-form-container {
    padding: clamp(1.25rem, 3vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 1.8rem);
  }

  .hero-description {
    font-size: clamp(0.85rem, 3.5vw, 0.9rem);
  }

  .value-props {
    gap: clamp(0.5rem, 2vw, 0.75rem);
  }

  .value-prop {
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(0.5rem, 1.5vw, 0.75rem);
  }
}

/* Optional: Adjust overall vertical spacing */
.hero {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-content {
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Ensure content cards stretch to same height on larger screens */
.hero-left,
.hero-right {
  align-self: stretch;
}

.hero-content-card,
.hero-form-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .hero-content {
    gap: 2rem;
    padding: 2rem 1.5rem;
    align-items: start;
    justify-items: center;
  }
  
  .hero-content-card,
  .hero-form-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Blog Page Styles - Specific to blog.html */
body.blog-page .blog-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

body.blog-page .blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.1) 0%, rgba(246, 164, 47, 0.1) 100%);
    pointer-events: none;
}

body.blog-page .blog-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    z-index: 2;
}

body.blog-page .blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

body.blog-page .blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

body.blog-page .blog-search-filter {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

body.blog-page .search-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

body.blog-page .blog-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-color);
}

body.blog-page .search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.1rem;
}

body.blog-page .filter-container {
    display: flex;
    gap: 1rem;
}

body.blog-page .category-filter,
body.blog-page .sort-filter {
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
}

body.blog-page .blog-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem clamp(2rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.featured-post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(1, 4, 45, 0.08);
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-post-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    align-items: center;
}

.featured-category {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-color);
}

.featured-post-content h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post-content h2 a:hover {
    color: var(--secondary-color);
}

.featured-post-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.featured-post-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.featured-post-tags .tag {
    background: rgba(251, 62, 135, 0.1);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-post-tags .tag:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.featured-read-more:hover {
    color: var(--accent-color-2);
    transform: translateX(5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.blog-post-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(1, 4, 45, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: none;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.post-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #374151;
    align-items: center;
}

.post-date,
.post-read-time {
    color: #374151;
    font-weight: 500;
    font-size: 0.85rem;
}

.popular-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-color);
    flex: none;
}

.post-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: var(--secondary-color);
}

.post-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
    font-size: 0.95rem;
    min-height: 0;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(1, 4, 45, 0.08);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem !important;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem !important;
    transition: all 0.3s ease;
    margin-top: auto !important;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--accent-color-2);
    transform: translateX(3px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0;
}

.post-author .author-avatar {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    object-fit: cover;
}

.post-author .author-name {
    font-size: 0.95rem !important;
    color: #666;
    font-weight: 500;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(2px);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.06);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(1, 4, 45, 0.08);
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.popular-post-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: var(--secondary-color);
}

.popular-post-date {
    font-size: 0.8rem;
    color: #666;
}

.popular-post-author {
    display: none !important;
}

.popular-post-author .author-avatar {
    display: none !important;
}

.popular-post-author .author-name {
    display: none !important;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    background: rgba(1, 4, 45, 0.02);
}

.category-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.category-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.post-count {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.7;
}

.newsletter-widget {
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.newsletter-widget h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-widget h3::after {
    background: var(--white);
}

.newsletter-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    background: rgba(1, 4, 45, 0.08);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud .tag:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Blog Post Page Styles */
.breadcrumb {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb ol {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #ccc;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-post {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem clamp(2rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.post-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.1) 0%, rgba(246, 164, 47, 0.1) 100%);
    pointer-events: none;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.post-category {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--white);
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.post-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

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

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 1.7rem !important;
    margin-bottom: 0.4rem;
}

.author-title {
    display: block;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.post-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-featured-image:hover .post-hero-image {
    transform: scale(1.02);
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.06);
    transition: all 0.3s ease;
}

.post-content:hover {
    box-shadow: var(--shadow-md);
}

.post-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
}

.post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.75rem;
    color: #555;
    line-height: 1.8;
}

.post-content ul {
    margin: 2rem 0;
    padding-left: 1.75rem;
}

.post-content li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.post-content .cta-section {
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.05) 0%, rgba(246, 164, 47, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    border: 1px solid rgba(251, 62, 135, 0.1);
}

.post-content .cta-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.post-content .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

.post-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.post-tags {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.post-tags .tag {
    background: rgba(1, 4, 45, 0.08);
    color: var(--text-color);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.social-share {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1, 4, 45, 0.08);
    margin: 3rem 0;
}

.social-share h3 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0077b5; }
.share-email { background: #666; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.author-bio {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1, 4, 45, 0.08);
    margin: 3rem 0;
}

.author-bio-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.author-bio-avatar {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(251, 62, 135, 0.15);
}

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

.author-bio-text h3 {
    margin-bottom: 1.25rem;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.author-bio-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(1, 4, 45, 0.08);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.author-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.related-posts {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1, 4, 45, 0.08);
    margin: 3rem 0;
}

.related-posts h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.06);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-post-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: var(--secondary-color);
}

.related-post-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-post-meta {
    font-size: 0.8rem;
    color: #888;
}

.post-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 3rem 0;
}

.newsletter-content h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.newsletter-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.post-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.post-newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-color);
}

.post-newsletter-form button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-newsletter-form button:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Sidebar Improvements - Reduced Visual Noise */
.post-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.06);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 600;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
}

.table-of-contents a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid transparent;
    position: relative;
}

.table-of-contents a:hover {
    background: rgba(1, 4, 45, 0.05);
    color: var(--secondary-color);
    transform: translateX(5px);
    border-color: rgba(1, 4, 45, 0.1);
}

.table-of-contents a.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.table-of-contents a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    border-radius: 0 2px 2px 0;
}

.toc-sub-item {
    padding-left: 1.5rem !important;
    font-size: 0.9rem !important;
    opacity: 0.8;
}

.toc-main a {
    font-weight: 600;
}

.toc-sub a {
    font-weight: 400;
}

/* Popular Posts Sidebar - Fixed to remove pink bars and improve layout */
.popular-posts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(1, 4, 45, 0.08);
    transition: all 0.3s ease;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.popular-post-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: var(--secondary-color);
}

.popular-post-date {
    font-size: 0.8rem;
    color: #666;
}

.category-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-list-sidebar .category-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: rgba(1, 4, 45, 0.03);
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.category-list-sidebar .category-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
    border-color: var(--secondary-color);
}

.category-list-sidebar .category-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.cta-widget {
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
}

.cta-widget h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.cta-widget h3::after {
    background: var(--white);
}

.cta-widget p {
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-widget .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

.cta-widget .cta-button:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Breadcrumb Improvements */
.breadcrumb {
    background: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1, 4, 45, 0.08);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #ccc;
    font-weight: bold;
}

.breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* Responsive Design Improvements */
@media (min-width: 1600px) {
    .blog-post {
        max-width: 1800px;
        grid-template-columns: 1fr 380px;
        gap: 4.5rem;
    }
}

@media (max-width: 1400px) and (min-width: 1025px) {
    .blog-post {
        max-width: 1400px;
        grid-template-columns: 1fr 340px;
        gap: 3.5rem;
    }
    
    .post-content {
        padding: 4rem;
    }
}

/* Tablet-specific optimizations (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-post {
        grid-template-columns: 1fr 280px;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
    }
    
    .post-sidebar {
        position: static;
        order: 2;
    }
    
    .post-container {
        order: 1;
    }
    
    .post-header {
        padding: 3rem 2rem;
    }
    
    .post-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .post-excerpt {
        font-size: 1.15rem;
    }
    
    .post-content {
        padding: 3rem 2rem;
        font-size: 1.05rem;
    }
    
    .post-content h2 {
        font-size: 2rem;
        margin: 3rem 0 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.6rem;
        margin: 2.5rem 0 1rem;
    }
    
    .post-content h4 {
        font-size: 1.3rem;
        margin: 2rem 0 0.75rem;
    }
    
    .post-content p {
        margin-bottom: 1.75rem;
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .author-bio-content {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
    
    .author-bio-avatar {
        width: 120px;
        height: 120px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-share,
    .author-bio,
    .related-posts {
        padding: 2.5rem 2rem;
    }
    
    .share-buttons {
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .post-newsletter {
        padding: 3rem 2rem;
    }
    
    .post-newsletter-form {
        flex-direction: row;
        gap: 1rem;
    }
    
    .post-newsletter-form input {
        flex: 1;
        min-width: 200px;
    }
    
    .sidebar-widget {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .sidebar-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .popular-post-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
    
    .popular-post-image {
        width: 70px;
        height: 70px;
    }
    
    .popular-post-content h4 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .breadcrumb {
        padding: 1.5rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Hide mobile popular posts on tablet */
    .mobile-popular-posts {
        display: none !important;
    }
    
    /* Show sidebar popular posts on tablet */
    .post-sidebar .sidebar-widget:has(.popular-posts-sidebar) {
        display: block !important;
    }
}

/* Mobile and smaller tablet optimizations */
@media (max-width: 768px) {
    .blog-post {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-sidebar {
        position: static;
        order: -1;
    }
    
    .post-header {
        padding: 3rem 1.5rem;
    }
    
    .post-content {
        padding: 2rem;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-post {
        padding: 1rem !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .post-header {
        padding: 2.5rem 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .post-meta {
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
        font-size: 0.9rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .post-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .post-excerpt {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .post-author {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        width: 80px !important;
        height: 80px !important;
    }
    
    .post-content {
        padding: 2rem 1.5rem !important;
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    .post-content h2 {
        font-size: 1.8rem !important;
        margin: 2.5rem 0 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .post-content h3 {
        font-size: 1.4rem !important;
        margin: 2rem 0 1rem !important;
        line-height: 1.4 !important;
    }
    
    .post-content h4 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .post-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .post-content ul,
    .post-content ol {
        margin: 2rem 0;
        padding-left: 1.5rem;
    }
    
    .post-content li {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .post-content .content-section,
    .post-content .cta-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .post-content .feature-list li {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .post-content .step-content {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .post-content .summary-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .post-content blockquote {
        padding: 1.5rem;
        margin: 2rem 0;
        font-size: 1.1rem;
    }
    
    .post-content pre {
        padding: 1rem;
        margin: 2rem 0;
        font-size: 0.85rem;
    }
    
    .post-content table {
        margin: 2rem 0;
    }
    
    .post-content th,
    .post-content td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-share,
    .author-bio,
    .related-posts {
        padding: 2rem 1.5rem;
    }
    
    .share-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .share-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .post-newsletter {
        padding: 2.5rem 1.5rem;
    }
    
    .post-newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-newsletter-form input {
        min-width: auto;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .post-newsletter-form button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .author-bio-avatar {
        width: 100px;
        height: 100px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Proper mobile layout order - ensure flex container */
    .blog-post {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .post-container {
        order: 1 !important;
        width: 100% !important;
    }
    
    .post-sidebar {
        order: 2 !important;
        width: 100% !important;
    }
    
    /* Hide popular posts in sidebar on mobile */
    .post-sidebar .sidebar-widget:has(.popular-posts-sidebar) {
        display: none !important;
    }
    
    /* Show mobile popular posts section */
    .mobile-popular-posts {
        display: block !important;
        margin-top: 2rem !important;
    }
    
    /* Hide table of contents on mobile to save space */
    .post-sidebar .toc-widget {
        display: none !important;
    }
    
    /* Add popular posts section below main content on mobile */
    .post-container::after {
        content: '';
        display: block;
        order: 3;
        margin-top: 3rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .popular-post-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .popular-post-image {
        width: 100%;
        height: 120px;
    }
    
    .breadcrumb {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .breadcrumb ol {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    /* Mobile Popular Posts Section */
.mobile-popular-posts {
    display: none; /* Hidden by default on desktop */
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.06);
}

/* Tablet optimizations for main blog page */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-container {
        padding: 2rem 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .featured-post-card {
        grid-column: 1 / -1;
    }
    
    .blog-post-card .post-content {
        padding: 1.5rem;
    }
    
    .blog-post-card .post-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .blog-post-card .post-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .blog-sidebar {
        margin-top: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .popular-post-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
    
    .popular-post-image {
        width: 70px;
        height: 70px;
    }
    
    .popular-post-content h4 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    /* Tablet navigation optimizations */
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* Tablet hero and general layout optimizations */
    .hero {
        padding: 3rem 2rem;
    }
    
    .hero-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Tablet pricing page optimizations */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .plan-features li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
}
    
    .mobile-popular-posts h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-color);
        text-align: center;
    }
    
    .mobile-popular-posts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mobile-popular-posts .popular-post-item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        background: var(--bg-color);
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
    }
    
    .mobile-popular-posts .popular-post-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    
    .mobile-popular-posts .popular-post-image {
        width: 80px;
        height: 80px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .mobile-popular-posts .popular-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .mobile-popular-posts .popular-post-item:hover .popular-post-image img {
        transform: scale(1.05);
    }
    
    .mobile-popular-posts .popular-post-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .mobile-popular-posts .popular-post-content h4 a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .mobile-popular-posts .popular-post-content h4 a:hover {
        color: var(--primary-color);
    }
    
    .mobile-popular-posts .popular-post-date {
        font-size: 0.8rem;
        color: #666;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .blog-post {
        padding: 0.5rem;
    }
    
    .post-header {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .post-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .post-excerpt {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .post-content {
        padding: 1.5rem 1rem;
        font-size: 0.95rem;
    }
    
    .post-content h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .post-content h4 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.5rem;
    }
    
    .post-content p {
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
    }
    
    .social-share,
    .author-bio,
    .related-posts {
        padding: 1.5rem 1rem;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .post-newsletter {
        padding: 2rem 1rem;
    }
    
    .post-newsletter-form input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .post-newsletter-form button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .author-bio-avatar {
        width: 80px;
        height: 80px;
    }
    
    .breadcrumb {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Mobile popular posts optimizations for very small screens */
    .mobile-popular-posts {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .mobile-popular-posts h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .mobile-popular-posts .popular-post-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .mobile-popular-posts .popular-post-image {
        width: 60px;
        height: 60px;
    }
    
    .mobile-popular-posts .popular-post-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .mobile-popular-posts .popular-post-date {
        font-size: 0.75rem;
    }
}

/* Enhanced Blog Post Content Layout */
.post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--white);
    padding: 4.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 4, 45, 0.06);
    transition: all 0.3s ease;
    max-width: 100%;
}

.post-content:hover {
    box-shadow: var(--shadow-md);
}

/* Enhanced Typography and Content Structure */
.post-content h2 {
    font-size: 2.2rem;
    margin: 3.5rem 0 2rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.post-content h2:first-child {
    margin-top: 0;
}

.post-content h3 {
    font-size: 1.6rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.post-content h4 {
    font-size: 1.3rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

/* Enhanced Lists */
.post-content ul,
.post-content ol {
    margin: 2.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
}

.post-content ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.post-content ol {
    counter-reset: list-counter;
}

.post-content ol li {
    counter-increment: list-counter;
    padding-left: 0.5rem;
}

.post-content ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: -2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Enhanced Content Sections */
.post-content .content-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.03) 0%, rgba(246, 164, 47, 0.03) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 62, 135, 0.08);
}

.post-content .content-section h3 {
    margin-top: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.post-content .content-section p {
    margin-bottom: 1.5rem;
}

/* Enhanced CTA Sections */
.post-content .cta-section {
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.08) 0%, rgba(246, 164, 47, 0.08) 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin: 4rem 0;
    border: 1px solid rgba(251, 62, 135, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.post-content .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.05) 0%, rgba(246, 164, 47, 0.05) 100%);
    pointer-events: none;
}

.post-content .cta-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
}

.post-content .cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.post-content .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.post-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Blockquotes */
.post-content blockquote {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(1, 4, 45, 0.03) 0%, rgba(1, 4, 45, 0.06) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-md);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    position: relative;
}

.post-content blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
}

.post-content blockquote p {
    margin: 0;
    padding-left: 2rem;
}

/* Enhanced Code Blocks */
.post-content pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2.5rem 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
}

.post-content code {
    background: rgba(1, 4, 45, 0.08);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Enhanced Tables */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.post-content th,
.post-content td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(1, 4, 45, 0.08);
}

.post-content th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.post-content tr:hover {
    background: rgba(1, 4, 45, 0.02);
}

/* Enhanced Images */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.post-content img:hover {
    transform: scale(1.02);
}

/* Enhanced Dividers */
.post-content hr {
    margin: 4rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
    border-radius: 1px;
}

/* Enhanced Lists with Icons */
.post-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.post-content .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(1, 4, 45, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(1, 4, 45, 0.06);
    transition: all 0.3s ease;
}

.post-content .feature-list li:hover {
    background: rgba(1, 4, 45, 0.04);
    transform: translateX(5px);
}

.post-content .feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Enhanced Step-by-Step Content */
.post-content .step-content {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 62, 135, 0.05) 0%, rgba(246, 164, 47, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 62, 135, 0.1);
}

.post-content .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Enhanced Summary Boxes */
.post-content .summary-box {
    background: linear-gradient(135deg, rgba(1, 4, 45, 0.05) 0%, rgba(1, 4, 45, 0.08) 100%);
    border: 1px solid rgba(1, 4, 45, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
}

.post-content .summary-box h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.post-content .summary-box ul {
    margin: 1.5rem 0 0;
    padding-left: 1.5rem;
}

.post-content .summary-box li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .post-content {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
    
    .post-content h4 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .post-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .post-content ul,
    .post-content ol {
        margin: 2rem 0;
        padding-left: 1.5rem;
    }
    
    .post-content li {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .post-content .content-section,
    .post-content .cta-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .post-content .feature-list li {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .post-content .step-content {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .post-content .summary-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .post-content blockquote {
        padding: 1.5rem;
        margin: 2rem 0;
        font-size: 1.1rem;
    }
    
    .post-content pre {
        padding: 1rem;
        margin: 2rem 0;
        font-size: 0.85rem;
    }
    
    .post-content table {
        margin: 2rem 0;
    }
    
    .post-content th,
    .post-content td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile Blog Post Layout - Clean & Consolidated */
@media (max-width: 768px) {
    .blog-post {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .post-header {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .post-meta {
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
        flex-direction: column;
        align-items: center;
    }
    
    .post-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .post-excerpt {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .post-author {
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
    }
    
    .post-content {
        padding: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .post-content h2 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.75rem;
        line-height: 1.3;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
        margin: 1.25rem 0 0.5rem;
        line-height: 1.4;
    }
    
    .post-content h4 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem;
    }
    
    .post-content p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .post-content ul,
    .post-content ol {
        margin: 1.25rem 0;
        padding-left: 1rem;
    }
    
    .post-content li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .post-content .content-section,
    .post-content .cta-section {
        padding: 1rem;
        margin: 1.25rem 0;
    }
    
    .post-content .feature-list li {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .post-content .step-content {
        padding: 1rem;
        margin: 1.25rem 0;
    }
    
    .post-content .summary-box {
        padding: 1rem;
        margin: 1.25rem 0;
    }
    
    .post-content blockquote {
        padding: 1rem;
        margin: 1.25rem 0;
        font-size: 0.9rem;
    }
    
    .post-content pre {
        padding: 0.75rem;
        margin: 1.25rem 0;
        font-size: 0.75rem;
    }
    
    .post-content table {
        margin: 1.25rem 0;
    }
    
    .post-content th,
    .post-content td {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .social-share,
    .author-bio,
    .related-posts {
        padding: 1.25rem;
    }
    
    .share-buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .post-newsletter {
        padding: 1.5rem;
    }
    
    .post-newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .post-newsletter-form input {
        min-width: auto;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .post-newsletter-form button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-bio-avatar {
        width: 80px;
        height: 80px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Move popular posts below main content on mobile */
    .post-sidebar {
        order: 2;
    }
    
    .post-container {
        order: 1;
    }
    
    /* Hide popular posts in sidebar on mobile */
    .post-sidebar .sidebar-widget:has(.popular-posts-sidebar) {
        display: none;
    }
    
    /* Show mobile popular posts section */
    .mobile-popular-posts {
        display: block;
    }
    
    .post-container::after {
        content: '';
        display: block;
        height: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .popular-post-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .popular-post-image {
        width: 100%;
        height: 80px;
    }
    
    .breadcrumb {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .breadcrumb ol {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ========================================
   MABS EXCLUSIVE PAGE STYLES
   ======================================== */

/* MABS Hero Section */
.mabs-exclusive-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 50%, var(--secondary-color) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

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

.mabs-exclusive-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mabs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mabs-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.mabs-exclusive-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mabs-subheadline {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.mabs-intro {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mabs-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Exclusive MABS Offers Section */
.mabs-exclusive-offers {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.mabs-exclusive-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(246,164,47,0.08), transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(0,184,148,0.06), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(99,102,241,0.04), transparent 40%);
    opacity: 0.8;
}


.offers-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.mabs-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mabs-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(1, 4, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.mabs-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.mabs-logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.mabs-logo:hover .mabs-logo-img {
    transform: scale(1.05);
}

.exclusive-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(246, 164, 47, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.exclusive-badge i {
    font-size: 1.2rem;
}

.offers-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mabs-subheadline {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--text-color);
}

.mabs-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mabs-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    color: var(--text-color);
}

.offers-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.offers-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.primary-offer {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(1, 4, 45, 0.2);
}

.primary-offer:hover {
    box-shadow: 0 25px 60px rgba(1, 4, 45, 0.3);
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(1, 4, 45, 0.3);
}

.offer-badge.free {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(246, 164, 47, 0.3);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e91e63 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(251, 62, 135, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
}

.offer-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e91e63 100%);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
}

.offer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    /* Reserve space so titles align across cards */
    min-height: 3.4rem;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    /* Keep equal vertical space so card price rows align */
    min-height: 3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.value {
    font-size: 2.5rem; /* match .price */
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.value-text {
    font-size: 1rem; /* match .period */
    color: var(--text-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.offer-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.5;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.offer-features li i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Offers Footer */
.offers-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.total-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(1, 4, 45, 0.3);
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.savings-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.total-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.your-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    opacity: 0.9;
}

.commitment-notice {
    margin-top: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.commitment-notice p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.commitment-notice i {
    color: var(--accent-color);
    font-size: 1rem;
}


.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.plan-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.benefit-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(1, 4, 45, 0.3);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.benefit-visual {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e91e63 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(251, 62, 135, 0.3);
    position: relative;
}

.benefit-visual::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e91e63 100%);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
}

.benefit-text h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: left;
}

.benefit-features li i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Final CTA */
.mabs-final-cta {
    padding: 6rem 0;
    background: var(--light-bg);
    text-align: center;
}

.mabs-final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e91e63 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 62, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-link:hover::before {
    left: 100%;
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 62, 135, 0.4);
    background: linear-gradient(135deg, #e91e63 0%, var(--secondary-color) 100%);
}

.cta-link i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mabs-exclusive-hero {
        padding: 6rem 0 4rem;
    }
    
    .mabs-exclusive-content {
        padding: 0 1rem;
    }
    
    .mabs-intro {
        padding: 1.5rem;
    }
    
    .mabs-logo-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mabs-logo-img {
        height: 60px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .offer-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .offer-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1.5rem;
    }
    
    .total-value {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 2rem;
    }
    
    .cta-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .offer-card {
        padding: 1.5rem;
    }
    
    .mabs-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .mabs-logo-img {
        height: 50px;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-link {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .total-value {
        padding: 1rem 1.5rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
}