@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --primary: #8B4E6B;
    --primary-dark: #6B3A52;
    --secondary: #D4A574;
    --accent: #E8D5C4;
    --dark: #2C2C2C;
    --light: #FAF7F4;
    --white: #FFFFFF;
    --shadow: rgba(139, 78, 107, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile ul {
    text-align: center;
}

.nav-mobile li {
    margin: 20px 0;
}

.nav-mobile a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--secondary);
}

.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge span {
    display: block;
    font-size: 11px;
    color: #666;
}

.hero-badge strong {
    font-size: 18px;
    color: var(--primary);
}

.services {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--light);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 60px 0;
    background: var(--accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--dark);
}

.about-feature i {
    color: var(--primary);
    font-size: 14px;
}

.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    box-shadow: 0 15px 40px var(--shadow);
    transform: translateY(-5px);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-price span {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--accent);
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 11px;
    color: #999;
}

.cta-section {
    padding: 60px 0;
    background: var(--light);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 13px;
    color: #666;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: #999;
}

.content-section {
    padding: 50px 0;
    background: var(--white);
}

.content-section p {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 25px 0 12px;
}

.content-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.about-page-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-section {
    padding: 50px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-member {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 24px;
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-member span {
    font-size: 11px;
    color: #999;
}

.contact-section {
    padding: 50px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px 25px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 20px;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 50px 0;
    background: var(--light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    background: var(--light);
    text-align: center;
}

.error-content h1 {
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.error-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
}

.thankyou-content {
    max-width: 500px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 36px;
}

.thankyou-content h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.thankyou-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.policy-content {
    padding: 50px 0;
    background: var(--white);
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 30px 0 12px;
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.last-updated {
    font-size: 12px;
    color: #999;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 12px;
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 12px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #888;
}

.privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.privacy-links a {
    font-size: 11px;
    color: #888;
    transition: color 0.3s ease;
}

.privacy-links a:hover {
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 12px;
    color: #ccc;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.gallery-section {
    padding: 50px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.values-section {
    padding: 50px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.value-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.value-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.process-section {
    padding: 50px 0;
    background: var(--accent);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 50px 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-top: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.event-types {
    padding: 50px 0;
    background: var(--light);
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.event-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateX(5px);
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.event-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #999;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-meta i {
    color: var(--primary);
}

.intro-section {
    padding: 50px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.intro-text p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text h1 {
        font-size: 44px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .intro-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-text h1 {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
