@charset "UTF-8";

/* ==========================================================================
   Global CSS Variables - Kamperen Theme Colors
   ========================================================================== */
:root {
    --qode-main-color: #345E41;        /* Main Green */
    --qode-secondary-color: #4CAF50;   /* Lighter Green */
    --qode-accent-color: #FF9800;      /* Orange Accent */
    --qode-header-light-color: #fff;
    --qode-header-light-hover-color: #E8F5E9;
    --qode-hover-color: #2d5037;
    --qode-text-color: #333333;
    --qode-background-color: #fff;
    --qode-border-color: #e0e0e0;
    --qode-shadow-sm: 0 2px 8px rgba(52, 94, 65, 0.1);
    --qode-shadow-md: 0 4px 16px rgba(52, 94, 65, 0.15);
    --qode-shadow-lg: 0 8px 32px rgba(52, 94, 65, 0.2);
}

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

body {
    font-family: "Prompt", "Arial", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 400;
    color: var(--qode-text-color);
    background-color: var(--qode-background-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Layout Structure
   ========================================================================== */
#qodef-page-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#qodef-page-outer {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#qodef-page-inner {
    position: relative;
    padding: 150px 0 154px; /* Increased top padding for sticky header */
    flex: 1;
}

@media only screen and (max-width: 1366px) {
    #qodef-page-inner {
        padding: 106px 0 100px;
    }
}

@media only screen and (max-width: 680px) {
    #qodef-page-inner {
        padding: 140px 0 60px; /* Extra padding for sticky header */
    }
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
#qodef-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-hover-color) 100%);
    color: var(--qode-header-light-color);
    z-index: 1000;
    box-shadow: var(--qode-shadow-md);
}

#qodef-page-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 86px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.qodef-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Pricing Pages: Make content full width */
#qodef-page-content .qodef-content-grid {
    display: block;
    align-items: flex-start;
}

#qodef-page-content .qodef-main-content {
    width: 100%;
    max-width: 100%;
}

/* Logo Styles */
.qodef-header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.qodef-header-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
}

/* Navigation Styles */
.qodef-header-navigation {
    display: flex;
    align-items: center;
}

.qodef-header-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
    align-items: center;
}

.qodef-header-navigation li {
    margin: 0;
    position: relative;
}

