/*
* ServisKávovarů24 - Hlavní CSS soubor
* Autor: AI Assistant
* Verze: 1.0
*/

/* ===== ZÁKLADNÍ NASTAVENÍ ===== */
:root {
    --primary-color: #6b4e3a;
    --secondary-color: #8c6e5a;
    --accent-color: #c87f0a;
    --light-color: #f8f5f2;
    --dark-color: #3c2f27;
    --gray-color: #a19283;
    --light-gray-color: #e9e5e0;
    --white-color: #ffffff;
    --black-color: #000000;
    --shadow: 0 5px 15px rgba(107, 78, 58, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.5s ease-in-out;
}

.section:hover .section-header h2::after {
    width: 100%;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

.bg-light {
    background-color: var(--light-color);
}

/* ===== TLAČÍTKA ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ===== HEADER & NAVIGACE ===== */
#header {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: auto;
}

#header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: var(--transition);
}

.menu-toggle.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin-left: 1rem;
    white-space: nowrap;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0.3rem;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.cta-button a {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    font-size: 0.95rem;
}

.cta-button a:hover {
    background-color: var(--secondary-color);
}

/* ===== HERO SEKCE ===== */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content.full-width {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding-right: 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-feature {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.hero-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.hero-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* ===== O NÁS SEKCE ===== */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* ===== SLUŽBY SEKCE ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features {
    margin-top: 1rem;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent-color);
}

/* Značky kávovarů */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(107, 78, 58, 0.2);
}

/* Servis info */
.service-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-info-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(107, 78, 58, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-info-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-color);
}

/* ===== JAK TO FUNGUJE SEKCE ===== */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 2rem);
    background-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1.5rem;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* ===== KÁVA SEKCE ===== */
.coffee-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.coffee-product {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
}

.coffee-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.coffee-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.coffee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coffee-image:hover img {
    transform: scale(1.1);
}

.coffee-product h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.coffee-product p {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.coffee-cta {
    text-align: center;
    margin-top: 3rem;
}

.coffee-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.coffee-cta .btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* ===== REFERENCE SEKCE ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-gray-color);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* ===== KONTAKT SEKCE ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-map {
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* ===== FORMULÁŘ ===== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white-color);
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0.5rem;
}

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: normal;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out;
    background-color: #fff;
    line-height: 1.5;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 0;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background-color: #fff;
}

.form-group input[type="date"] {
    padding-right: 0.75rem;
    cursor: pointer;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 0;
    margin-top: 1rem;
}

.checkbox-label input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    width: auto;
    height: auto;
}

.checkbox-label span {
    font-size: 0.95rem;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 1.5rem;
}

.form-submit button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: normal;
    box-shadow: none;
    background-color: #6b4e3a;
    border: none;
    border-radius: 0;
    text-transform: none;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.thank-you-info {
    margin: 3rem 0;
    text-align: left;
}

.thank-you-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.thank-you-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.5s ease-in-out;
}

.thank-you-info:hover h2::after {
    width: 100px;
}

.thank-you-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thank-you-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.thank-you-step:hover {
    transform: translateY(-5px);
}

.thank-you-step .step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.thank-you-step .step-content {
    flex: 1;
}

.thank-you-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.thank-you-tips {
    margin: 3rem 0;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.thank-you-tips h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.thank-you-tips h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.5s ease-in-out;
}

.thank-you-tips:hover h2::after {
    width: 100px;
}

.thank-you-tips ul {
    list-style: none;
    padding: 0;
}

.thank-you-tips li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.thank-you-tips li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.thank-you-buttons {
    margin-top: 2rem;
}

.thank-you-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.thank-you-buttons .btn i {
    margin-right: 0.5rem;
}

@media screen and (max-width: 768px) {
    .thank-you-container {
        padding: 2rem;
    }

    .thank-you-icon {
        font-size: 4rem;
    }

    .thank-you-container h1 {
        font-size: 2rem;
    }

    .thank-you-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thank-you-step .step-number {
        margin-bottom: 1rem;
    }
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light-gray-color);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--light-gray-color);
}

.footer-links ul li a:hover {
    color: var(--white-color);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: var(--light-gray-color);
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.footer-contact p a {
    color: var(--light-gray-color);
}

.footer-contact p a:hover {
    color: var(--white-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--light-gray-color);
}

/* ===== ANIMACE ===== */
.animate-text,
.animate-card,
.animate-image,
.animate-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-text.show,
.animate-card.show,
.animate-image.show,
.animate-step.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONZIVNÍ DESIGN ===== */
@media screen and (max-width: 992px) {
    html {
        font-size: 15px;
    }

    #hero {
        padding-top: 120px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(1, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coffee-products {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .coffee-product {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .coffee-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-info-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 80%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .cta-button {
        margin-top: 1rem;
    }

    .cta-button a {
        width: 100%;
        display: block;
        padding: 0.8rem;
    }

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

    .form-container {
        padding: 1.5rem;
    }

    .form-row,
    .form-row-three {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-submit {
        grid-column: 1 / -1;
    }

    .form-submit button {
        width: 100%;
    }

    #hero {
        padding-top: 80px;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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