/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #faf8f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ff6b35;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* fade remove added white to increse brightnes */
    text-align: center;
    overflow: hidden;
    border-bottom: 6px solid #8b6f47;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 111, 71, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c28 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
    border-bottom: 6px solid #8b6f47;
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Introduction Section */
.introduction-section {
    padding: 60px 0;
    background: #faf8f5;
    border-bottom: 6px solid #8b6f47;
}

.introduction-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.introduction-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.introduction-content p {
    color: #5a4a3a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.uses-grid {
    margin-top: 3rem;
}

.uses-grid h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.uses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.use-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #8b6f47;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.use-item:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.additional-products {
    margin-top: 3rem;
}

.additional-products h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.product-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #8b6f47;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.product-item:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.conclusion {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #8b6f47;
}

.conclusion p {
    color: #5a4a3a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.conclusion p strong {
    color: #2d5016;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f5f2ed;
    border-bottom: 6px solid #8b6f47;
}

.features h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #8b6f47;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #5a4a3a;
    line-height: 1.6;
}

/* About Page Styles */
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.quality-commitment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(45, 80, 22, 0.05);
    border-left: 4px solid #2d5016;
    border-radius: 4px;
}

.quality-commitment h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-commitment p {
    color: #5a4a3a;
    line-height: 1.6;
    font-size: 1rem;
}

.about-content {
    padding: 60px 0;
    background: #faf8f5;
    border-bottom: 6px solid #8b6f47;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #5a4a3a;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.values-list strong {
    color: #ff6b35;
}

.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
}

.image-placeholder h3 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: #f5f2ed;
    border-bottom: 6px solid #8b6f47;
}

.team-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    border: 2px solid #8b6f47;
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: #5a4a3a;
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: #faf8f5;
    border-bottom: 6px solid #8b6f47;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #8b6f47;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.product-image {
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image .image-placeholder h3 {
    font-size: 4rem;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 8px 0 0;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.product-info p {
    color: #5a4a3a;
    margin-bottom: 1rem;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

.features li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    margin-right: 0.5rem;
}

.product-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: #e55a2b;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f5f2ed;
}

.faq-categories {
    display: grid;
    gap: 2rem;
}

.faq-category {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    border: 2px solid #8b6f47;
}

.faq-category h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #2d5016;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1rem 1rem;
    color: #5a4a3a;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #f5f2ed;
    border-bottom: 6px solid #8b6f47;
}

.reviews-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.google-rating {
    text-align: center;
}

.rating-stars {
    font-size: 2rem;
    color: #4285f4;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.rating-count {
    color: #5a4a3a;
    font-size: 0.9rem;
}

.write-review-btn {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.write-review-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #8b6f47;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    font-size: 2rem;
    background: #f0f0f0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-weight: 600;
    color: #2d5016;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-date {
    font-size: 0.85rem;
    color: #5a4a3a;
}

.review-rating {
    color: #ff6b35;
    font-size: 1rem;
}

.review-content {
    color: #5a4a3a;
    line-height: 1.6;
}

.reviews-footer {
    text-align: center;
}

.view-all-reviews {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.view-all-reviews:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #faf8f5;
    border-bottom: 6px solid #8b6f47;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Fix single item display */
.gallery-grid.single-item {
    justify-content: center;
}

.gallery-grid.single-item .gallery-item {
    max-width: 400px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #8b6f47;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.gallery-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image .image-placeholder h3 {
    font-size: 3rem;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 8px 0 0;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-info p {
    color: #5a4a3a;
    font-size: 0.9rem;
}

/* Customer Stories */
.customer-stories {
    padding: 60px 0;
    background: #f5f2ed;
}

.customer-stories h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    border: 2px solid #8b6f47;
}

.story-avatar {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.story-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2d5016;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-card p {
    color: #5a4a3a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-author {
    font-style: italic;
    text-align: right;
    color: #ff6b35;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #faf8f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #5a4a3a;
    font-size: 0.9rem;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #e55a2b;
}

/* Showroom Section */
.showroom-section {
    padding: 60px 0;
    background: #f5f2ed;
}

.showroom-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showroom-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showroom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature h4 {
    font-family: 'Oswald', sans-serif;
    color: #2d5016;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features {
    color: #5a4a3a;
    font-size: 0.9rem;
}

.feature p {
    color: #5a4a3a;
    font-size: 0.9rem;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.map-placeholder h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Social Section */
.social-section {
    padding: 60px 0;
    text-align: center;
    background: #faf8f5;
}

.social-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-section p {
    color: #5a4a3a;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: white;
    padding: 15px 25px;
    border-radius: 4px;
    text-decoration: none;
    color: #2d5016;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #8b6f47;
}

.social-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    border-color: #ff6b35;
}

/* Service Area Section */
.service-area-section {
    padding: 60px 0;
    background: #faf8f5;
    border-bottom: 6px solid #8b6f47;
}

.service-area-section h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.service-area-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    border: 2px solid #8b6f47;
}

.service-area-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    border-radius: 4px;
}

.service-contact h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-contact p {
    color: #5a4a3a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-contact strong {
    color: #2d5016;
}

.service-areas h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-areas ul {
    list-style: none;
    color: #5a4a3a;
}

.service-areas li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-areas li:before {
    content: "📍";
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.service-area-map {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-header p {
    color: #5a4a3a;
    font-size: 1rem;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #faf8f5;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #5a4a3a;
    opacity: 0.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.review-content {
    margin-bottom: 2rem;
}

.review-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a4a3a;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: #ff6b35;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -15px;
}

.review-author {
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.review-author h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-author p {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c28 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #2d5016;
}

.cta-section .cta-button:hover {
    background: #faf8f5;
    color: #2d5016;
}

/* Footer */
footer {
    background: #2d5016;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Floating Buttons */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2d5016;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-icon {
    font-size: 18px;
}

.whatsapp-text {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .navbar .nav-container .logo img,
    header .navbar .nav-container .logo .logo-img {
        height: 44px !important;
        max-height: 44px !important;
        margin-right: 15px !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu a {
        color: #2c3e50 !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #ff6b35 !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .review-card {
        padding: 2rem;
    }

    .review-content p {
        font-size: 1rem;
    }

    .review-content p::before {
        font-size: 2rem;
        top: -5px;
        left: -10px;
    }

    .review-author h4 {
        font-size: 1.1rem;
    }

    .review-author p {
        font-size: 0.85rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .service-area-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-area-map {
        order: 2;
    }

    .map-container {
        height: 400px;
    }

    .map-header h3 {
        font-size: 1.2rem;
    }

    .map-header p {
        font-size: 0.9rem;
    }

    .introduction-content h2 {
        font-size: 2rem;
    }

    .uses-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .products-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
    }

    .whatsapp-text {
        font-size: 12px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid,
    .showroom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 250px;
    }

    .products-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .showroom-features {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header .navbar .nav-container .logo img,
    header .navbar .nav-container .logo .logo-img {
        height: 38px !important;
        max-height: 38px !important;
        margin-right: 15px !important;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .features h2,
    .team-section h2,
    .customer-stories h2,
    .showroom-section h2,
    .social-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .product-card,
    .gallery-item {
        margin: 0 -10px;
        border-radius: 0;
    }
}