@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-terracotta: #C2703E;
    --secondary-lavender: #9B7BB8;
    --turquoise: #40B5AD;
    --white-plaster: #FAF8F5;
    --deep-shadow: #2D2A26;
    --sun-gold: #E8C547;
    --soft-cream: #F5EDE4;
    --olive-green: #6B8E4E;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--deep-shadow);
    background-color: var(--white-plaster);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-terracotta), var(--sun-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-shadow);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--deep-shadow);
    cursor: pointer;
    padding: 5px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--deep-shadow);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-terracotta);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-terracotta);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(194, 112, 62, 0.1) 0%, rgba(155, 123, 184, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(232, 197, 71, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0 40px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-shadow);
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--primary-terracotta);
}

.hero-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    max-width: 450px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-terracotta);
}

.stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--turquoise);
    border-radius: 20px;
    z-index: -1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-terracotta), #D4844E);
    color: white;
    box-shadow: 0 4px 15px rgba(194, 112, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 112, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-shadow);
    border: 2px solid var(--turquoise);
}

.btn-secondary:hover {
    background: var(--turquoise);
    color: white;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-lavender);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--deep-shadow);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 14px;
    color: #777;
    max-width: 550px;
    margin: 0 auto;
}

.services-section {
    background: var(--soft-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--turquoise), #5AC8C0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 22px;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--secondary-lavender), #B08FCC);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--primary-terracotta), #D4844E);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--deep-shadow);
}

.service-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--sun-gold);
    color: var(--deep-shadow);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(232, 197, 71, 0.3);
}

.about-badge .badge-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.about-badge .badge-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-shadow);
}

.about-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.about-feature i {
    color: var(--olive-green);
    font-size: 16px;
}

.gallery-section {
    background: linear-gradient(180deg, var(--white-plaster) 0%, var(--soft-cream) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.testimonials-section {
    background: var(--deep-shadow);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials-section .section-tag {
    color: var(--sun-gold);
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    color: var(--sun-gold);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-terracotta), var(--secondary-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.author-info h4 {
    font-size: 13px;
    font-weight: 600;
}

.author-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--secondary-lavender) 100%);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--primary-terracotta);
}

.cta-section .btn:hover {
    background: var(--sun-gold);
    color: var(--deep-shadow);
}

footer {
    background: var(--deep-shadow);
    color: white;
    padding: 30px 0 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--turquoise), var(--sun-gold));
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--sun-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--turquoise);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--turquoise);
    font-size: 12px;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-policies {
    display: flex;
    gap: 15px;
}

.footer-policies a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--turquoise);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-shadow);
    color: white;
    padding: 18px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.privacy-popup p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    flex: 1;
}

.privacy-popup a {
    color: var(--turquoise);
    text-decoration: underline;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    padding: 10px 20px;
    font-size: 12px;
}

.page-header {
    background: linear-gradient(135deg, rgba(194, 112, 62, 0.15) 0%, rgba(155, 123, 184, 0.15) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--deep-shadow);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 14px;
    color: #666;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary-terracotta);
}

.breadcrumb span {
    color: #999;
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-box h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-shadow);
}

.content-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.features-list {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--soft-cream);
    border-radius: 10px;
}

.feature-item i {
    width: 30px;
    height: 30px;
    background: var(--turquoise);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-item div h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--deep-shadow);
}

.feature-item div p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.products-section {
    background: var(--soft-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sun-gold);
    color: var(--deep-shadow);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-shadow);
}

.product-info p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-terracotta);
}

.product-price .btn {
    padding: 8px 18px;
    font-size: 11px;
}

.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--soft-cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turquoise), var(--secondary-lavender));
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 600;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--deep-shadow);
}

.team-card .role {
    font-size: 12px;
    color: var(--primary-terracotta);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--white-plaster) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--deep-shadow);
    color: white;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(64, 181, 173, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item div h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--sun-gold);
}

.contact-item div p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.contact-form-wrapper {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-shadow);
}

.contact-form-wrapper > p {
    font-size: 13px;
    color: #777;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--deep-shadow);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s ease;
    background: var(--white-plaster);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-terracotta);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 350px;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(194, 112, 62, 0.1) 0%, rgba(155, 123, 184, 0.1) 100%);
}

.thank-you-content {
    max-width: 500px;
    padding: 40px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--olive-green), var(--turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
}

.thank-you-content h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--deep-shadow);
    margin-bottom: 12px;
}

.thank-you-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(194, 112, 62, 0.1) 0%, rgba(155, 123, 184, 0.1) 100%);
}

.error-content {
    max-width: 500px;
    padding: 40px;
}

.error-code {
    font-family: var(--font-display);
    font-size: 100px;
    font-weight: 700;
    color: var(--primary-terracotta);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 4px 4px 0 var(--soft-cream);
}

.error-content h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-shadow);
    margin-bottom: 12px;
}

.error-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.policy-section {
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-shadow);
    margin: 30px 0 15px;
}

.policy-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-shadow);
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content ul li {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}

.policy-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

.process-section {
    background: var(--soft-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--turquoise);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-terracotta), var(--sun-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-shadow);
}

.process-step p {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.info-cards-section {
    background: white;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--soft-cream);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--turquoise);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--primary-terracotta);
}

.info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--secondary-lavender) 100%);
    color: white;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-box i {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-box .number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box .label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-plaster);
    z-index: 1001;
    padding: 80px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--deep-shadow);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--deep-shadow);
    cursor: pointer;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .content-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        bottom: -10px;
        right: 10px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .products-grid,
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .privacy-popup-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 70px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .service-card,
    .testimonial-card,
    .team-card {
        padding: 20px 15px;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .error-code {
        font-size: 70px;
    }
    
    .thank-you-content,
    .error-content {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-box .number {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 320px) {
    .logo-text {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 8px;
    }
}
