/* 
   Atlanta Bin Busters - Custom Premium Buttons 
   Overrides for a more modern, high-converting look.
*/

:root {
    /* Redefine/Ensure variables are available (fallback) */
    --green: #3d8c55;
    --green-light: #6eb784;
    --gold: #dcb368;
    --gold-dark: #b88a4d;
    --white: #ffffff;
    --text-dark: #2c241b;
}

/* Base Button Style */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smooth spring-like transition */
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Base shadow */
}

/* Primary Button (Book Now) - Green Gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 20px -5px rgba(61, 140, 85, 0.4) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(61, 140, 85, 0.6) !important;
    background: linear-gradient(135deg, #7bcfa0 0%, #46a062 100%) !important;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Secondary Button (Get Quote) - White/Outline or Gold */
.btn-secondary {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--gold) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

.btn-secondary:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(220, 179, 104, 0.4) !important;
    border-color: var(--gold) !important;
}

/* Special Select Plan Button (on Pricing Page) */
.select-plan-btn {
    width: 100%;
    text-align: center;
    background: var(--white) !important;
    color: var(--green) !important;
    border: 2px solid var(--green) !important;
    border-radius: 12px;
    /* Slightly less rounded than main CTAs */
    padding: 12px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.select-plan-btn:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(61, 140, 85, 0.2);
}

/* Pricing Button Variants - Match Card Colors */
.card-green .select-plan-btn {
    background: var(--plan-green) !important;
    border-color: var(--plan-green) !important;
    color: var(--white) !important;
}

.card-green .select-plan-btn:hover {
    background: var(--white) !important;
    color: var(--plan-green) !important;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4) !important;
}

.card-red .select-plan-btn {
    background: var(--plan-red) !important;
    border-color: var(--plan-red) !important;
    color: var(--white) !important;
}

.card-red .select-plan-btn:hover {
    background: var(--white) !important;
    color: var(--plan-red) !important;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4) !important;
}

.card-gold .select-plan-btn {
    background: var(--plan-gold) !important;
    border-color: var(--plan-gold) !important;
    color: var(--white) !important;
}

.card-gold .select-plan-btn:hover {
    background: var(--white) !important;
    color: var(--plan-gold) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4) !important;
}

.card-black .select-plan-btn {
    background: var(--plan-black) !important;
    border-color: var(--plan-black) !important;
    color: var(--white) !important;
}

.card-black .select-plan-btn:hover {
    background: var(--white) !important;
    color: var(--plan-black) !important;
    box-shadow: 0 5px 15px rgba(33, 33, 33, 0.4) !important;
}

.card-blue .select-plan-btn {
    background: var(--plan-blue) !important;
    border-color: var(--plan-blue) !important;
    color: var(--white) !important;
}

.card-blue .select-plan-btn:hover {
    background: var(--white) !important;
    color: var(--plan-blue) !important;
    box-shadow: 0 5px 15px rgba(3, 155, 229, 0.4) !important;
}

/* =========================================
   Contact Page Premium Styles
   ========================================= */

/* Premium Form Card */
.premium-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Premium Inputs */
.premium-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.premium-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(61, 140, 85, 0.1);
    outline: none;
    background: var(--white);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--parchment);
    /* Light beige background */
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Form Labels */
.form-group label {
    color: var(--text-dark);
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================================
   Service Page Premium Styles
   ========================================= */

/* Service Card Container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual Service Card */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    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;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(61, 140, 85, 0.2);
}

.service-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 800;
}

.service-card h4 {
    margin: 5px 0 0;
    color: var(--green);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 25px;
    color: var(--text-medium);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    position: absolute;
    left: 0;
}

/* Service CTA Button inside card */
.service-card-cta {
    margin-top: 20px;
    text-align: center;
}

/* =========================================
   FAQ Page Premium Styles
   ========================================= */

.faq-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/professional-worker-hero.png') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: white;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Accordion Item */
details.faq-accordion-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

details.faq-accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

details.faq-accordion-item[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(61, 140, 85, 0.2);
}

/* Accordion Summary (The Question) */
summary.faq-summary {
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 60px;
}

summary.faq-summary::-webkit-details-marker {
    display: none;
}

/* Custom Plus/Minus Icon */
summary.faq-summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--green);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 140, 85, 0.1);
    border-radius: 50%;
}

details[open] summary.faq-summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: var(--green);
    color: var(--white);
}