.qodef-header-navigation a {
    color: var(--qode-header-light-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

.qodef-header-navigation a:hover,
.qodef-header-navigation a.active {
    color: var(--qode-header-light-hover-color);
}

.qodef-menu-item-text {
    display: inline-block;
}

/* ==========================================================================
   Page Title Section
   ========================================================================== */
.qodef-page-title {
    position: relative;
    background-color: var(--qode-main-color);
    color: var(--qode-header-light-color);
    padding: 80px 0;
    margin-top: 86px; /* Account for fixed header */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.qodef-page-title.qodef-m {
    text-align: center;
}

.qodef-m-inner {
    position: relative;
    z-index: 1;
}

.qodef-m-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.qodef-m-title {
    font-family: "Prompt", sans-serif;
    font-weight: 600; /* Increased weight */
    color: var(--qode-header-light-color);
    font-size: 56px; /* Increased from 50px */
    line-height: 1.3em;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Added text shadow */
}

.qodef-m-subtitle {
    font-size: 22px; /* Increased from 20px */
    font-weight: 400; /* Increased from 300 */
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

@media only screen and (max-width: 680px) {
    .qodef-m-title {
        font-size: 40px;
    }
    .qodef-m-subtitle {
        font-size: 18px;
    }
}

/* ==========================================================================
   Main Content
   ========================================================================== */
#qodef-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.qodef-grid {
    display: block;
    width: 100%;
}

.qodef-grid-inner {
    width: 100%;
}

.qodef-page-content-section {
    width: 100%;
}

.qodef-col--12 {
    width: 100%;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    padding: 50px 0;
}

.content-section h2 {
    font-family: "Prompt", sans-serif;
    font-weight: 600;
    color: var(--qode-main-color);
    font-size: 46px;
    line-height: 1.3em;
    margin: 0 0 45px 0;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--qode-main-color); /* Thicker, colored border */
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--qode-accent-color);
}

.content-section h2 i {
    margin-right: 10px;
    color: var(--qode-hover-color);
}

.content-section h3 {
    font-family: "Prompt", sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 36px;
    line-height: 1.4em;
    margin: 35px 0 25px 0;
}

.content-section h4 {
    font-family: "Prompt", sans-serif;
    font-weight: 600; /* Increased weight */
    color: #000;
    font-size: 26px; /* Increased from 22px */
    line-height: 1.5em;
    margin: 28px 0 18px 0;
}

.content-section p {
    font-size: 19px;
    line-height: 1.9em; /* Increased for better readability */
    margin: 18px 0;
    color: var(--qode-text-color);
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 30px;
    line-height: 1.73em;
}

.content-section li {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.73em;
}

.content-section strong {
    font-weight: 500;
    color: var(--qode-main-color);
}

.content-section a {
    color: var(--qode-main-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--qode-hover-color);
    text-decoration: underline;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-intro {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px; /* Increased padding */
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--qode-border-color);
    border-radius: 12px; /* Increased border radius */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother animation */
    box-shadow: var(--qode-shadow-sm);
}

.feature-item:hover {
    box-shadow: var(--qode-shadow-lg);
    transform: translateY(-8px); /* Added lift effect */
    border-color: var(--qode-main-color);
}

.feature-item i {
    font-size: 48px;
    color: var(--qode-main-color);
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    margin: 15px 0;
    font-size: 20px;
}

.feature-item p {
    margin: 10px 0;
    font-size: 14px;
}

.detailed-about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 16px 32px; /* Increased padding */
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    color: #ffffff !important; /* Explicit white */
    border-radius: 8px;
    font-weight: 600; /* Increased weight */
    font-size: 18px; /* Increased font size */
    transition: all 0.3s ease;
    box-shadow: var(--qode-shadow-md);
    text-decoration: none;
}

.detailed-about-link:hover {
    background: linear-gradient(135deg, var(--qode-hover-color) 0%, var(--qode-main-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--qode-shadow-lg);
    text-decoration: none;
    color: #ffffff !important; /* Ensure white on hover */
}

/* Campings Grid */
.campings-grid {
    display: grid;
    grid-template-columns: 1fr; /* One card per row */
    gap: 50px;
    margin: 50px 0;
}

.camping-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--qode-border-color);
    border-radius: 12px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--qode-shadow-sm);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    overflow: hidden;
}

.camping-item:hover {
    box-shadow: var(--qode-shadow-lg);
    transform: translateY(-10px);
    border-color: var(--qode-main-color);
}

.camping-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.camping-link {
    margin-top: auto;
    padding-top: 20px;
}

.camping-content h3 {
    color: var(--qode-main-color);
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    border-bottom: 4px solid var(--qode-main-color);
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Removed icon from camping h3 */

.camping-subtitle {
    font-weight: 600;
    color: var(--qode-main-color);
    font-size: 20px;
    font-style: italic;
    margin: 0 0 auto 0; /* Push details to bottom */
    line-height: 1.8em;
    padding: 15px;
    background: rgba(52, 94, 65, 0.05);
    border-left: 4px solid var(--qode-accent-color);
    border-radius: 4px;
}

.camping-details {
    margin-top: auto; /* Push to bottom */
    padding-top: 25px;
}

.camping-details p {
    margin: 18px 0;
    font-size: 16px;
    line-height: 1.8em;
    padding-left: 25px;
    position: relative;
}

.camping-details p::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--qode-secondary-color);
    font-size: 18px;
}

.camping-details strong {
    color: var(--qode-main-color);
    font-weight: 600;
    font-size: 17px;
}

/* Pricing Section */
.pricing-info {
    background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
    padding: 35px 40px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 6px solid var(--qode-accent-color);
    box-shadow: var(--qode-shadow-md);
    position: relative;
    overflow: hidden;
}

