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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d4a2b;
    background: linear-gradient(135deg, #f5f2e8 0%, #e8f5e8 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}



.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover {
    color: #a8c47a;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

/* Scrolled navbar styles */
.navbar.scrolled .company-name {
    color: #2d4a2b;
    text-shadow: none;
}

.navbar.scrolled .nav-links a {
    color: #2d4a2b;
    text-shadow: none;
}

.navbar.scrolled .nav-links a:hover {
    color: #6b8e3d;
    text-shadow: none;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
}

.lang-btn.active,
.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

/* Scrolled language switcher styles */
.navbar.scrolled .lang-btn {
    border-color: #2d4a2b;
    color: #2d4a2b;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .lang-btn.active,
.navbar.scrolled .lang-btn:hover {
    background: #6b8e3d;
    color: white;
    border-color: #6b8e3d;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero .container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 auto 1rem auto;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center !important;
    max-width: 600px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0;
}

.hero-description {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 0;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 61, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 61, 0.4);
}

/* Countdown Timer Styles */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.countdown-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.countdown-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    min-width: 80px;
    backdrop-filter: blur(5px);
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.time-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.launch-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.8rem;
    }

    .time-value {
        font-size: 2rem;
    }

    .countdown-title {
        font-size: 1.5rem;
    }

    .countdown-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .countdown-mascot {
        height: 50px;
        width: 50px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d4a2b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.service-card {
    background: #f5f2e8;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-card p {
    font-weight: 500;
    color: #2d4a2b;
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(107, 142, 61, 0.05) 0%, rgba(168, 196, 122, 0.05) 100%);
    position: relative;
}

.booking-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    z-index: -1;
}

.booking-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.contact-form-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d4a2b;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #6b8e3d;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 142, 61, 0.1);
}

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

.contact-form label {
    display: block;
    font-weight: 500;
    color: #2d4a2b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6b8e3d;
    box-shadow: 0 0 0 3px rgba(107, 142, 61, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 61, 0.3);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 61, 0.4);
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 142, 61, 0.1);
    text-align: center;
}

.success-message h2 {
    color: #2d4a2b;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    color: #6b8e3d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-card.featured {
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 142, 61, 0.2);
    border-color: #6b8e3d;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #6b8e3d;
}

.service-card.featured .price {
    color: white;
}

/* About Section */
.service-area {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(107, 142, 61, 0.02) 0%, rgba(168, 196, 122, 0.02) 100%);
}

.service-area h2 {
    text-align: center;
    color: #2d4a2b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.service-area p {
    text-align: center;
    color: #5a7c32;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.map-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    padding: 10px;
}

.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(107, 142, 61, 0.05) 0%, rgba(168, 196, 122, 0.05) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about h2 {
    font-size: 2.5rem;
    color: #2d4a2b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about p {
    font-size: 1.2rem;
    color: #2d4a2b;
    line-height: 1.8;
    font-weight: 500;
}

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

.about-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(107, 142, 61, 0.2);
}

/* File Upload Styles */
.upload-zone {
    border: 2px dashed #6b8e3d;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover,
.upload-zone.highlight {
    border-color: #4a6b2a;
    background: #e8f5e8;
}

.upload-zone.dragover {
    border-color: #2d4a2b;
    background: #d4edda;
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    min-height: 100px;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 2.5rem;
    color: #2d4a2b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact p {
    font-size: 1.2rem;
    color: #2d4a2b;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.booking-page {
    padding: 120px 0 80px;
}

.booking h1 {
    font-size: 2.5rem;
    color: #2d4a2b;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-subtitle {
    font-size: 1.3rem;
    color: #5a7c32;
    margin-bottom: 3rem;
    text-align: center;
}

.customer-type-selection {
    margin-bottom: 3rem;
}

.customer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.customer-type-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #a8c47a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customer-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 142, 61, 0.2);
    border-color: #6b8e3d;
}

.customer-type-card h3 {
    font-size: 1.5rem;
    color: #2d4a2b;
    margin-bottom: 1rem;
}

.customer-type-card p {
    color: #5a7c32;
    margin-bottom: 1.5rem;
}

.customer-type-btn {
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customer-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 61, 0.3);
}

/* Form Styles */
.booking-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    text-align: center;
    color: #2d4a2b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #a8c47a;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2d4a2b;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #6b8e3d;
    box-shadow: 0 0 0 3px rgba(107, 142, 61, 0.2);
    background: white;
}

.booking-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.submit-button {
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 61, 0.3);
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 61, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.success-message h2 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    color: #5a7c32;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Prices Page Styles */
.prices-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(107, 142, 61, 0.05) 0%, rgba(168, 196, 122, 0.05) 100%);
    position: relative;
}

.prices-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    z-index: -1;
}

.prices-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.prices-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d4a2b;
    margin-bottom: 1rem;
    text-align: center;
}

.prices-subtitle {
    font-size: 1.2rem;
    color: #6b8e3d;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(107, 142, 61, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(107, 142, 61, 0.15);
    border-color: #6b8e3d;
}

.featured-pricing {
    transform: scale(1.05);
    border-color: #6b8e3d;
    box-shadow: 0 15px 35px rgba(107, 142, 61, 0.2);
}

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

