@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a27;
    --primary-dark: #1e3d1a;
    --secondary: #8b6914;
    --accent: #c4a35a;
    --light: #f8f6f0;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--accent);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    position: fixed;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header.hidden {
    transform: translateY(-100%);
}

.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(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 25px 30px;
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-mobile a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: var(--light);
    color: var(--primary);
}

.nav-mobile-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.nav-mobile-contact p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}

.nav-mobile-contact a {
    padding: 8px 0;
    font-size: 13px;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f0e6 0%, #f8f6f0 50%, #f5f0e0 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(45,90,39,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
    padding: 15px 10px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--gray);
    margin-top: 3px;
}

.section {
    padding: 50px 0;
}

.section-alt {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    margin-bottom: 10px;
}

.section-desc {
    font-size: 13px;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-badge-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.about-feature i {
    color: var(--primary);
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #e8f0e6 0%, #f5f0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.product-content {
    padding: 18px;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price span {
    font-size: 12px;
    color: var(--gray);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.process-timeline {
    position: relative;
    padding-left: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.process-step {
    position: relative;
    padding-bottom: 25px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.process-step-number {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.process-step h4 {
    margin-bottom: 5px;
}

.process-step p {
    font-size: 13px;
    color: var(--gray);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.15;
}

.testimonial-text {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--gray);
}

.testimonial-rating {
    margin-left: auto;
    color: var(--accent);
    font-size: 12px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-section .btn-secondary {
    background: var(--accent);
    color: var(--dark);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-brand .logo-icon {
    background: var(--primary);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 2px;
    font-size: 12px;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: var(--accent);
}

.page-header {
    background: linear-gradient(135deg, #e8f0e6 0%, #f5f0e0 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
}

.page-breadcrumb a {
    color: var(--primary);
}

.page-breadcrumb span {
    color: var(--gray);
}

.contact-section {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-content h5 {
    font-size: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 13px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.policy-content {
    padding: 50px 0;
}

.policy-content h2 {
    margin: 25px 0 12px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.policy-content li {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
}

.policy-date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
}

.error-page,
.thankyou-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.error-content,
.thankyou-content {
    max-width: 450px;
    margin: 0 auto;
}

.error-icon,
.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.privacy-popup.active {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-popup-text {
    font-size: 12px;
    color: var(--gray);
}

.privacy-popup-text a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-popup-btns {
    display: flex;
    gap: 10px;
}

.privacy-popup-btns .btn {
    padding: 8px 18px;
    font-size: 12px;
}

.teak-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.teak-feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.teak-feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.teak-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.teak-feature p {
    font-size: 12px;
    color: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.team-card h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.team-card span {
    font-size: 11px;
    color: var(--gray);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.value-card h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.value-card p {
    font-size: 11px;
    color: var(--gray);
}

@media (min-width: 576px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-title { font-size: 2.6rem; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .teak-features { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-features { grid-template-columns: repeat(2, 1fr); }
    
    .privacy-popup-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    body { font-size: 15px; }
    
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .section { padding: 70px 0; }
    
    .hero { padding: 120px 0 80px; }
    .hero-title { font-size: 3rem; }
    .hero-content { grid-template-columns: 1fr 1fr; text-align: left; }
    .hero-text { text-align: left; }
    .hero-btns { justify-content: flex-start; }
    .hero-desc { margin-left: 0; margin-right: 0; }
    
    .about-grid { grid-template-columns: 1fr 1fr; }
    
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    
    .testimonials-slider { flex-direction: row; }
    
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    
    .contact-grid { grid-template-columns: 1fr 1.2fr; }
    
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
    .nav-desktop { display: block; }
    .header-cta { display: block; }
    .menu-toggle { display: none; }
    
    h1 { font-size: 3rem; }
    .hero-title { font-size: 3.4rem; }
    
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
    .container { padding: 0 30px; }
    
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.2rem; }
}