.pricing-info::before {
    content: '\f140';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    opacity: 0.2;
}

.pricing-info p {
    margin: 15px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--qode-text-color);
    position: relative;
    z-index: 1;
}

.pricing-tables {
    display: grid;
    grid-template-columns: 1fr; /* One card per row for 3 camps */
    gap: 50px;
    margin: 50px 0;
}

.camping-pricing {
    background-color: #fff;
    border: 1px solid var(--qode-border-color);
    border-radius: 8px;
    padding: 35px;
    border-top: 4px solid var(--qode-main-color);
}

.camping-pricing h3 {
    text-align: center;
    color: var(--qode-main-color);
    font-size: 24px;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--qode-border-color);
}

.pricing-table {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f4 100%);
    border-left: 5px solid var(--qode-main-color);
    padding: 25px 22px;
    margin: 18px 0;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(52, 94, 65, 0.1);
    position: relative;
}

.pricing-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.pricing-item:hover::before {
    transform: scaleY(1);
}

.pricing-item:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 94, 65, 0.2);
    border-left-color: var(--qode-accent-color);
}

.pricing-item h4 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #000;
    font-weight: 600;
    line-height: 1.4em;
}

.pricing-item .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--qode-main-color);
    margin: 12px 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pricing-item .capacity {
    font-size: 16px;
    color: var(--qode-text-color);
    margin: 8px 0;
    font-weight: 500;
    background: rgba(52, 94, 65, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.additional-services {
    margin: 35px 0;
    padding: 28px;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid var(--qode-border-color);
    box-shadow: 0 4px 12px rgba(52, 94, 65, 0.08);
}

.additional-services h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--qode-main-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional-services h4::before {
    content: '\f0eb';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    margin-right: 10px;
    color: var(--qode-accent-color);
}

.additional-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.additional-services li {
    padding: 14px 0;
    border-bottom: 2px solid var(--qode-border-color);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 30px;
    position: relative;
}

.additional-services li::before {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--qode-accent-color);
    font-size: 18px;
}

.additional-services li:hover {
    padding-left: 40px;
    color: var(--qode-main-color);
}

.additional-services li:last-child {
    border-bottom: none;
}

.pricing-link {
    text-align: center;
    margin-top: 25px;
}

.detailed-pricing-link {
    display: inline-block;
    padding: 16px 35px; /* Increased padding */
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    color: #ffffff !important; /* Explicit white */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600; /* Increased weight */
    font-size: 17px; /* Increased font size */
    transition: all 0.3s ease;
    box-shadow: var(--qode-shadow-md);
}

.detailed-pricing-link:hover {
    background: linear-gradient(135deg, var(--qode-hover-color) 0%, var(--qode-main-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--qode-shadow-lg);
    text-decoration: none;
    color: #ffffff !important; /* Ensure white on hover */
}

.booking-info {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-hover-color) 100%);
    border-radius: 16px;
    box-shadow: var(--qode-shadow-lg);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '\f095';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 64px;
    opacity: 0.15;
}

.booking-info h3 {
    color: #ffffff;
    margin: 0 0 30px 0;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.booking-info ul {
    margin: 20px 0 20px 35px;
    position: relative;
    z-index: 1;
}

.booking-info ul li {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0;
    padding-left: 15px;
    line-height: 1.8em;
    position: relative;
}

.booking-info ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -25px;
    color: var(--qode-accent-color);
    font-size: 24px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.contact-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    border: 3px solid var(--qode-border-color);
    border-radius: 16px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--qode-shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 50%, var(--qode-accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    box-shadow: 0 12px 35px rgba(52, 94, 65, 0.25);
    transform: translateY(-8px);
    border-color: var(--qode-main-color);
}

.contact-item h3 {
    color: var(--qode-main-color);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item h3 i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--qode-main-color), var(--qode-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-method-single,
.bank-account-single,
.season-info {
    margin-top: 15px;
}

.contact-method-single p,
.bank-account-single p,
.season-info p {
    margin: 12px 0;
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 500;
}

/* Reservation Form */
.reservation-form-container {
    margin: 50px 0;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    border: 3px solid var(--qode-main-color);
    border-radius: 20px;
    box-shadow: var(--qode-shadow-lg);
    position: relative;
    overflow: hidden;
}

.reservation-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 94, 65, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.reservation-form-container h3 {
    color: var(--qode-main-color);
    margin: 0 0 40px 0;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--qode-main-color);
    z-index: 1;
}

.reservation-form-container h3::before {
    content: '\f303';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 15px;
    font-size: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--qode-text-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--qode-border-color);
    border-radius: 10px;
    font-size: 17px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--qode-main-color);
    box-shadow: 0 4px 15px rgba(52, 94, 65, 0.2);
    transform: translateY(-2px);
    background-color: #fafafa;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--qode-secondary-color);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    color: #ffffff !important;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    box-shadow: var(--qode-shadow-md);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--qode-hover-color) 0%, var(--qode-main-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--qode-shadow-lg);
    color: #ffffff !important;
}

