@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --emerald: #046b47;
    --emerald-light: #0a8f5f;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent-dark: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

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: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    transform: translateY(0);
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-solid {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-dark);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(4, 107, 71, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(4, 107, 71, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 12px;
    color: var(--text-light);
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    margin: 15px auto 0;
}

.about-section {
    background: var(--secondary-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 13px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.about-feature i {
    color: var(--emerald);
    font-size: 14px;
}

.services-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--accent-dark);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(4, 107, 71, 0.2) 0%, rgba(201, 162, 39, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 20px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.gallery-section {
    background: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-section {
    background: var(--secondary-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--accent-dark);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--emerald);
    color: var(--text-light);
    padding: 4px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.product-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}

.product-price span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.testimonials-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--accent-dark);
    padding: 25px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: rgba(201, 162, 39, 0.2);
}

.testimonial-content {
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--emerald) 0%, rgba(4, 107, 71, 0.8) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 25px;
    font-size: 13px;
    opacity: 0.9;
}

.contact-section {
    background: var(--secondary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--emerald);
    font-size: 16px;
    margin-top: 2px;
}

.contact-item div h4 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.contact-item div p {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-form {
    background: var(--accent-dark);
    padding: 25px;
}

.contact-form h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--secondary-dark);
    border: 1px solid var(--accent-dark);
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--emerald);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--gold);
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 20px;
}

.map-container {
    height: 250px;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.1);
}

footer {
    background: var(--primary-dark);
    padding: 30px 0 15px;
    border-top: 1px solid var(--accent-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.footer-logo .logo-text {
    font-size: 16px;
}

.footer-nav ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--accent-dark);
}

.copyright {
    font-size: 11px;
    color: var(--text-muted);
}

.copyright span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--accent-dark);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-muted);
    flex: 1;
}

.cookie-content a {
    color: var(--gold);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--emerald);
    color: var(--text-light);
}

.cookie-accept:hover {
    background: var(--emerald-light);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.cookie-decline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

.page-header {
    padding: 120px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(4, 107, 71, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 15vw, 150px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h1,
.thankyou-content h1 {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 15px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 13px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--primary-dark);
}

.policy-content {
    background: var(--secondary-dark);
}

.policy-content .container {
    max-width: 900px;
}

.policy-text {
    background: var(--accent-dark);
    padding: 30px;
}

.policy-text h2 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--gold);
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-text ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-text ul li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--emerald);
    border-radius: 50%;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-detail-card {
    background: var(--accent-dark);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(4, 107, 71, 0.3) 0%, rgba(201, 162, 39, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 20px;
    color: var(--gold);
}

.service-detail-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-detail-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.process-section {
    background: var(--primary-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.process-item:last-child::after {
    display: none;
}

.process-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary-dark);
    font-weight: 600;
}

.process-item h4 {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-light);
}

.process-item p {
    font-size: 11px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--accent-dark);
    padding: 25px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-3px);
}

.feature-card i {
    font-size: 28px;
    color: var(--emerald);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.holiday-banner {
    background: linear-gradient(135deg, rgba(4, 107, 71, 0.3) 0%, rgba(201, 162, 39, 0.2) 100%);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.holiday-banner h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.holiday-banner p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.contact-unique-design {
    background: var(--primary-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    overflow: hidden;
    background: var(--accent-dark);
}

.contact-sidebar {
    background: linear-gradient(135deg, var(--emerald) 0%, rgba(4, 107, 71, 0.9) 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-sidebar h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-sidebar p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.sidebar-info {
    margin-top: auto;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-item i {
    font-size: 16px;
    opacity: 0.8;
}

.sidebar-item span {
    font-size: 13px;
}

.contact-main {
    padding: 40px;
}

.contact-main h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .about-grid,
    .contact-grid,
    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .products-grid,
    .gallery-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-item::after {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .hero-content {
        padding: 60px 15px;
    }

    .about-image::before {
        display: none;
    }

    .about-image img {
        height: 250px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .policy-text {
        padding: 20px;
    }

    .holiday-banner {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }

    .logo-text {
        font-size: 14px;
    }

    .services-grid,
    .products-grid,
    .gallery-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .contact-main {
        padding: 25px;
    }

    .contact-sidebar {
        padding: 25px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}