.popular-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    padding: 5px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(5deg);
    box-shadow: 0 2px 10px rgba(107, 142, 61, 0.3);
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.featured-pricing .pricing-header {
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d4a2b;
}

.featured-pricing .pricing-header h3 {
    color: white;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 0.2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #6b8e3d;
}

.featured-pricing .amount {
    color: white;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.2rem;
    opacity: 0.8;
}

.savings {
    background: #28a745;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-content {
    padding: 2rem;
}

.features-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #2d4a2b;
    border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #6b8e3d;
}

.pricing-note p {
    margin: 0;
    font-style: italic;
    color: #5a7c32;
    font-size: 0.9rem;
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7c32 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 61, 0.3);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 61, 0.4);
}

.additional-services {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 142, 61, 0.1);
}

.additional-services h2 {
    text-align: center;
    color: #2d4a2b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #6b8e3d;
    transform: translateY(-3px);
}

.service-item h4 {
    color: #2d4a2b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-price {
    color: #6b8e3d;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #5a7c32;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-contact {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 142, 61, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-contact h3 {
    color: #2d4a2b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pricing-contact p {
    color: #6b8e3d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #2d4a2b;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        position: fixed;
        background: transparent;
        backdrop-filter: blur(10px);
    }

    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.9);
    }

    .nav-brand {
        justify-content: center;
        gap: 0.6rem;
    }

    .nav-logo,
    .pug-mascot {
        height: 60px;
        width: 60px;
    }

    .company-name {
        font-size: 1.3rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        font-size: 0.9rem;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero {
        padding-top: 160px;
        min-height: calc(100vh - 80px);
        padding-bottom: 40px;
    }

    .hero .container {
        padding: 2rem 1rem 3rem 1rem;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

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

    .countdown-container {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }

    .countdown-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .countdown-timer {
        gap: 0.8rem;
        justify-content: center;
    }

    .time-unit {
        min-width: 60px;
        padding: 0.8rem 0.5rem;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-label {
        font-size: 0.8rem;
    }

    .services {
        padding: 60px 0;
    }

    .services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .service-image {
        height: 180px;
    }

    .service-area {
        padding: 60px 0;
    }

    .service-area h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-area p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .map-container {
        margin: 1.5rem 0;
        padding: 5px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1.1rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .subscription-form {
        margin: 0 15px 2rem 15px !important;
        padding-bottom: 2rem !important;
    }

    .contact {
        padding: 60px 0 80px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .customer-options {
        grid-template-columns: 1fr;
        max-width: none;
        margin: 0 15px;
    }

    .form-actions {
        flex-direction: column;
    }

    .booking-form-container {
        padding: 2rem 1rem;
        margin: 0 15px;
    }

    .contact-form-container {
        padding: 2rem 1rem;
        margin: 0 15px;
    }

    .contact-form-section {
        padding: 100px 0 60px;
    }

    .contact-form-section h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 15px 3rem;
    }

    .pricing-card {
        margin: 0;
    }

    .featured-pricing {
        transform: none;
    }

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

    .additional-services {
        margin: 0 15px 3rem;
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .pricing-contact {
        margin: 0 15px;
        padding: 2rem 1rem;
    }

    .prices-section {
        padding: 100px 0 60px;
    }

    .prices-section h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .prices-subtitle {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 240px;
        min-height: calc(100vh - 60px);
        padding-bottom: 60px;
    }

    .hero .container {
        padding: 1.5rem 0.8rem 2rem 0.8rem;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .countdown-container {
        padding: 1rem 0.8rem;
    }

    .countdown-title {
        font-size: 1.2rem;
    }

    .countdown-timer {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .time-unit {
        min-width: 55px;
        padding: 0.6rem 0.4rem;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .time-label {
        font-size: 0.75rem;
    }

    .services h2,
    .about h2,
    .contact h2,
    .service-area h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-image {
        height: 160px;
    }

    .nav-links {
        gap: 0.6rem;
        font-size: 0.85rem;
    }

    .nav-links a {
        padding: 0.3rem 0.6rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .subscription-form {
        margin: 0 10px 3rem 10px !important;
        padding-bottom: 3rem !important;
    }

    .contact {
        padding: 40px 0 100px 0;
    }

    .booking-form-container,
    .contact-form-container {
        margin: 0 10px;
        padding: 1.5rem 0.8rem;
    }

    .contact-form-section h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .contact-subtitle {
        padding: 0 10px;
    }

    .pricing-grid {
        margin: 0 10px 2rem;
    }

    .additional-services {
        margin: 0 10px 2rem;
        padding: 1.5rem 0.8rem;
    }

    .pricing-contact {
        margin: 0 10px;
        padding: 1.5rem 0.8rem;
    }

    .prices-section h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .prices-subtitle {
        padding: 0 10px;
    }

    .map-container {
        margin: 1rem 0;
        padding: 3px;
    }

    .about-img {
        height: 250px;
    }

    .customer-options {
        margin: 0 10px;
    }

    .customer-type-card {
        padding: 1.5rem 1rem;
    }
}