/* Footer */
#qodef-page-footer {
    background-color: #1a1a1a;
    color: #ccc;
    margin-top: auto;
}

#qodef-page-footer-top-area {
    padding: 60px 0 40px;
}

#qodef-page-footer-top-area-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

#qodef-page-footer-top-area .qodef-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.7em;
    margin: 12px 0;
    color: #ccc;
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget ul li {
    margin: 10px 0;
}

.footer-widget a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--qode-header-light-color);
}

#qodef-page-footer-bottom-area {
    border-top: 1px solid #333;
    padding: 25px 0;
}

#qodef-page-footer-bottom-area-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

#qodef-page-footer-bottom-area p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media only screen and (max-width: 1024px) {
    #qodef-page-header-inner,
    .qodef-content-grid,
    #qodef-page-content,
    .qodef-m-content {
        padding: 0 30px;
    }
    
    .camping-item {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .camping-image {
        border-radius: 12px 12px 0 0;
    }
    
    .camping-photo {
        min-height: 250px;
    }
    
    .pricing-table {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
    }
    
    .campings-grid,
    .pricing-tables,
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:checked ~ .mobile-menu-button span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle:checked ~ .mobile-menu-button span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:checked ~ .mobile-menu-button span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media only screen and (max-width: 768px) {
    /* Show hamburger button */
    .mobile-menu-button {
        display: flex;
    }
    
    /* Hide navigation by default */
    .qodef-header-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-hover-color) 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--qode-shadow-lg);
        z-index: 1000;
    }
    
    /* Show navigation when checked */
    .mobile-menu-toggle:checked ~ .qodef-header-navigation {
        max-height: 500px;
        padding: 20px 0;
    }
    
    #qodef-page-header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 15px 20px;
        position: relative;
    }
    
    .qodef-header-logo-link img,
    .qodef-header-logo img {
        height: 45px;
    }
    
    .qodef-header-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 20px;
        margin: 0;
    }
    
    .qodef-header-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .qodef-header-navigation li:last-child {
        border-bottom: none;
    }
    
    .qodef-header-navigation a {
        display: block;
        padding: 15px 0;
        width: 100%;
        color: #ffffff !important;
        font-size: 18px;
    }
    
    /* Note: Comprehensive mobile styles are in later media query at end of file */
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.clear {
    clear: both;
}

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

/* ==========================================================================
   Additional Styles for Better Visual Appeal
   ========================================================================== */
.qodef-content-full-width {
    width: 100%;
}

.entry-title {
    font-family: inherit;
}

qodef-layout--template .qodef-grid-inner {
    display: block;
}

/* ==========================================================================
   Image Styles
   ========================================================================== */
.camping-image {
    width: 100%;
    height: 100%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: none;
}

.pricing-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--qode-shadow-md);
}

.camping-photo {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.pricing-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.camping-photo:hover,
.pricing-photo:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 768px) {
    .camping-photo,
    .pricing-photo {
        height: 250px;
    }
}

