@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e8a4b8;
    --primary-dark: #d4899e;
    --secondary-color: #a8d5ba;
    --secondary-dark: #8bc4a0;
    --accent-color: #f5d7a1;
    --text-dark: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #fef6f0;
    --light-pink: #fff0f3;
    --light-green: #f0f8f3;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-dark);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    backdrop-filter: blur(10px);
}

.site-header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 15px 60px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 50%, var(--light-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 164, 184, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.features {
    padding: 60px 15px;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--cream);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
}

.popular-arrangements {
    padding: 60px 15px;
    background: var(--light-pink);
}

.popular-arrangements h2 {
    text-align: center;
    margin-bottom: 40px;
}

.arrangements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.arrangement-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.arrangement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.arrangement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrangement-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.arrangement-card h3 {
    margin-bottom: 8px;
}

.arrangement-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.arrangement-card .price {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-preview {
    padding: 60px 15px;
    background: var(--white);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.services-preview {
    padding: 60px 15px;
    background: var(--light-green);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-item i {
    font-size: 2rem;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.service-item h3 {
    margin-bottom: 8px;
}

.service-item p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-item a {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 500;
}

.service-item a:hover {
    color: var(--primary-color);
}

.cta-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.page-hero {
    padding: 120px 15px 50px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
}

.products-section {
    padding: 60px 15px;
    background: var(--white);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.flower-categories {
    padding: 60px 15px;
    background: var(--light-green);
}

.flower-categories h2 {
    text-align: center;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 2rem;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.category-card h3 {
    margin-bottom: 8px;
}

.category-card p {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.freshness-guarantee {
    padding: 60px 15px;
    background: var(--cream);
}

.guarantee-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.guarantee-content h2 {
    margin-bottom: 15px;
}

.guarantee-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 13px;
}

.wedding-hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--accent-color) 100%);
}

.wedding-intro {
    padding: 60px 15px;
    background: var(--white);
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.wedding-services {
    padding: 60px 15px;
    background: var(--light-pink);
}

.wedding-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.wedding-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wedding-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.wedding-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.wedding-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.wedding-card p {
    font-size: 11px;
    color: var(--text-light);
}

.wedding-process {
    padding: 60px 15px;
    background: var(--white);
}

.wedding-process h2 {
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 12px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    font-size: 11px;
    color: var(--text-light);
}

.wedding-cta {
    padding: 60px 15px;
    background: var(--light-green);
}

.cta-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 13px;
}

.about-story {
    padding: 60px 15px;
    background: var(--white);
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
    text-align: center;
}

.our-values {
    padding: 60px 15px;
    background: var(--light-pink);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card h3 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 11px;
    color: var(--text-light);
}

.team-section {
    padding: 60px 15px;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-feature {
    text-align: center;
    padding: 25px;
    background: var(--cream);
    border-radius: 15px;
}

.team-feature i {
    font-size: 2rem;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.team-feature h3 {
    margin-bottom: 8px;
}

.team-feature p {
    font-size: 12px;
    color: var(--text-light);
}

.visit-us {
    padding: 60px 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.visit-content {
    text-align: center;
    color: var(--white);
}

.visit-content h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.visit-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 13px;
}

.visit-content .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.contact-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-pink) 100%);
}

.contact-section {
    padding: 60px 15px;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: var(--cream);
    padding: 30px;
    border-radius: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-header h2 {
    margin-bottom: 8px;
}

.form-header p {
    font-size: 12px;
    color: var(--text-light);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 164, 184, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.info-card {
    background: var(--light-pink);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 11px;
    color: var(--text-light);
}

.map-section {
    padding: 0 15px 60px;
    background: var(--white);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

.thank-you-main,
.error-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-section,
.error-section {
    padding: 60px 15px;
    width: 100%;
}

.thank-you-content,
.error-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon,
.error-icon {
    margin-bottom: 20px;
}

.thank-you-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
}

.error-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.thank-you-content h1,
.error-content h1 {
    margin-bottom: 15px;
}

.error-code {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.thank-you-content p,
.error-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.thank-you-details {
    background: var(--cream);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.thank-you-details p {
    margin-bottom: 0;
}

.thank-you-actions,
.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-content {
    padding: 60px 15px;
    background: var(--white);
}

.policy-article {
    max-width: 800px;
    margin: 0 auto;
}

.policy-article h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.policy-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-article h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-article p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 13px;
}

.policy-article ul,
.policy-article ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.policy-article li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 13px;
    list-style: disc;
}

.policy-article ol li {
    list-style: decimal;
}

.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 20px 15px;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-info p {
    font-size: 12px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 11px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-light);
    flex: 1;
}

.cookie-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arrangements-grid,
    .services-grid,
    .products-grid,
    .team-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .wedding-grid,
    .process-steps,
    .values-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 25px 25px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.active {
        display: block;
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list a {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 100px 15px 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid,
    .arrangements-grid,
    .services-grid,
    .products-grid,
    .wedding-grid,
    .process-steps,
    .values-grid,
    .categories-grid,
    .team-features {
        grid-template-columns: 1fr;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }

    .btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 13px;
    }

    .feature-card,
    .arrangement-card,
    .service-item,
    .product-card,
    .wedding-card,
    .value-card,
    .category-card,
    .team-feature,
    .info-card {
        padding: 20px 15px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .cta-box {
        padding: 25px 20px;
    }

    .thank-you-icon i,
    .error-icon i {
        font-size: 3rem;
    }

    .error-code {
        font-size: 4rem;
    }

    .thank-you-actions,
    .error-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn,
    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }

    .hero {
        padding: 90px 10px 40px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 40px 10px;
    }

    .features,
    .popular-arrangements,
    .about-preview,
    .services-preview,
    .cta-section,
    .products-section,
    .flower-categories,
    .freshness-guarantee,
    .wedding-intro,
    .wedding-services,
    .wedding-process,
    .wedding-cta,
    .about-story,
    .our-values,
    .team-section,
    .visit-us,
    .contact-section,
    .policy-content {
        padding: 40px 10px;
    }

    .page-hero {
        padding: 100px 10px 40px;
    }

    .map-container iframe {
        height: 250px;
    }
}