/* =================================================================
   Atlanta Bin Busters - Main Stylesheet
   Matching Reference Design Images
   ================================================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap');

/* =================================================================
   CSS VARIABLES - COLOR PALETTE
   ================================================================= */
:root {
    /* Beige/Parchment - Refined for warmth */
    --beige-light: #fdfbf7;
    --beige-dark: #e6dec8;
    --parchment: #f4ece2;

    /* Earthy Tones - Richer & Deeper */
    --brown-dark: #5a3a1e;
    /* Deep Leather Brown */
    --brown-light: #8b6f47;
    --gold: #dcb368;
    /* More metallic gold */
    --gold-dark: #b88a4d;
    --gold-light: #f4dca8;

    /* Accent Colors - More vibrant */
    --green: #3d8c55;
    --green-dark: #2a5f3a;
    --green-light: #6eb784;
    --orange: #e07a3e;
    /* Burnt Orange */
    --orange-dark: #b85524;
    --orange-light: #ffaa75;

    /* Purple Footer - Deep Royal */
    --purple-dark: #241a4a;
    --purple-medium: #423275;
    --purple-light: #6454a3;

    /* Plan Colors */
    --plan-green: #4caf50;
    --plan-red: #e53935;
    --plan-gold: #d4af37;
    --plan-black: #212121;
    --plan-blue: #039be5;

    /* Neutral */
    --white: #ffffff;
    --text-dark: #2c241b;
    /* Softer than pure black */
    --text-medium: #5a524b;
    --text-light: #8c857f;

    /* Modern Shadows - Multi-layered for depth */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(90, 58, 30, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.03), 0 3px 6px rgba(90, 58, 30, 0.06);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.04), 0 10px 15px rgba(90, 58, 30, 0.08);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 10px 25px rgba(220, 179, 104, 0.3);
}

/* =================================================================
   RESET & BASE STYLES
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--beige-light);
    /* Parchment texture effect */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* =================================================================
   TYPOGRAPHY
   ================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    /* Tighter tracking for display fonts */
}

h1 {
    font-size: 56px;
    /* Larger impact */
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange-dark);
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-medium);
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */
header {
    background: rgba(244, 236, 226, 0.95);
    /* Semi-transparent parchment */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    font-size: 16px;
}

nav a:hover {
    color: var(--orange);
}

.header-phone {
    color: var(--orange);
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--brown-dark);
    cursor: pointer;
}

/* =================================================================
   BUTTONS
   ================================================================= */
/* =================================================================
   BUTTONS - Modern & Premium
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    /* Pill shape for modern look */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button Shine Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224, 122, 62, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(224, 122, 62, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(61, 140, 85, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(61, 140, 85, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--brown-dark);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--brown-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 58, 30, 0.2);
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero {
    background: radial-gradient(circle at center, var(--white) 0%, var(--parchment) 100%);
    padding: 100px 0;
    /* More breathing room */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235a3a1e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.hero-text .tagline {
    font-size: 28px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-badge {
    max-width: 400px;
    margin: 0 auto 20px;
}

.hero-badge img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Hero Visual - Combined badge and worker */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-worker {
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-worker img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 3px solid var(--brown-dark);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.promo-banner h3 {
    color: var(--brown-dark);
    font-size: 32px;
    margin-bottom: 0.5rem;
}

.promo-banner p {
    color: var(--brown-dark);
    font-size: 16px;
    margin-bottom: 0;
}

/* =================================================================
   FEATURE BADGES
   ================================================================= */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.badge-item .icon {
    font-size: 28px;
}

.badge-item .text {
    font-weight: 600;
    color: var(--text-dark);
}

/* =================================================================
   SERVICES GRID
   ================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    /* Softer, more modern corners */
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 122, 62, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1.15) rotate(5deg) translateY(0);
    }

    50% {
        transform: scale(1.15) rotate(5deg) translateY(-10px);
    }
}

.service-card h3 {
    color: var(--brown-dark);
    font-size: 24px;
    margin: 0;
}

.service-card h4 {
    color: var(--text-medium);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
}

.service-features li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 18px;
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.how-it-works {
    background: var(--parchment);
    padding: 60px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

/* Step Icon Illustrations */
.step-icon {
    max-width: 180px;
    margin: 0 auto 20px;
}

.step-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
    background: white;
    padding: 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-medium);
    font-size: 15px;
}

/* Arrow between steps */
.step-item:not(:last-child):after {
    content: "â†’";
    position: absolute;
    right: -30px;
    top: 100px;
    font-size: 32px;
    color: var(--orange);
}

/* =================================================================
   PRICING PLANS
   ================================================================= */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    /* Allow content to pop out if needed */
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
    z-index: 2;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf2 100%);
    box-shadow: var(--shadow-gold), var(--shadow-md);
    transform: scale(1.05);
    /* Permanently larger to highlight */
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 179, 104, 0.4);
}

.pricing-card.featured:before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: auto;
    white-space: nowrap;
    letter-spacing: 1px;
}

.bin-illustration {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.pricing-card:hover .bin-illustration {
    transform: scale(1.1) rotate(5deg);
}

.bin-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.25rem;
}

.plan-price sup {
    font-size: 24px;
}

.plan-period {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
}