/* ==========================================================================
   Additional Styles for About and Pricing Pages
   ========================================================================== */
.qodef-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.qodef-header-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.qodef-page-title-inner {
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-hover-color) 100%);
    color: var(--qode-header-light-color);
    padding: 80px 0;
    text-align: center;
    margin-top: 86px; /* Account for fixed header */
}

.qodef-page-title-text {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.qodef-page-title-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.about-detailed-content {
    font-size: 17px;
    line-height: 1.9em;
}

.about-detailed-content p {
    margin: 20px 0;
}

.pricing-navigation {
    display: none; /* Hide old sidebar navigation */
}

/* New bottom navigation for pricing pages */
.pricing-navigation-bottom {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
    border-top: 3px solid var(--qode-main-color);
    border-bottom: 3px solid var(--qode-main-color);
    margin: 60px 0 0 0;
    box-shadow: var(--qode-shadow-md);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #fff;
    color: var(--qode-text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--qode-border-color);
}

.nav-tab:hover,
.nav-tab.active {
    background-color: var(--qode-main-color);
    color: #ffffff !important;
    border-color: var(--qode-main-color);
    transform: translateY(-2px);
    box-shadow: var(--qode-shadow-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7em;
    color: #ccc;
    margin: 12px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

/* Pricing Table Styles */
.pricing-table-wrapper {
    margin: 30px 0;
}

.pricing-table-full {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: var(--qode-shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table-full th {
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    color: #ffffff !important;
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
}

.pricing-table-full td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--qode-border-color);
    font-size: 16px;
}

.pricing-table-full tr:hover {
    background-color: #f8f9fa;
}

.pricing-table-full tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive Improvements */
@media only screen and (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 16px;
    }
    
    .qodef-m-title,
    .qodef-page-title-text {
        font-size: 36px;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .content-section h3 {
        font-size: 28px;
    }
    
    .content-section h4 {
        font-size: 22px;
    }
    
    .nav-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-tab {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-table-full {
        font-size: 14px;
    }
    
    .pricing-table-full th,
    .pricing-table-full td {
        padding: 12px;
        font-size: 14px;
    }
}

.pricing-header-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--qode-shadow-lg);
}

.page-header-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media only screen and (max-width: 768px) {
    .page-header-photo {
        height: 250px;
    }
}

/* Image Gallery Styles */
.camping-gallery {
    margin: 40px 0;
    padding: 30px 0;
}

.camping-gallery h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--qode-main-color);
    margin: 0 0 25px 0;
    text-align: center;
    border-bottom: 3px solid var(--qode-main-color);
    padding-bottom: 15px;
}

.camping-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.camping-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--qode-shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.camping-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--qode-shadow-lg);
}

.camping-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.camping-gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.camping-gallery-item:hover::after {
    opacity: 1;
}

.camping-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 94, 65, 0);
    transition: background 0.3s ease;
}

.camping-gallery-item:hover::before {
    background: rgba(52, 94, 65, 0.4);
}

@media only screen and (max-width: 768px) {
    .camping-gallery-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--qode-main-color) #f0f0f0;
    }
    
    .camping-gallery-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .camping-gallery-grid::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }
    
    .camping-gallery-grid::-webkit-scrollbar-thumb {
        background: var(--qode-main-color);
        border-radius: 10px;
    }
    
    .camping-gallery-item {
        flex: 0 0 280px !important;
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
        aspect-ratio: 4/3;
    }
    
    .camping-gallery h3 {
        font-size: 24px;
    }
}

/* Pricing Pages Specific Styles */
.pricing-note {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid var(--qode-accent-color);
    border-radius: 12px;
    padding: 25px 35px;
    margin: 30px 0 40px 0;
    box-shadow: var(--qode-shadow-md);
}

.pricing-note p {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.pricing-note p:first-child {
    margin-top: 0;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note strong {
    color: var(--qode-main-color);
    font-weight: 700;
}

.pricing-category {
    margin: 50px 0;
}

.pricing-category h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--qode-main-color);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--qode-accent-color);
}

