@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2c4a3e;
    --primary-light: #3d6b5a;
    --secondary: #d4a574;
    --secondary-light: #e8c9a8;
    --accent: #8b4513;
    --dark: #1a1a1a;
    --light: #f8f5f0;
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #e0e0e0;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    color: var(--gray);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.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: 1rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    padding: 4px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-toggle .fa-times {
    display: none;
}

.menu-toggle.active .fa-bars {
    display: none;
}

.menu-toggle.active .fa-times {
    display: block;
}

.nav-mobile {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-mobile ul {
    padding: 15px 0;
}

.nav-mobile li {
    border-bottom: 1px solid var(--gray-light);
}

.nav-mobile li:last-child {
    border-bottom: none;
}

.nav-mobile a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: var(--light);
    color: var(--primary);
}

.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    min-height: 75vh;
    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-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-height: 320px;
    object-fit: cover;
}

.features {
    padding: 50px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px 20px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 1.2rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

.services {
    padding: 50px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 160px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.about-preview {
    padding: 50px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: var(--light);
    border-radius: var(--radius);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.products {
    padding: 50px 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.product-content {
    padding: 18px;
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.product-content p {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 0.7rem;
    color: var(--gray);
}

.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-section p {
    color: var(--secondary-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cta-section .btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.testimonials {
    padding: 50px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info h4 {
    font-size: 0.85rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--gray);
}

.process {
    padding: 50px 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    font-size: 0.85rem;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.8rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.copyright {
    color: var(--gray-light);
    font-size: 0.75rem;
    opacity: 0.7;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.policy-links a {
    color: var(--gray-light);
    font-size: 0.7rem;
    opacity: 0.7;
}

.policy-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--secondary-light);
    font-size: 0.9rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--secondary-light);
}

.breadcrumb span {
    color: var(--white);
}

.page-content {
    padding: 50px 0;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.content-section p {
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.content-section li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.7rem;
    top: 3px;
}

.contact-section {
    padding: 50px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-light);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.info-content h3 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-content p {
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 74, 62, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 0 0 50px;
    background: var(--light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-page {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
    background: var(--light);
}

.error-content h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.error-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.thankyou-page {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
    background: var(--light);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.thankyou-content h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.thankyou-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.policy-page {
    padding: 50px 0;
}

.policy-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    margin: 25px 0 12px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    list-style: disc;
}

.last-updated {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
    display: none;
}

.cookie-popup.active {
    transform: translateY(0);
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.gallery-section {
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.faq-section {
    padding: 50px 0;
    background: var(--light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h3 {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.team-section {
    padding: 50px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 1.5rem;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card span {
    color: var(--gray);
    font-size: 0.8rem;
}

.values-section {
    padding: 50px 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1rem;
}

.value-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.value-content p {
    color: var(--gray);
    font-size: 0.85rem;
}

.pricing-section {
    padding: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-card.featured::before {
    content: 'Populær';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: var(--dark);
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.materials-section {
    padding: 50px 0;
    background: var(--white);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light);
    border-radius: var(--radius);
}

.material-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.material-item span {
    font-size: 0.85rem;
    color: var(--dark);
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-mobile {
        display: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .materials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .policy-content {
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-image img {
        max-height: 400px;
    }
}

@media (max-width: 479px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}