.plan-cta {
    margin-top: 20px;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */
.faq-section {
    background: var(--parchment);
    padding: 60px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-column {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    /* Ornate gold frame effect */
    border: 8px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
    padding-bottom: 10px;
}

.faq-number {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--brown-dark);
    margin: 0;
    flex: 1;
}

.faq-answer {
    padding-left: 47px;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.faq-answer li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
    background: linear-gradient(135deg, #1a1236 0%, #2d2058 100%);
    /* Deeper, richer purple */
    color: var(--white);
    position: relative;
    padding: 60px 0 30px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
    font-size: 18px;
    color: var(--gold);
}

.footer-badges {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-badges h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.footer-badges p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* =================================================================
   FORMS
   ================================================================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--beige-dark);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text .tagline {
        font-size: 22px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-item:after {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--parchment);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .plan-price {
        font-size: 40px;
    }

    .service-card {
        padding: 20px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .faq-column {
        padding: 25px 20px;
    }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}
/* =================================================================
   BEFORE / AFTER SECTION
   ================================================================= */
.before-after-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: url('../images/parchment-bg.jpg') center/cover no-repeat;
    /* Fallback if image missing */
    background-color: var(--beige-light);
    border-radius: 20px;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.before-after-text {
    flex: 1;
    padding-right: 20px;
}

.before-after-text h2 {
    font-size: 42px;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.before-after-text h2::after {
    content: '—';
    margin-left: 15px;
    font-weight: 300;
}

.before-after-visual {
    flex: 1.2;
    position: relative;
    border-radius: 30px 100px 30px 100px; /* Asymmetric Organic Shape */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(90, 58, 30, 0.15);
    border: 4px solid var(--gold-light);
}

.before-after-visual img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02); /* Slight zoom for better fit */
}

/* Badges for Before/After */
.comparison-badge {
    position: absolute;
    bottom: 25px;
    padding: 8px 30px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-shadow: 0 2px 2px rgba(0,0,0,0.3);
    z-index: 10;
}

.badge-before {
    left: 15%;
    background: linear-gradient(to bottom, #a33333, #7a1f1f);
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-after {
    right: 15%;
    background: linear-gradient(to bottom, #8b5a2b, #5e3b1f);
    border: 1px solid rgba(255,255,255,0.3);
}

.comparison-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--gold-light) 0%, rgba(220,179,104,0) 70%);
    z-index: 5;
    pointer-events: none;
}

.visual-separator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255,255,255,0.6);
    z-index: 4;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Checkmark list overrides for this section */
.ba-features {
    list-style: none;
    padding: 0;
}

.ba-features li {
    font-size: 20px;
    color: var(--text-medium); /* Darker brown/black */
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

.ba-features li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--green-dark); /* Dark green like reference */
    font-weight: 900;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 900px) {
    .before-after-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .before-after-text {
        padding-right: 0;
    }
    
    .ba-features li {
        text-align: left;
        display: inline-block;
        width: 100%;
        max-width: 400px;
    }
}

/* =================================================================
   NEW PRICING CARDS REDESIGN
   ================================================================= */
.pricing-grid {
    display: flex; /* Changed from grid to flex for better 5-column handling */
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Tighter gap */
    margin-top: 60px;
    align-items: flex-end; /* Align bottom of cards */
}

.pricing-card {
    /* Resetting previous base styles */
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 220px; /* Force narrow column for 5 items */
    position: relative;
    /* Shield shape container */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 20;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

/* Mascot Illustration Positioning */
.bin-illustration {
    width: 140px; /* Slightly larger */
    height: 140px;
    margin: 0 auto -40px; /* Negative margin to overlap ribbon */
    position: relative;
    z-index: 5; /* Above ribbon */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Ribbon Header */
.plan-ribbon {
    position: relative;
    height: 50px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 20px); /* Hang over the edges */
    left: -10px;
    z-index: 4;
}

/* Ribbon SVGs or Triangles for ends could be added here, 
   using simplified CSS borders for now */
.plan-ribbon::before, .plan-ribbon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    border-style: solid;
    z-index: -1;
}

.plan-ribbon::before {
    left: 0;
    border-width: 0 10px 10px 0;
    border-color: transparent rgba(0,0,0,0.5) transparent transparent;
}

.plan-ribbon::after {
    right: 0;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent transparent rgba(0,0,0,0.5);
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px; /* Smaller to fit single line if possible */
    font-weight: 700;
    color: #fff4d0; /* Creamy gold text */
    margin: 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
    padding: 0 5px;
    white-space: nowrap;
}

/* Main Card Body (The Shield Panel) */
.card-body {
    position: relative;
    padding: 50px 10px 20px; /* Top padding clears the ribbon overlap */
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        50% 100%, 
        0% 85%
    ); /* Shield Shape */
    color: white;
    text-align: center;
    min-height: 480px; /* Ensure uniform height */
    display: flex;
    flex-direction: column;
    /* Inner Border Effect Wrapper would be ideal, but using box-shadow inset */
}

/* Inner Gold Border Replica using outline offset or pseudo element */
.card-body::after {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        50% 100%, 
        0% 85%
    );
    border: 2px solid var(--gold);
    pointer-events: none;
    z-index: 1;
}

/* Price Styles */
.plan-price {
    font-size: 42px;
    color: var(--gold-light); /* Yellow gold for price */
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    margin-bottom: 0;
    line-height: 1;
}

.plan-price sup {
    font-size: 20px;
    color: var(--gold-light);
}

.plan-period {
    color: #ffd700; /* Brighter gold */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Features List */
.plan-features {
    text-align: left;
    margin-bottom: auto; /* Push content up */
    padding: 0 10px;
    font-size: 11px;
}

.plan-features li {
    color: white;
    padding: 6px 0 6px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    line-height: 1.3;
}

.plan-features li::before {
    content: '?';
    color: #4caf50; /* Bright green check */
    font-size: 14px;
    left: 0;
}

/* Select Plan Button acting as part of the card background/footer */
.plan-cta {
    margin-top: 15px;
    margin-bottom: 25px; /* Give room for shield bottom */
    width: 100%;
}

.select-plan-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    padding: 8px 0;
    width: 90%;
    font-size: 12px;
    font-family: 'Playfair Display', serif;
    text-transform: capitalize;
}