.pricing-category h2 i {
    color: var(--qode-accent-color);
    font-size: 28px;
}

.detailed-pricing-table {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--qode-shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 1px;
    background: var(--qode-border-color);
}

.pricing-row.header {
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.pricing-row.header > div {
    background: transparent;
    padding: 20px 18px;
}

.pricing-row:not(.header) {
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.pricing-row:not(.header):hover {
    background: #f8f9fa;
}

.pricing-row > div {
    padding: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.pricing-row .service-name {
    font-weight: 600;
    color: #333;
    font-size: 17px;
}

.pricing-row .price {
    font-weight: 700;
    color: var(--qode-main-color);
    font-size: 18px;
    justify-content: center;
}

.pricing-row.header .service-name,
.pricing-row.header .season-low,
.pricing-row.header .season-high,
.pricing-row.header .season-low-eur,
.pricing-row.header .season-high-eur {
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

/* Mobile Pricing Cards */
.mobile-pricing-cards {
    display: none;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Show mobile cards on tablets and below */
@media only screen and (max-width: 1024px) {
    .mobile-pricing-cards {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }
    
    .mobile-pricing-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }
}

.mobile-pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--qode-border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--qode-shadow-sm);
    transition: all 0.3s ease;
}

.mobile-pricing-card:hover {
    box-shadow: var(--qode-shadow-md);
    transform: translateY(-5px);
    border-color: var(--qode-main-color);
}

.mobile-pricing-card h4 {
    font-size: 20px;
    color: var(--qode-main-color);
    margin: 0 0 20px 0;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--qode-border-color);
}

.mobile-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mobile-price-item {
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #ffffff;
}

.mobile-price-item .price-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 500;
}

.mobile-price-item .price-value {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-price-item .price-value .currency {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive: Show mobile cards AND table in mobile-friendly format */
@media only screen and (max-width: 1024px) {
    /* Show mobile cards */
    .mobile-pricing-cards {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .mobile-pricing-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* ALSO show table in mobile-friendly stacked card format */
    .detailed-pricing-table {
        display: block !important;
        background: transparent;
    }
    
    .pricing-row {
        display: block !important;
        background: #ffffff !important;
        border: 2px solid var(--qode-border-color) !important;
        border-radius: 12px !important;
        margin-bottom: 15px !important;
        padding: 15px !important;
        box-shadow: var(--qode-shadow-sm) !important;
    }
    
    .pricing-row.header {
        display: none !important; /* Hide header row on mobile */
    }
    
    .pricing-row > div {
        display: block !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid #f0f0f0;
        text-align: left !important;
    }
    
    .pricing-row > div:last-child {
        border-bottom: none;
    }
    
    .pricing-row .service-name {
        font-weight: 700 !important;
        font-size: 16px !important;
        color: var(--qode-main-color) !important;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--qode-accent-color);
    }
    
    .pricing-row .service-name::before {
        content: "✓ ";
        color: var(--qode-main-color);
    }
    
    .pricing-row > div.price {
        display: block !important;
        width: 100% !important;
        margin: 8px 0 !important;
        padding: 8px 15px !important;
        background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%) !important;
        color: #ffffff !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .pricing-row > div:nth-child(2)::before {
        content: "Нисък (лв): ";
        font-weight: 600;
        color: #ffffff !important;
    }
    
    .pricing-row > div:nth-child(3)::before {
        content: "Висок (лв): ";
        font-weight: 600;
        color: #ffffff !important;
    }
    
    .pricing-row > div:nth-child(4)::before {
        content: "Нисък (€): ";
        font-weight: 600;
        color: #ffffff !important;
    }
    
    .pricing-row > div:nth-child(5)::before {
        content: "Висок (€): ";
        font-weight: 600;
        color: #ffffff !important;
    }
}

/* Seasonal Pricing */
.seasonal-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.seasonal-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 41%);
    border: 2px solid var(--qode-border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--qode-shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.seasonal-item:hover {
    box-shadow: var(--qode-shadow-md);
    transform: translateY(-5px);
    border-color: var(--qode-main-color);
}

.seasonal-item h3 {
    font-size: 20px;
    color: var(--qode-main-color);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.seasonal-item .price-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--qode-main-color);
    background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Additional Services Grid */
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--qode-border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--qode-shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.service-item:hover {
    box-shadow: var(--qode-shadow-md);
    transform: translateY(-3px);
    border-color: var(--qode-main-color);
}

.service-item .service-name {
    font-size: 17px;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.service-item .service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--qode-main-color);
    white-space: nowrap;
}