/* Accordion Content (The Answer) */
.faq-content {
    padding: 0 25px 25px 25px;
    color: var(--text-medium);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: -10px;
    padding-top: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   About Us Page Premium Styles
   ========================================= */

/* Storybook/Parchment Container */
.about-paper-section {
    background: #fdfbf7;
    /* Fallback */
    background-image: url('../images/subtle-pattern.png'), linear-gradient(to bottom, #fdfbf7, #f4eadd);
    background-blend-mode: overlay;
    padding: 80px 0 0 0;
    /* Padding bottom handled by footer image */
    position: relative;
    overflow: hidden;
    color: #4a3c31;
    font-family: 'Georgia', serif;
    /* Serif for storybook feel */
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 250px;
}

/* Header Grid Layout */
.about-header-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .about-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Typography Overrides */
.about-title {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 56px;
    color: #3e2f26;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
}

.about-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #5d4037;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

/* Mascot Floating Side */
.mascot-float-side {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
    transform: rotate(-5deg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   Hero Section - Parchment Theme
   ========================================= */
.hero {
    background: #fdfbf7 url('../images/parchment-texture.jpg');
    /* Fallback color + texture if available */
    background-size: cover;
    background-blend-mode: multiply;
    padding: 100px 0;
    position: relative;
    border-bottom: 5px solid #dcb368;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    color: #3e2723;
    /* Dark Brown */
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.hero .tagline {
    font-family: 'Georgia', serif;
    color: #bf360c;
    /* Burnt Orange */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero p {
    font-family: 'Outfit', sans-serif;
    color: #5d4037;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Ribbon Banner Configuration */
.promo-banner {
    position: relative;
    background: linear-gradient(to bottom, #ffd54f 0%, #ffca28 100%);
    color: #3e2723;
    padding: 15px 40px;
    margin: 30px auto 40px 0;
    /* Align left */
    border: 1px solid #ff6f00;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    min-width: 500px;
    text-align: center;
    border-radius: 2px;
}

/* Ribbon Ends */
.promo-banner::before,
.promo-banner::after {
    content: '';
    position: absolute;
    top: 10px;
    z-index: -1;
    border-style: solid;
    border-color: #ff6f00 transparent transparent transparent;
}

.promo-banner::before {
    left: -20px;
    border-width: 0 0 20px 20px;
    transform: rotate(90deg);
    /* Simplified ribbon tail approach */
}

/* Ribbon "Fold" effect usually requires explicit triangle elements */
/* Using a simpler "Gold Bar" approach to ensure stability first, matching the "Shape" request via gradients */

.promo-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #3e2723;
    display: inline-block;
    margin-right: 10px;
}

.promo-price {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #212121;
    display: inline-block;
}

.promo-subtitle {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: #5d4037;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-icon-floating {
    display: none;
}

/* Hide the trophy for this ribbon style */


/* Update Hero Buttons to Orange/Purple */
.btn-primary {
    /* Orange Wood Button */
    background: linear-gradient(to bottom, #e65100, #bf360c) !important;
    border: 2px solid #ffab91 !important;
    box-shadow: 0 4px 0 #870000, 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 8px;
    /* Slightly rounded, not full pill for this specific visual? Image looks slightly rounded */
}

.btn-secondary {
    /* Purple/Dark Button */
    background: linear-gradient(to bottom, #4a148c, #311b92) !important;
    border: 2px solid #7c43bd !important;
    color: white !important;
    box-shadow: 0 4px 0 #1a0063, 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 8px;
    padding: 15px 30px;
}

/* Custom Checkmarks Container */
.hero .feature-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* Center them comfortably */
    align-items: center;
    gap: 30px;
    /* Increased gap for cleaner text-only look */
    flex-wrap: nowrap;
    /* Force single line on desktop */
    margin-top: 25px;
}

@media (max-width: 768px) {
    .hero .feature-badges {
        flex-wrap: wrap;
        /* Allow wrap only on mobile */
        gap: 15px;
    }
}

/* Individual Badge Item - Transparent/Text Only */
.hero .feature-badges .badge-item {
    display: inline-flex;
    align-items: center;
    background: transparent;
    /* Removed white pill background */
    padding: 0;
    /* Removed padding */
    border-radius: 0;
    box-shadow: none;
    /* Removed shadow */
    font-weight: 700;
    color: #4e342e;
    /* Dark Brown to match reference */
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    /* Slightly smaller to ensure fit */
    transition: transform 0.2s ease;
    white-space: nowrap;
    /* Prevent text wrap inside badge */
}

.hero .feature-badges .badge-item:hover {
    transform: translateY(-1px);
    /* Subtle lift only */
    box-shadow: none;
}

/* Green Square Icon matching reference */
.hero .feature-badges .icon {
    background: #558b2f;
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    /* Soft square */
    font-size: 14px;
    margin-right: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Feature List with Checkmarks */
.about-features-list {
    text-align: left;
    display: inline-block;
    margin: 30px auto;
    list-style: none;
    padding: 0;
}

.about-features-list li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #5d4037;
}

.about-features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Skyline Footer */
.cityscape-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #3e2723 0%, transparent 100%);
    /* Fallback ground */
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Custom Wood/Gold Button (Pill Shape) */
.btn-wood {
    display: inline-block;
    background: linear-gradient(to bottom, #8d6e63 0%, #5d4037 100%);
    border: 1px solid #4e342e;
    border-radius: 50px;
    color: #fff !important;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 40px;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        /* Inner Highlight */
        0 4px 0 #3e2723,
        /* 3D Edge */
        0 5px 10px rgba(0, 0, 0, 0.3);
    /* Drop Shadow */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease-in-out;
    letter-spacing: 1px;
    position: relative;
    top: 0;
}

.btn-wood:hover {
    background: linear-gradient(to bottom, #9c7d72 0%, #6d4c41 100%);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 5px 0 #3e2723,
        0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-wood:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 #3e2723,
        0 1px 2px rgba(0, 0, 0, 0.3);
    top: 0;
}

/* 3D Green Button (Pill Shape) */
.btn-green-3d {
    display: inline-block;
    background: linear-gradient(to bottom, #66bb6a 0%, #43a047 100%);
    border: 1px solid #2e7d32;
    border-radius: 50px;
    color: #fff !important;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 40px;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        /* Inner Highlight */
        0 4px 0 #1b5e20,
        /* 3D Edge */
        0 5px 10px rgba(0, 0, 0, 0.3);
    /* Drop Shadow */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease-in-out;
    letter-spacing: 1px;
    position: relative;
    top: 0;
}

.btn-green-3d:hover {
    background: linear-gradient(to bottom, #81c784 0%, #4caf50 100%);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 5px 0 #1b5e20,
        0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-green-3d:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 #1b5e20,
        0 1px 2px rgba(0, 0, 0, 0.3);
    top: 0;
}

/* Photo Gallery Styles */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.polaroid-wrapper {
    background: #fff;
    padding: 15px 15px 40px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.polaroid-wrapper:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid-wrapper:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.polaroid-caption {
    font-family: 'Nothing You Could Do', 'Comic Sans MS', cursive;
    /* Handwritten feel */
    color: #5d4037;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* =========================================
   Grand Opening Promo Banner
   ========================================= */
.promo-banner {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    margin: 40px 0;
    position: relative;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.6),
        /* Gold Glow */
        inset 0 0 0 2px #ffd700;
    /* Inner Gold Border */
    border: 4px solid #fff;
    /* Outer White Border */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Shine Effect */
.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.promo-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.promo-price {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 800;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.promo-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}


/* =========================================
   Premium "How It Works" Section
   ========================================= */

/* Section Background */
.how-it-works-section {
    background: #fdfbf7 url('../images/parchment-texture.jpg');
    /* Match Hero */
    background-size: cover;
    background-blend-mode: multiply;
    padding: 80px 0;
    position: relative;
    border-top: 1px solid #dcb368;
    border-bottom: 5px solid #dcb368;
}

/* Premium Typography */
.premium-section-title {
    font-family: 'Cinzel', serif;
    color: #5d4037;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.premium-section-title .highlight-text {
    color: #3e2723;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

/* Steps Container (Flexbox) */
.steps-container-premium {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align top so cards hang naturally */
    gap: 10px;
    /* Reduced gap to fit */
    margin-top: 50px;
    flex-wrap: nowrap;
    /* Force no wrap on desktop */
}

/* Individual Step Card Wrapper */
.step-card-premium {
    width: 280px;
    /* Reduced width */
    text-align: center;
    position: relative;
    margin: 0 5px;
    flex-shrink: 1;
    /* Allow shrinking if needed */
}

/* Polaroid/Card Image Style */
.step-image-wrapper {
    background: #fff;
    padding: 10px 10px 40px 10px;
    /* Compact padding */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 30px;
    /* Space for the badge */
    position: relative;
    transform: rotate(-2deg);
    /* Organic tilt */
    transition: transform 0.3s ease;
}

.step-card-premium:nth-child(3) .step-image-wrapper {
    transform: rotate(2deg);
    /* Alternating tilt */
}

.step-card-premium:hover .step-image-wrapper {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.step-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #f0f0f0;
}

/* Numbered Badge (Orange Circle) */
.step-badge {
    position: absolute;
    top: 220px;
    /* Position it below the image but overlapping slightly or just below */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #e65100;
    /* Burnt Orange */
    color: white;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
    border: 3px solid #fff;
}

/* Step Typography */
.step-title {
    font-family: 'Cinzel', serif;
    color: #3e2723;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-family: 'Outfit', sans-serif;
    color: #5d4037;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
}

/* Arrows between steps */
.step-arrow {
    font-size: 40px;
    color: #e65100;
    /* Orange Arrow */
    align-self: center;
    margin-top: -150px;
    /* moved up to align with images */
    font-weight: 300;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .step-arrow {
        display: none;
        /* Hide arrows on mobile/tablet wrap */
    }

    .steps-container-premium {
        gap: 60px;
        /* More vertical space on mobile */
    }
}

/* Big Orange 3D Button */
.btn-book-3d {
    display: inline-block;
    background: linear-gradient(to bottom, #d84315 0%, #bf360c 100%);
    border: 2px solid #ffab91;
    color: #fff !important;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 20px 60px;
    border-radius: 50px;
    /* Pill Shape */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 6px 0 #870000,
        /* Deep Red/Brown 3D Edge */
        0 8px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-book-3d:hover {
    transform: translateY(-2px);
    background: linear-gradient(to bottom, #f4511e 0%, #d84315 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 8px 0 #870000,
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-book-3d:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 0 #870000,
        0 2px 5px rgba(0, 0, 0, 0.3);
}