@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: #8B4557;
    --primary-light: #A85A6D;
    --primary-dark: #6D3545;
    --secondary: #D4A574;
    --secondary-light: #E8C9A8;
    --accent: #2C3E50;
    --bg-cream: #FDF8F5;
    --bg-light: #FAF5F2;
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #888888;
    --white: #FFFFFF;
    --border: #E8E0DB;
    --shadow: rgba(139, 69, 87, 0.1);
    --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(--bg-cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    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.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(253, 248, 245, 0.98) 0%, rgba(253, 248, 245, 0.95) 100%);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), 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: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta .btn {
    padding: 8px 18px;
    font-size: 12px;
}

main {
    padding-top: 70px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--secondary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    max-width: 480px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 69, 87, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 69, 87, 0.2);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--secondary);
    border-radius: 25px;
    z-index: -1;
}

.hero-image-wrapper img {
    border-radius: 20px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 69, 87, 0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-cream);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

.why-us {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.why-content h2 {
    margin-bottom: 15px;
}

.why-content > p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-item i {
    width: 28px;
    height: 28px;
    background: rgba(139, 69, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item-text h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.why-item-text p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.why-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.why-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--secondary-light), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image i {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.3;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 10px;
    color: var(--text-light);
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
}

.author-info h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    opacity: 0.7;
}

.cta-section {
    background: var(--bg-light);
    text-align: center;
}

.cta-content {
    max-width: 550px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary-light) 100%);
    padding: 80px 0 50px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-medium);
}

.about-intro {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.value-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.team-section {
    background: var(--white);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.team-text h2 {
    margin-bottom: 15px;
}

.team-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.team-stats {
    display: flex;
    gap: 30px;
}

.team-stat {
    text-align: center;
}

.team-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.team-stat-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 87, 0.1);
}

.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: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form-wrapper .btn {
    width: 100%;
}

.map-section {
    background: var(--bg-light);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

.subpage-content {
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin: 30px 0 15px;
}

.content-wrapper h3 {
    margin: 25px 0 12px;
}

.content-wrapper p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-wrapper ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-medium);
    font-size: 13px;
}

.content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.feature-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--bg-cream);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    box-shadow: 0 15px 40px var(--shadow);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2rem;
    margin-bottom: 5px;
}

.pricing-card .price-note {
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 12px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 12px;
}

.process-section {
    background: var(--bg-light);
}

.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(--border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.policy-content {
    background: var(--white);
    padding: 50px 0;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-wrapper h2 {
    margin: 30px 0 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.policy-wrapper h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.policy-wrapper h3 {
    margin: 20px 0 10px;
}

.policy-wrapper p {
    color: var(--text-medium);
    margin-bottom: 12px;
    font-size: 13px;
}

.policy-wrapper ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-wrapper ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: var(--text-medium);
    font-size: 13px;
}

.policy-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140px);
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary-light) 100%);
}

.error-content,
.thankyou-content {
    max-width: 450px;
    padding: 40px 20px;
}

.error-icon,
.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

footer {
    background: var(--accent);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--white);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 11px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .about-grid,
    .contact-grid,
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .why-image,
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .values-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 884px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-cream);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
        height: 100vh;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-nav a {
        font-size: 16px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.15rem; }
    
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