/* Discounts Section */
.discounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.discount-item {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid var(--qode-accent-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--qode-shadow-md);
}

.discount-item h3 {
    font-size: 22px;
    color: var(--qode-main-color);
    margin: 0 0 20px 0;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--qode-accent-color);
}

.discount-item ul {
    margin: 0;
    padding-left: 25px;
    list-style: none;
}

.discount-item ul li {
    font-size: 17px;
    color: #333;
    margin: 15px 0;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.discount-item ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--qode-main-color);
    font-size: 16px;
}

.discount-item ul li strong {
    color: var(--qode-main-color);
    font-weight: 700;
}

/* ==========================================================================
   Comprehensive Mobile Responsive Overrides (768px and below)
   ========================================================================== */
@media only screen and (max-width: 768px) {
    /* Base typography adjustments */
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 16px;
        line-height: 1.6em;
    }
    
    /* Reduce all container padding significantly */
    #qodef-page-header-inner,
    .qodef-content-grid,
    #qodef-page-content,
    .qodef-container,
    .qodef-page-title-inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Header adjustments */
    #qodef-page-header-inner {
        height: 60px;
        padding: 10px 15px !important;
    }
    
    .qodef-header-logo-link img,
    .qodef-header-logo img {
        height: 40px;
    }
    
    /* Page padding reduction */
    #qodef-page-inner {
        padding: 75px 0 30px !important;
    }
    
    /* Page title */
    .qodef-page-title {
        padding: 30px 0 !important;
    }
    
    .qodef-m-title {
        font-size: 26px !important;
        line-height: 1.2em;
    }
    
    .qodef-m-subtitle {
        font-size: 15px !important;
    }
    
    /* Content sections - much less padding */
    .content-section {
        padding: 20px 0 !important;
        margin-bottom: 30px;
    }
    
    .content-section h2 {
        font-size: 24px !important;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .content-section h3 {
        font-size: 20px !important;
        margin: 18px 0 12px 0;
    }
    
    .content-section h4 {
        font-size: 18px !important;
        margin: 12px 0 10px 0;
    }
    
    .content-section p {
        font-size: 15px !important;
        line-height: 1.6em;
        margin: 10px 0;
    }
    
    /* Card padding reduction */
    .feature-item,
    .camping-pricing,
    .booking-info,
    .contact-info,
    .reservation-form-container,
    .about-intro {
        padding: 20px 15px !important;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Camping items */
    .camping-content {
        padding: 20px 15px !important;
    }
    
    .camping-item {
        grid-template-columns: 1fr !important;
    }
    
    .camping-image {
        border-radius: 12px 12px 0 0 !important;
    }
    
    .camping-photo {
        min-height: 220px !important;
    }
    
    /* Pricing items */
    .pricing-item {
        padding: 15px !important;
        margin-bottom: 12px;
    }
    
    .pricing-item h4 {
        font-size: 16px !important;
    }
    
    /* Mobile pricing: Show both cards and table (table as fallback) */
    .mobile-pricing-cards {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 15px;
        margin-top: 20px;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .mobile-pricing-card {
        padding: 18px 15px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border: 2px solid var(--qode-border-color) !important;
        border-radius: 12px !important;
        box-shadow: var(--qode-shadow-sm) !important;
    }
    
    /* Also show table in mobile-friendly format as backup */
    .detailed-pricing-table {
        display: block !important;
    }
    
    .pricing-row {
        display: block !important;
        background: #ffffff !important;
        border: 2px solid var(--qode-border-color) !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
        padding: 15px !important;
        box-shadow: var(--qode-shadow-sm) !important;
    }
    
    .pricing-row.header {
        display: none !important;
    }
    
    .pricing-row > div {
        display: block !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #f0f0f0;
        text-align: left !important;
        width: 100% !important;
    }
    
    .pricing-row > div:last-child {
        border-bottom: none;
    }
    
    .pricing-row .service-name {
        font-weight: 700 !important;
        font-size: 15px !important;
        color: var(--qode-main-color) !important;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--qode-accent-color);
    }
    
    .pricing-row > div.price {
        display: block !important;
        width: 100% !important;
        margin: 8px 0 !important;
        padding: 8px 12px !important;
        background: linear-gradient(135deg, var(--qode-main-color) 0%, var(--qode-secondary-color) 100%) !important;
        color: #ffffff !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        border-bottom: none !important;
        text-align: center !important;
    }
    
    .pricing-row > div:nth-child(2)::before {
        content: "Нисък (лв): ";
        font-weight: 600;
        color: #ffffff !important;
        margin-right: 5px;
    }
    
    .pricing-row > div:nth-child(3)::before {
        content: "Висок (лв): ";
        font-weight: 600;
        color: #ffffff !important;
        margin-right: 5px;
    }
    
    .pricing-row > div:nth-child(4)::before {
        content: "Нисък (€): ";
        font-weight: 600;
        color: #ffffff !important;
        margin-right: 5px;
    }
    
    .pricing-row > div:nth-child(5)::before {
        content: "Висок (€): ";
        font-weight: 600;
        color: #ffffff !important;
        margin-right: 5px;
    }
    
    .mobile-pricing-card h4 {
        font-size: 16px !important;
        margin-bottom: 12px;
    }
    
    .mobile-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .mobile-price-item {
        padding: 12px 10px !important;
    }
    
    .mobile-price-item .price-label {
        font-size: 11px !important;
        margin-bottom: 6px;
    }
    
    .mobile-price-item .price-value {
        font-size: 18px !important;
    }
    
    /* Pricing tables - single column */
    .pricing-table {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Pricing note and categories */
    .pricing-note {
        padding: 18px 15px !important;
        margin: 20px 0 !important;
    }
    
    .pricing-note p {
        font-size: 14px !important;
        margin: 8px 0;
    }
    
    .pricing-category {
        margin: 30px 0;
    }
    
    .pricing-category h2 {
        font-size: 20px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .pricing-category h2 i {
        font-size: 18px;
    }
    
    /* Seasonal, services, discounts */
    .seasonal-pricing,
    .additional-services-grid,
    .discounts {
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin-top: 20px;
    }
    
    .seasonal-item,
    .service-item,
    .discount-item {
        padding: 18px 15px !important;
    }
    
    .seasonal-item h3 {
        font-size: 16px !important;
        margin-bottom: 12px;
    }
    
    .seasonal-item .price-large {
        font-size: 20px !important;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .service-item .service-name {
        font-size: 14px !important;
    }
    
    .service-item .service-price {
        font-size: 16px !important;
    }
    
    .discount-item h3 {
        font-size: 18px !important;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .discount-item ul li {
        font-size: 14px !important;
        margin: 10px 0;
    }
    
    /* Buttons */
    .detailed-about-link,
    .detailed-pricing-link,
    .submit-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    /* Navigation bottom */
    .pricing-navigation-bottom {
        padding: 25px 0 !important;
        margin: 30px 0 0 0 !important;
    }
    
    .nav-tabs {
        padding: 0 15px !important;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .nav-tab {
        padding: 10px 15px !important;
        font-size: 13px !important;
        flex: 1 1 calc(50% - 4px);
        min-width: calc(50% - 4px);
    }
    
    /* Images */
    .camping-photo,
    .pricing-photo,
    .page-header-photo {
        height: 200px !important;
        min-height: 200px !important;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .reservation-form-container {
        padding: 20px 15px !important;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 12px 15px !important;
        font-size: 15px !important;
    }
}