.select-plan-btn:hover {
    background: var(--gold);
    color: #3e2723;
}

/* =================================================================
   COLOR THEMES (Ribbons & Backgrounds)
   ================================================================= */
/* Common Gradients */
.pricing-card.card-green .plan-ribbon { background: linear-gradient(to right, #1b5e20, #4caf50, #1b5e20); border: 1px solid #ffd700; }
.pricing-card.card-green .card-body  { background: linear-gradient(to bottom, #1b5e20 0%, #0d3312 100%); border-top: 5px solid #1b5e20; }

.pricing-card.card-red .plan-ribbon { background: linear-gradient(to right, #b71c1c, #f44336, #b71c1c); border: 1px solid #ffd700; }
.pricing-card.card-red .card-body  { background: linear-gradient(to bottom, #8b0000 0%, #4a0000 100%); border-top: 5px solid #b71c1c; }

.pricing-card.card-gold .plan-ribbon { background: linear-gradient(to right, #f57f17, #fbc02d, #f57f17); border: 1px solid #fff; }
.pricing-card.card-gold .card-body  { background: linear-gradient(to bottom, #bcaaa4 0%, #6d4c41 100%); /* Bronze/Brown base for gold theme? match reference which looks brownish/gold */
                                      background: linear-gradient(to bottom, #996300 0%, #523500 100%);
                                      border-top: 5px solid #ffb300; }

.pricing-card.card-black .plan-ribbon { background: linear-gradient(to right, #212121, #616161, #212121); border: 1px solid #ffd700; }
.pricing-card.card-black .card-body  { background: linear-gradient(to bottom, #212121 0%, #000000 100%); border-top: 5px solid #424242; }

.pricing-card.card-blue .plan-ribbon { background: linear-gradient(to right, #0d47a1, #2196f3, #0d47a1); border: 1px solid #ffd700; }
.pricing-card.card-blue .card-body  { background: linear-gradient(to bottom, #0d47a1 0%, #002171 100%); border-top: 5px solid #1565c0; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-grid {
        justify-content: center;
        gap: 40px;
    }
    .pricing-card {
        max-width: 280px;
        flex: 1 1 280px;
    }
}

/* =================================================================
   PRICING FIXES (Hotfix)
   ================================================================= */

/* 1. Fix Checkmarks Encoding */
.plan-features li::before {
    content: '\2714' !important; /* Unicode Checkmark */
}

/* 2. Fix Mascot White Backgrounds */
/* Using blend mode to make white transparent - best effort without new assets */
.bin-illustration img {
    mix-blend-mode: multiply;
    display: block;
}

/* 3. Fix Featured Card White Box */
.pricing-card.featured {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 4. Fix Ribbon Alignment & Text */
.plan-ribbon {
    width: 100%; /* Fit to card width */
    left: 0;
    margin: 0;
    justify-content: center;
    background-size: cover;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.plan-ribbon::before, .plan-ribbon::after {
    /* Adjust ribbon ends to be more subtle or removed if causing overflow */
    display: none; 
}

/* Refine Card Body Spacing */
.card-body {
    padding-top: 20px; /* Less padding since ribbon is flush */
    margin-top: -10px; /* Tuck under ribbon */
    z-index: 3;
}

/* Fix Illustration Z-Index to remain on top */
.bin-illustration {
    z-index: 10;
    margin-bottom: -20px; /* Adjust overlap */
}


/* =================================================================
   PRICING FIXES ROUND 2 (Circular Frames & Typography)
   ================================================================= */

/* 1. Reset Mix Blend Mode (It ruins the eyes) */
.bin-illustration img {
    mix-blend-mode: normal !important;
    border-radius: 50%; /* Circular mask */
    object-fit: contain;
    padding: 10px; /* Breathing room inside circle */
}

/* 2. Create Circular Badge Frame for Mascots */
.bin-illustration {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    border: 4px solid var(--gold); /* Unifies them */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto -45px; /* Increase negative margin to overlap ribbon more */
    z-index: 20;
}

/* Specific Border Colors per Card */
.card-green .bin-illustration { border-color: #2e7d32; }
.card-red .bin-illustration { border-color: #c62828; }
.card-gold .bin-illustration { border-color: #f9a825; }
.card-black .bin-illustration { border-color: #424242; }
.card-blue .bin-illustration { border-color: #1565c0; }

/* 3. Improve Ribbon Typography */
.plan-name {
    font-size: 13px; /* Slightly larger but keep it fitting */
    font-weight: 800; /* Extra bold */
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9); /* Stronger shadow for contrast */
    color: #ffffff; /* Pure white */
}

.plan-ribbon {
    height: 55px; /* Taller ribbon */
    padding-top: 15px; /* Push text down strictly */
    align-items: flex-start; /* Align text to top part to avoid mascot overlap if needed */
}

/* 4. Adjust Card Body spacing */
.card-body {
    padding-top: 35px; /* More space for the ribbon overlap */
}

/* 5. Refine Checkmarks again to be sure */
.plan-features li::before {
    /* Use a brighter green */
    color: #76ff03; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    font-weight: 900;
}


/* =================================================================
   PRICING FIXES ROUND 3 (Layout & Spacing)
   ================================================================= */

/* 1. Fix Mascot Overlapping Text */
.bin-illustration {
    margin-bottom: -30px; /* Pull it back up a bit so it doesn't cover text */
    transform: translateY(-20px); /* Lift the whole mascot up */
}

/* 2. Adjust Ribbon Text Position */
.plan-ribbon {
    height: 70px; /* Even taller to accommodate text */
    padding-top: 35px; /* Push text much further down */
    align-items: flex-start; 
}

/* 3. Fix Featured Card White Box (The Persistence) */
/* The issue is likely the gradient background on .pricing-card.featured defined in base styles */
.pricing-card.featured {
    background: transparent !important; /* Force transparency again */
    box-shadow: none !important;
}

/* Ensure the shield body (.card-body) keeps its background */
.pricing-card.featured .card-body {
    /* Re-asserting the gradient here just in case */
    opacity: 1; 
}

/* 4. Select Plan Button Visibility */
.plan-cta {
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
}

/* 5. Most Popular Badge Positioning */
.pricing-card.featured:before {
    top: -40px; /* Move it way up above the mascot */
    z-index: 25;
}


/* =================================================================
   PRICING FIXES ROUND 4 (Hover State)
   ================================================================= */

/* Explicitly remove background/shadow on hover for ALL pricing cards */
.pricing-card:hover, 
.pricing-card:focus, 
.pricing-card.featured:hover {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Ensure the transform still works but without the box */
.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 30; /* Bring to front */
}


/* =================================================================
   HERO ANIMATIONS & ENHANCEMENTS
   ================================================================= */

/* 1. Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 165, 0, 0.6); transform: scale(1.02); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 2. Apply Animations */

/* Floating Worker/Badge Visual */
.hero-visual {
    animation: float 4s ease-in-out infinite;
}

/* Pulsing Promo Banner */
.promo-banner {
    animation: glow-pulse 3s infinite;
    border: 1px solid var(--gold-light);
    transition: all 0.3s ease;
}

/* Staggered Text Entrance */
.hero-text h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text .tagline {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-text p:not(.tagline) {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* 3. Button Sheen Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* 4. Feature Badges Entrance */
.feature-badges .badge-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.feature-badges .badge-item:nth-child(1) { animation-delay: 0.8s; }
.feature-badges .badge-item:nth-child(2) { animation-delay: 1.0s; }
.feature-badges .badge-item:nth-child(3) { animation-delay: 1.2s; }


/* =================================================================
   HERO BANNER REFINEMENT
   ================================================================= */

.promo-banner {
    /* Premium visual style */
    background: linear-gradient(135deg, #d4af37 0%, #a67c00 100%); /* Metallic Gold Gradient */
    border: 2px solid #fff8e1; /* Light cream rim */
    border-radius: 15px; /* Softer rounded corners */
    padding: 20px 30px;
    color: white; /* clearer text depending on gradient */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    
    /* Stronger, layered glow */
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.6), /* Inner glow */
        0 0 30px rgba(212, 175, 55, 0.4), /* Outer glow */
        0 10px 20px rgba(0,0,0,0.2);      /* Drop shadow */
        
    /* Reinforce animation */
    animation: luxury-glow 3s infinite alternate;
}

.promo-banner h3 {
    color: #fff !important; /* Force white for contrast on gold */
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.promo-banner p {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0;
}

/* New Animation for the refined look */
@keyframes luxury-glow {
    0% {
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}


/* =================================================================
   INTERACTIVE COMPARISON SLIDER
   ================================================================= */

.ba-slider {
    position: relative;
    width: 100%;
    height: 480px; /* Adjust based on image aspect ratio */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    cursor: col-resize;
    user-select: none;
}

.ba-image-container, .resize-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background Image (Before - Dirty - Black) */
.ba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay Image (After - Clean - Green) - Initially 50% width */
.resize-container {
    width: 50%;
    z-index: 2;
    background-color: white; /* Fallback */
    border-right: 3px solid white;
}

.resize-container img {
    /* Important: Image must stay full width even inside smaller container */
    width: 800px; /* Must match container width or be handled via JS/Fix */
    /* Better approach: layout absolute */
    position: absolute;
    left: 0;
    top: 0;
    width: auto; /* Let JS or Layout handle this */
    height: 100%;
    max-width: none; /* Prevent responsiveness from shrinking it */
    object-fit: cover;
}

/* Fix for responsive Image sizing within resize container */
/* We need to ensure both images render at the exact same dimension */
.ba-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resize-container .image-after {
    /* To make the 'reveal' work, this image must be sized to the full slider width */
    width: 100vw; /* Fallback */
    max-width: 1100px; /* Match max container */
}

/* Draggable Handle */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Starts at 50% */
    bottom: 0;
    width: 4px;
    background: white;
    z-index: 10;
    cursor: col-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--orange);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.handle-arrow {
    width: 0; 
    height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.handle-arrow:first-child {
    border-right: 8px solid white;
}

.handle-arrow:last-child {
    border-left: 8px solid white;
}

/* Labels */
.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

.label-before {
    right: 20px;
    z-index: 1; /* On bottom layer */
}

.label-after {
    left: 20px;
    z-index: 3; /* On top layer */
    background: var(--orange);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ba-slider { height: 350px; }
    .resize-container .image-after { width: 100vw; }
}


/* =================================================================
   BUTTONS & BADGES REFINEMENT (Round 5)
   ================================================================= */

/* 1. General Button Shape & transitions */
.btn {
    border-radius: 50px; /* Full Pill Shape */
    padding: 16px 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Soft deep shadow */
}

.btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* 2. Primary Button (Orange - Glassy 3D) */
.btn-primary {
    background: linear-gradient(180deg, #e07e3a 0%, #c15b1d 100%);
    box-shadow: 
        0 4px 0 #9c450f, /* 3D Edge */
        0 10px 20px rgba(193, 91, 29, 0.4); /* Drop Shadow */
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ed8f50 0%, #d46a2b 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 0 #9c450f,
        0 15px 25px rgba(193, 91, 29, 0.5);
}

/* 3. Secondary Button (Green - Glassy 3D) */
.btn-secondary {
    background: linear-gradient(180deg, #5da46e 0%, #438753 100%);
    box-shadow: 
        0 4px 0 #2e6139, /* 3D Edge */
        0 10px 20px rgba(67, 135, 83, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #6fb580 0%, #509660 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 0 #2e6139,
        0 15px 25px rgba(67, 135, 83, 0.5);
}


/* 4. Feature Badges (Pill Shape & Polish) */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item {
    background: #fff;
    padding: 12px 28px;
    border-radius: 50px; /* Pillow shape matching buttons */
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); /* Very soft float */
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.badge-item .icon {
    font-size: 24px;
    /* Remove default emoji look if we want custom - keeping emoji for now but styling container */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); 
}

.badge-item .text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    letter-spacing: 0.3px;
}


/* =================================================================
   HERO VISUAL UPDATE (Logo Glow Only)
   ================================================================= */

/* 1. Stop the floating animation on the container */
.hero-visual {
    animation: none !important; /* Stop the up/down float */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2. Style the Logo directly */
.hero-badge img {
    max-width: 100%;
    height: auto;
    /* Add a pulsing glow animation */
    animation: badge-glow 3s infinite alternate;
    border-radius: 50%; /* Optional: ensures shadow follows round shape if logo is round */
    /* Remove any existing transforms that might conflict */
    transform: none; 
    /* Ensure it's big enough */
    width: 450px; 
}

/* 3. Define the Badge Glow Animation */
@keyframes badge-glow {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.8));
        transform: scale(1.03);
    }
}

/* 4. Responsive adjustment since worker is gone */
@media (max-width: 900px) {
    .hero-badge img {
        width: 300px;
    }
}


/* =================================================================
   NAV & HERO BUTTON REFINEMENTS (Specific Targeting)
   ================================================================= */

/* 1. Header Navigation Button - Make it pop but slim */
header nav .btn-primary {
    border-radius: 50px !important;
    padding: 10px 25px !important; /* Slimmer padding for header */
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(224, 126, 58, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

header nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 126, 58, 0.6);
}

/* 2. Hero Section CTA Buttons - Big, Bold, Premium */
.hero-cta .btn {
    border-radius: 50px !important;
    padding: 18px 40px !important; /* Extra large click area */
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Ensure the 3D effect is prominent */
    position: relative;
    top: 0;
}

.hero-cta .btn-primary {
    /* Reinforce the 3D orange look */
    background: linear-gradient(to bottom, #ff9f43, #e58e26);
    box-shadow: 0 6px 0 #c27011, 0 15px 20px rgba(0,0,0,0.2);
}

.hero-cta .btn-primary:active {
    top: 6px;
    box-shadow: 0 0 0 #c27011, inset 0 3px 5px rgba(0,0,0,0.2);
}

.hero-cta .btn-secondary {
    /* Premium Green 3D look */
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    box-shadow: 0 6px 0 #1e8449, 0 15px 20px rgba(0,0,0,0.2);
}

.hero-cta .btn-secondary:active {
    top: 6px;
    box-shadow: 0 0 0 #1e8449, inset 0 3px 5px rgba(0,0,0,0.2);
}


/* =================================================================
   BUTTON HOVER TEXT FIX
   ================================================================= */

/* Ensure text remains white on hover for all primary/secondary buttons */
.btn:hover, 
.btn:focus,
.btn-primary:hover, 
.btn-secondary:hover {
    color: #ffffff !important;
    text-decoration: none; /* remove any link underlines */
}


/* =================================================================
   BEFORE/AFTER SECTION REFINEMENTS (Encoding & Shape)
   ================================================================= */

/* 1. Fix Encoding Issues by using Escape Codes */
.ba-features li::before {
    content: '\2713' !important; /* Standard Checkmark (?) */
    color: var(--green-dark);
    font-weight: 900;
}

.before-after-text h2::after {
    content: '\2014' !important; /* Em Dash (—) */
    margin-left: 15px;
    font-weight: 300;
    opacity: 0.5;
}

/* 2. Enhance Container Shape */
.before-after-container {
    background: #fff !important; /* Clean white card */
    border-radius: 40px !important; /* Very round, friendly shape */
    box-shadow: 0 20px 50px rgba(0,0,0,0.08) !important; /* Soft, deep float */
    padding: 60px !important; /* More breathing room */
    border: 1px solid rgba(0,0,0,0.03);
}

/* 3. Refine Slider Shape */
.ba-slider {
    border-radius: 30px !important; /* Matching roundness */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border: 4px solid #fff; /* White crisp border frame */
}

/* 4. Refine List Typography */
.ba-features li {
    font-size: 18px;
    margin-bottom: 5px;
    color: #4a4a4a;
}


/* =================================================================
   SECONDARY PAGES REFINEMENT (Contact, FAQ, About)
   ================================================================= */

/* --- 1. Contact Page Premium Form --- */
.premium-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

.premium-input {
    border: 2px solid #eee;
    background: #fcfcfc;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.premium-input:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(224, 126, 58, 0.1);
    outline: none;
}

.contact-info-card {
    background: linear-gradient(145deg, #ffffff, #fdfdfd);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    height: 100%;
}

/* --- 2. FAQ Premium Accordion --- */
.faq-accordion-item {
    margin-bottom: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item[open] {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.faq-summary {
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    font-weight: 700;
    color: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none; /* Remove default triangle */
}

/* Custom Marker */
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
    content: '+';
    font-size: 24px;
    color: var(--orange);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-accordion-item[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 25px 25px 25px;
    color: var(--text-medium);
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* --- 3. About Page Improvements --- */
.about-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}

.mascot-frame-circle {
    width: 350px;
    height: 350px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), inset 0 0 20px rgba(0,0,0,0.05);
    border: 8px solid var(--gold-light);
    margin: 0 auto;
    overflow: hidden;
}

.mascot-frame-circle img {
    max-width: 85%;
    object-fit: contain;
}


/* =================================================================

/* =================================================================
   PRICING BUTTON FIXES (Hover Text Validity Only)
   ================================================================= */
.select-plan-btn:hover {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.9;
}


/* =================================================================
   PRICING RIBBON REDESIGN (V-Shape Style)
   ================================================================= */

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align tops */
    gap: 15px; /* Tighter gap like image */
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 40px 10px 60px 10px;
}

.pricing-card {
    background: #0b1a30; /* Dark blue background from image? Or Plans have colors. Let's use generic body then colorful headers */
    /* Actually reference has colored header/footer and dark/colored body. 
       Let's stick to the color themes. */
    flex: 0 0 320px; /* Fixed width narrow cards */
    border-radius: 0;
    position: relative;
    color: white;
    text-align: center;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 60px; /* Space for mascot */
    display: flex;
    flex-direction: column;
}

/* Header */
.ribbon-header {
    padding: 40px 10px 15px 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

/* Mascot Circle */
.ribbon-mascot {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon-mascot img {
    width: 80%;
    height: auto;
}

/* Body */
.ribbon-body {
    padding: 20px 15px;
    flex-grow: 1;
}

.ribbon-price {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.ribbon-price sup {
    font-size: 28px;
    top: -20px;
}

.ribbon-period {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #ffd700; /* Gold text for period */
}

.ribbon-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
}

.ribbon-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.ribbon-features li::before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    color: #4cd137; /* Bright green check */
    font-weight: bold;
}

/* Footer (V-Shape Button) */
.ribbon-footer {
    padding: 0;
    margin-top: auto;
    position: relative;
    /* The V shape is achieved by the container having a pointed bottom */
}

.ribbon-select-btn {
    display: block;
    padding: 30px 10px 50px 10px; /* Extra bottom padding for V point */
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-family: serif; /* Look like the image slab serif */
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    background: rgba(0,0,0,0.2);
}

.ribbon-select-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
}

/* COLOR THEMES */

/* Green */
.theme-green { background: #0c3e1e; border: 2px solid #edc159; }
.theme-green .ribbon-mascot { border-color: #0c3e1e; }
.theme-green .ribbon-header { background: #125429;  }
.theme-green .ribbon-footer .ribbon-select-btn { background: #0a3318; }

/* Red */
.theme-red { background: #590d0d; border: 2px solid #edc159; }
.theme-red .ribbon-mascot { border-color: #7d1212; }
.theme-red .ribbon-header { background: #a31818; }
.theme-red .ribbon-footer .ribbon-select-btn { background: #520b0b; }

/* Orange / Quarterly */
.theme-gold { background: #6b4c06; border: 2px solid #fff; transform: scale(1.05); z-index: 5; }
.theme-gold .ribbon-mascot { border-color: #9c7111; }
.theme-gold .ribbon-header { background: #d99c16; }
.theme-gold .ribbon-footer .ribbon-select-btn { background: #5c4105; }

/* Black */
.theme-black { background: #111; border: 2px solid #edc159; }
.theme-black .ribbon-mascot { border-color: #333; }
.theme-black .ribbon-header { background: #222; }
.theme-black .ribbon-footer .ribbon-select-btn { background: #000; }

/* Blue */
.theme-blue { background: #0c2656; border: 2px solid #edc159; }
.theme-blue .ribbon-mascot { border-color: #1a428a; }
.theme-blue .ribbon-header { background: #1a428a; }
.theme-blue .ribbon-footer .ribbon-select-btn { background: #081d42; }

/* Responsive Grid */
@media (max-width: 992px) {
    .pricing-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pricing-card {
        margin-bottom: 50px;
    }
}


/* =================================================================
   PRICING FIX: SOLID TOWER DESIGN (Based on new image)
   ================================================================= */

.pricing-card {
    /* Reset margins/padding to create solid block */
    display: flex;
    flex-direction: column;
    margin-top: 50px; /* Space for mascot */
    background: transparent !important; /* Remove wrapper bg */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Shadow on whole block */
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2)); /* Shadow for the shape */
}

/* 1. TOP SECTION (Header + Title) - Lighter Shade */
.ribbon-header {
    background-color: inherit; /* Inherit from theme specific rule */
    padding: 50px 10px 15px 10px; /* Top padding for mascot overlap */
    margin: 0;
    border-bottom: none;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* 2. MIDDLE SECTION (Price + Features) - Darker Shade */
.ribbon-body {
    background-color: inherit; /* Inherit from theme rule */
    padding: 20px 15px;
    margin: 0;
    flex-grow: 1;
    /* In the image, the body is darker. We will set this in themes below. */
}

/* 3. BOTTOM SECTION (Footer V-Shape) - Darkest/Accent */
.ribbon-footer {
    position: relative;
    z-index: 10;
    margin-top: -1px; /* Avoid gap */
}

/* The V-Shape Button itself */
.ribbon-select-btn {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding: 25px 10px 45px 10px;
    margin: 0;
    background-color: inherit; /* Theme driven */
    font-family: 'Times New Roman', serif; /* Serif font as per image */
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- THEME COLORS (Top / Body / Footer) --- */

/* GREEN */
.theme-green .ribbon-header { background-color: #0F5132; } /* Forest Green */
.theme-green .ribbon-body   { background-color: #0a3b24; } /* Darker Green */
.theme-green .ribbon-footer .ribbon-select-btn { background-color: #072919; } /* Darkest Green */

/* RED */
.theme-red .ribbon-header { background-color: #842029; } /* Deep Red */
.theme-red .ribbon-body   { background-color: #5c161d; } /* Darker Red */
.theme-red .ribbon-footer .ribbon-select-btn { background-color: #3b0e12; } /* Darkest Red */

/* GOLD (Featured) */
.theme-gold { transform: scale(1.05); z-index: 5; }
.theme-gold .ribbon-header { background-color: #FFC107; color: black; } /* Gold */
.theme-gold .ribbon-body   { background-color: #997404; color: white !important; } /* Dark Gold/Brown */
.theme-gold .ribbon-footer .ribbon-select-btn { background-color: #664d03; color: white; } /* Darkest Gold */
/* Adjust Gold text readability */
.theme-gold .ribbon-body .ribbon-period { color: #fff !important; }

/* BLACK */
.theme-black .ribbon-header { background-color: #212529; } /* Dark Gray */
.theme-black .ribbon-body   { background-color: #000000; } /* Pure Black */
.theme-black .ribbon-footer .ribbon-select-btn { background-color: #000000; } /* Black */

/* BLUE */
.theme-blue .ribbon-header { background-color: #0d6efd; } /* Bright Blue */
.theme-blue .ribbon-body   { background-color: #0a58ca; } /* Dark Blue */
.theme-blue .ribbon-footer .ribbon-select-btn { background-color: #06357a; } /* Darkest Blue */

/* Typography Fixes from Image */
.ribbon-features li::before { content: '\2713'; color: #4cd137; }
.theme-gold .ribbon-features li::before { color: #fff; } /* White checks on gold */

/* Fix Mascot Position */
.ribbon-mascot {
    border: 5px solid white;
    width: 100px;
    height: 100px;
    top: -50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* =================================================================
   FINAL PRICING FIX: REMOVE GAPS & SCROLLBAR
   ================================================================= */

/* 1. Hide Scrollbar but allow scroll */
.pricing-grid {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    padding-bottom: 40px; /* Ensure shadow isn't cut off */
}
.pricing-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* 2. Reset Card Borders & Backgrounds (Fixes White Outlines) */
.pricing-card, 
.pricing-card.theme-gold, 
.pricing-card.theme-red, 
.pricing-card.theme-green, 
.pricing-card.theme-black, 
.pricing-card.theme-blue {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important; /* Remove box shadow, use drop-shadow below */
}

/* 3. Apply Shadow to the V-Shape */
.pricing-card {
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

/* 4. Ensure Seamless Segments (Fixes Lines Between Header/Body) */
.ribbon-header {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}

.ribbon-body {
    margin-top: 0 !important;
    padding-top: 0 !important;
    /* Ensure color covers the full area */
}

.ribbon-footer {
    margin-top: -2px !important; /* Overlap slightly to ensure no gap */
    padding: 0 !important;
}

.ribbon-select-btn {
    border: none !important;
    outline: none !important;
}

/* 5. Gold & Specific Fixes */
.theme-gold {
    transform: scale(1.05); /* Keep scale */
}


/* =================================================================
   PRICING REFINEMENT: TEXT COLORS & HOVER FX
   ================================================================= */

/* 1. Refine Text Colors (Crisp White + Shadow) */
.ribbon-features li {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4); /* Stronger contrast against dark bg */
    font-weight: 500;
    opacity: 1 !important;
}

.ribbon-features li::before {
    text-shadow: none; /* Keep checkmark clean */
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

/* 2. Unique Button Hover Effect (Glow + Text Expansion) */
.ribbon-select-btn {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-size: 200% auto;
}

.ribbon-footer:hover .ribbon-select-btn {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.3));
    letter-spacing: 3px; /* Expands text elegantly */
    text-shadow: 0 0 8px rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

/* 3. Specific Theme Hover Tweaks for 'Unique' feel */
.theme-green .ribbon-footer:hover .ribbon-select-btn {
    background: linear-gradient(to bottom, #0a3b24, #157a4e);
}
.theme-red .ribbon-footer:hover .ribbon-select-btn {
    background: linear-gradient(to bottom, #5c161d, #a31818);
}
.theme-gold .ribbon-footer:hover .ribbon-select-btn {
    background: linear-gradient(to bottom, #664d03, #d4a017);
}
.theme-black .ribbon-footer:hover .ribbon-select-btn {
    background: linear-gradient(to bottom, #000000, #333333);
}
.theme-blue .ribbon-footer:hover .ribbon-select-btn {
    background: linear-gradient(to bottom, #06357a, #0d6efd);
}


/* =================================================================
   PRICING HOVER FIX: SHINE ANIMATION
   ================================================================= */
.ribbon-select-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ribbon-select-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 2;
    transition: none;
}

.ribbon-footer:hover .ribbon-select-btn::after {
    animation: shine-pass 0.75s ease-in-out;
}

@keyframes shine-pass {
    0% { left: -100%; }
    100% { left: 200%; }
}

.ribbon-footer:hover .ribbon-select-btn {
    transform: translateY(-5px) !important;
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(255,255,255,0.4)) !important;
    color: #FFD700 !important; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}


/* =================================================================
   PRICING HEADER REDESIGN
   ================================================================= */
.pricing-hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%); /* Deep Regal Purple */
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #d4af37; /* Metallic Gold Border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Subtle pattern overlay */
.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px !important;
    font-weight: 700;
    color: #FFD700 !important; /* Bright Gold */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

/* Decorative lines around title */
.pricing-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.pricing-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}


/* =================================================================
   ABOUT PAGE REFINEMENT
   ================================================================= */
.about-mission-section {
    background: linear-gradient(180deg, #fffbf2 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.story-card {
    background: #ffffff;
    border-radius: 12px; /* Smooth corners */
    padding: 60px;
    box-shadow: 0 20px 50px rgba(26, 11, 46, 0.08); /* Deep soft shadow */
    border-top: 6px solid #d4af37; /* Premium Gold Top */
    position: relative;
    overflow: hidden;
}

/* Elegant background watermark */
.story-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2d1b4e; /* Deep Purple */
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37; /* Gold Underline */
    margin-top: 15px;
}

.story-text {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.highlight-gold {
    color: #b58d18;
    font-weight: 700;
}

.highlight-purple {
    color: #2d1b4e;
    font-weight: 700;
}

/* Enhanced Feature List */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #fafafa;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.premium-features-grid li {
    list-style: none;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-features-grid li::before {
    content: '\2713'; /* Checkmark */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}


/* =================================================================
   SERVICE CARD FIX
   ================================================================= */
.service-card .service-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

.service-card .service-features li {
    position: relative !important;
    padding-left: 30px !important;
    margin-bottom: 8px !important;
    color: #555 !important;
    font-weight: 500 !important;
}

.service-card .service-features li::before {
    content: '\2713' !important; /* Unicode Checkmark */
    position: absolute !important;
    left: 0 !important;
    color: var(--green) !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    top: 0 !important;
}


/* Booking specific visual tweak */
#bookingForm {
    border-top: 5px solid #d4af37; /* Consistent gold top border for form */
}


/* =================================================================
   PRICING BUTTON REDESIGN: PILL SHAPE

/* =================================================================
   GLOBAL BUTTON REFINEMENT: 3D REFERENCE STYLE
   ================================================================= */

/* Reset base button styles for consistent shape */
.btn-primary, .btn-secondary {
    border-radius: 50px !important; /* Perfect Pill Shape */
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    padding: 18px 40px !important;
    position: relative !important;
    transition: all 0.15s ease !important;
    top: 0;
}

/* Orange Button Refinement (Matches Image) */
.btn-primary {
    background: linear-gradient(180deg, #F9AB55 0%, #D86C18 100%) !important; /* Smooth Citrus Gradient */
    box-shadow: 0 6px 0 #A84E05, 0 15px 20px rgba(0,0,0,0.2) !important; /* Deep Dark Orange Shadow */
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 0 #A84E05, 0 20px 30px rgba(0,0,0,0.3) !important;
}

.btn-primary:active {
    transform: translateY(6px) !important;
    box-shadow: 0 0 0 #A84E05, inset 0 3px 5px rgba(0,0,0,0.2) !important;
    top: 0; 
}

/* Green Button Refinement (Matches Image) */
.btn-secondary {
    background: linear-gradient(180deg, #4CD137 0%, #218C44 100%) !important; /* Lush Green Gradient */
    box-shadow: 0 6px 0 #145226, 0 15px 20px rgba(0,0,0,0.2) !important; /* Deep Forest Shadow */
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 0 #145226, 0 20px 30px rgba(0,0,0,0.3) !important;
}

.btn-secondary:active {
    transform: translateY(6px) !important;
    box-shadow: 0 0 0 #145226, inset 0 3px 5px rgba(0,0,0,0.2) !important;
    top: 0;
}

/* Ensure text is always white */
.btn-primary:hover, .btn-secondary:hover {
    color: white !important; 
}



/* =================================================================
   MAIN PAGE PRICING BUTTON HOVER (MATCH CARD COLOR)
   ================================================================= */

/* Reset generic hover effect first */
.select-plan-btn {
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* 1. Green Card Hover (Lush Green) */
.pricing-card.card-green .select-plan-btn:hover {
    background: #2e7d32 !important; /* Dark Green */
    border-color: #2e7d32 !important;
    color: #ffffff !important;
}

/* 2. Red Card Hover (Deep Red) */
.pricing-card.card-red .select-plan-btn:hover {
    background: #c62828 !important; /* Dark Red */
    border-color: #c62828 !important;
    color: #ffffff !important;
}

/* 3. Gold Card Hover (Rich Gold) */
.pricing-card.card-gold .select-plan-btn:hover {
    background: #f9a825 !important; /* Deep Dark Gold */
    border-color: #f9a825 !important;
    color: #ffffff !important; /* White text for contrast on dark gold */
}

/* 4. Black Card Hover (Dark Gray) */
.pricing-card.card-black .select-plan-btn:hover {
    background: #424242 !important; /* Dark Gray */
    border-color: #424242 !important;
    color: #ffd700 !important; /* Keep Gold text for premium feel */
}

/* 5. Blue Card Hover (Royal Blue) */
.pricing-card.card-blue .select-plan-btn:hover {
    background: #1565c0 !important; /* Medium Blue */
    border-color: #1565c0 !important;
    color: #ffffff !important;
}


/* =================================================================
   MAIN PAGE PRICING BUTTON ENHANCEMENT (Font & Animation)
   ================================================================= */

.select-plan-btn {
    font-family: 'Playfair Display', serif !important; /* Premium Serif Font */
    font-weight: 700 !important;
    font-size: 18px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    position: relative !important;
    overflow: hidden !important;
    /* Maintain the specific color overrides I added earlier */
}

/* Shine Animation on Hover (Matches Pricing Page) */
.select-plan-btn::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -150% !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%) !important;
    transform: skewX(-25deg) !important;
    transition: none !important;
    pointer-events: none !important;
}

.select-plan-btn:hover::after {
    animation: shine-pass 0.75s ease-in-out !important;
}

.select-plan-btn:hover {
    transform: translateY(-5px) !important; /* Lift Effect */
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0,0,0,0.2)) !important;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2) !important;
}


/* =================================================================
   MAIN PAGE BUTTON ANIMATION FIX: TEXT EXPANSION
   ================================================================= */

.select-plan-btn {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important; /* Smooth elastic feel */
}

.select-plan-btn:hover {
    letter-spacing: 3px !important; /* The 'breathing' text effect from Pricing Page */
    padding-left: 20px !important; /* Adjust padding to keep centered if needed */
    padding-right: 20px !important;
}

