/*
Theme Name: Skela Theme
Theme URI: https://skela.com
Author: Antigravity
Author URI: https://skela.com
Description: Custom WordPress theme converted from landing page for Skela Marine Upholstery.
Version: 1.0.0
*/

/* CSS Variables & Reset */
:root {
    --primary-color: #137a6e;
    /* Marine Teal */
    --accent-color: #a3e3db;
    /* Light Mint/Aqua */
    --highlight-color: #4ade80;
    /* Fresh Green */
    --dark-bg: #0f5951;
    /* Deep Teal */
    --light-bg: #f0fdfa;
    /* Very light teal tint */
    --text-dark: #134e4a;
    /* Dark Teal-Grey */
    --text-light: #f0fdfa;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(19, 122, 110, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(15, 89, 81, 0.2), 0 10px 10px -5px rgba(15, 89, 81, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

p {
    margin-bottom: var(--spacing-sm);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

/* Header */
.top-bar {
    background-color: #f3ece4;
    background-image: url('assets/images/seamless_beige_leather_fixed.webp');
    /* Original texture made seamless */
    background-size: 400px;
    /* Fixed size for better texture visibility */
    background-repeat: repeat;
    background-position: center;
    background-blend-mode: normal;
    /* Removed backdrop-filter to prevent any smearing perception if texture has transparency */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.top-bar::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #0f5951;
    /* Stitching color green */
    opacity: 0.7;
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 0.4rem;
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li.current-menu-item>a,
.nav-menu li.current_page_item>a {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-menu li.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #f3ece4;
    background-image: url('assets/images/seamless_beige_leather_fixed.webp');
    background-size: 400px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1001;
}

.nav-menu li:hover>.sub-menu {
    display: block;
}

.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    border-bottom: 1px solid rgba(15, 89, 81, 0.05);
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.nav-menu .sub-menu li a:hover {
    background: rgba(15, 89, 81, 0.06);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 72px;
    width: auto;
    border-radius: 50%;
}

.service-area {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;

    /* Shimmer Effect */
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--highlight-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    /* Fallback */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    -webkit-text-fill-color: white;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    background-image: url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center bottom;
    /* Adjusted to better show interior */
    position: relative;
    display: flex;
    align-items: flex-start;
    /* Changed from center to lift content */
    padding-top: 140px;
    /* Added padding to push content down from header */
    color: white;
    margin-top: 60px;
    /* Offset fixed header */
}

.hero-furniture {
    background-image: url('assets/images/hero-furniture-bg.webp');
    background-position: center center;
}

.hero-home {
    background-image: url('assets/images/hero-home-bg.webp');
    background-position: center center;
}

.hero-headliner-actual {
    background-image: url('assets/images/headliner-hero-actual.webp');
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 44, 89, 0.7), rgba(9, 26, 51, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge-offer {
    display: inline-block;
    background-color: var(--highlight-color);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-group {
    display: flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #eaddcf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 192, 163, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-offer {
    background-color: var(--highlight-color);
    color: white;
}

.btn-offer:hover {
    background-color: #3bcc6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-lg) 0;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.step-card {
    text-align: center;
    padding: var(--spacing-md);
    background: #fff;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #f1f5f9;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--spacing-sm);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background-color: var(--primary-color);
    color: white;
}

/* Why Us */
.why-us {
    padding: var(--spacing-lg) 0;
    background-color: #f8fafc;
    background-image:
        linear-gradient(135deg, rgba(248, 250, 252, 0.3) 0%, transparent 50%, rgba(248, 250, 252, 0.3) 100%),
        url('assets/images/seamless_beige_leather_fixed.webp');
    background-size: auto, 200px 200px;
    background-repeat: no-repeat, repeat;
    background-blend-mode: overlay, soft-light;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Bundle Section */
.bundle-offer {
    padding: var(--spacing-lg) 0;
    background-color: var(--dark-bg);
    background-image: url('assets/images/seamless_green_leather.webp');
    background-size: auto;
    background-repeat: repeat;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    overflow: hidden;
}

.bundle-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.bundle-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.bundle-text h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.bundle-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bundle-highlight i {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

/* About Section */
.about-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section .btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.about-section .btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 4px solid white;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .about-image {
        order: -1;
    }
}

/* Lead Form */
.lead-section {
    padding: var(--spacing-lg) 0;
    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='%239C92AC' fill-opacity='0.05'%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");
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-form .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 44, 89, 0.1);
}

.checkboxes {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.legal-text {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem;
}

.mobile-cta-text {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.btn-text-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    font-size: 1.1rem;
}

/* Project Gallery */
.project-gallery {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background-color: var(--dark-bg);
    background-image: url('assets/images/seamless_green_leather.webp');
    background-size: auto;
    background-repeat: repeat;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    overflow: hidden;
}

.project-gallery .section-header h2 {
    color: white;
}

.project-gallery .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 5% 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.gallery-track::-webkit-scrollbar {
    height: 6px;
}

.gallery-track::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 380px;
    scroll-snap-align: start;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-wrapper {
    position: relative;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-left {
    left: 12px;
}

.gallery-arrow-right {
    right: 12px;
}

@media (max-width: 768px) {
    .gallery-arrow {
        display: none;
    }
}

/* FAQ */
.faq {
    background-color: white;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(255, 255, 255, 0.4) 100%),
        url('assets/images/seamless_beige_leather_fixed.webp');
    background-size: auto, 200px 200px;
    background-repeat: no-repeat, repeat;
    background-blend-mode: overlay, soft-light;
    padding: var(--spacing-lg) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Our Services */
.our-services {
    padding: var(--spacing-lg) 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    background: #fafffe;
    transition: var(--transition);
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(19, 122, 110, 0.12);
    border-color: var(--accent-color);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    background-image: url('assets/images/seamless_green_leather.webp');
    background-size: auto;
    background-repeat: repeat;
    background-position: center;
    background-blend-mode: overlay;
    color: #94a3b8;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 5rem;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 2px dashed #f3ece4;
    /* Beige stitching */
    opacity: 0.7;
    pointer-events: none;
}



.footer-logo {
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-legal a {
    color: white;
    margin: 0 0.5rem;
}

/* Sticky Bottom CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1rem 0.75rem 1rem;
    /* Increased top padding */
    background-color: #f3ece4;
    background-image: url('assets/images/seamless_beige_leather_fixed.webp');
    /* Original texture made seamless */
    background-size: 400px;
    /* Fixed size for better texture visibility */
    background-repeat: repeat;
    background-position: center;
    background-blend-mode: normal;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

.sticky-cta::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 2px dashed #0f5951;
    /* Stitching color green */
    opacity: 0.7;
    pointer-events: none;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

footer {
    padding-bottom: 5rem;
}

.footer-navigation {
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-menu li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--primary-color);
}

/* Compact Hero (inner pages) */
.hero-compact {
    height: 50vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

/* FAQ Accordion */
.faq-section {
    padding: var(--spacing-lg) 0;
    padding-top: calc(var(--spacing-lg) + 1rem);
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.faq-answer ul li {
    margin-bottom: 0.4rem;
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.faq-cta h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Article Page */
.article-section {
    padding: var(--spacing-lg) 0;
    padding-top: calc(var(--spacing-lg) + 1rem);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #e2e8f0;
}

.article-section h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.article-section h2 i {
    margin-right: 0.5rem;
}

/* Comparison Table */
.comparison-table-wrapper {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.comparison-table-wrapper h2 {
    margin-top: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table thead th {
    background: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
}

.comparison-table thead th.highlight-col {
    background: var(--highlight-color);
}

.comparison-table td.highlight-col {
    background: rgba(56, 189, 248, 0.06);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Article Cards */
.article-card {
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.article-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.article-card h3 i {
    margin-right: 0.5rem;
}

.article-card.advantage {
    background: rgba(16, 185, 129, 0.06);
    border-color: #10b981;
}

.article-card.advantage h3 {
    color: #059669;
}

.article-card.neutral {
    background: rgba(245, 158, 11, 0.06);
    border-color: #f59e0b;
}

.article-card.neutral h3 {
    color: #d97706;
}

.article-card.disadvantage {
    background: rgba(239, 68, 68, 0.06);
    border-color: #ef4444;
}

.article-card.disadvantage h3 {
    color: #dc2626;
}

/* Article Conclusion & CTA */
.article-conclusion {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
}

.article-conclusion h2 {
    margin-top: 0;
}

.article-cta {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.article-cta h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.article-cta .cta-group {
    justify-content: center;
    margin-top: var(--spacing-sm);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-hero-content {
    text-align: center;
}

.contact-hero-content p {
    margin: 0 auto;
    max-width: 800px;
}

.process-steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    text-align: center;
    align-items: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
}

.process-step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.2);
}

/* Tablet & Navigation Responsive */
@media (max-width: 1199px) {
    .hidden-mobile {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f3ece4;
        background-image: url('assets/images/seamless_beige_leather_fixed.webp');
        background-size: 400px;
        box-shadow: var(--shadow-sm);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .main-navigation.active {
        max-height: 400px;
        border-top: 1px solid rgba(15, 89, 81, 0.1);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(15, 89, 81, 0.05);
    }

    .nav-menu .sub-menu {
        display: block;
        position: static;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: rgba(15, 89, 81, 0.04);
    }

    .nav-menu .sub-menu li a {
        padding-left: 2rem;
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 70px;
        /* Reduced to lift content higher */
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .btn-outline {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .logo {
        font-size: 0.8rem;
    }

    .contact-btn {
        margin-right: -3.5rem;
        /* Increased negative margin for tablet */
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        /* Allow text wrap for hero buttons if needed */
        height: auto;
        min-height: 54px;
        text-align: center;
    }

    .bundle-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bundle-image {
        margin-bottom: 1rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bundle-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sticky-cta {
        gap: 0.5rem;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
        /* Increased top padding for mobile */
    }

    .contact-hero-content {
        text-align: center !important;
    }

    .process-steps-container {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0 !important;
    }

    .sticky-cta .btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.5rem;
        white-space: normal;
        line-height: 1.2;
    }

    .gallery-item {
        width: 280px;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Small Mobile responsive adjustments */
@media (max-width: 480px) {
    .steps-grid {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .step-card {
        padding: 0.75rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .how-it-works {
        padding: var(--spacing-md) 0;
    }

    .contact-btn {
        margin-right: 0;
        /* Fixed margin */
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0;
    }

    .logo-img {
        height: 40px;
    }

    .top-bar {
        padding: 0.5rem 0;
    }

    .btn-outline {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .service-area {
        display: none;
        /* Hide on very small screens to save space */
    }

    /* Fix Form Wrapper on Mobile */
    .form-wrapper {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
        /* Slightly smaller radius */
    }

    .lead-section .container {
        padding: 0 1rem;
    }

    /* Fix Sticky CTA Stacking */
    .sticky-cta {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
        height: auto;
    }

    .sticky-cta .btn {
        width: 100%;
        margin: 0;
    }

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }
}