* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #192a0f;
    --accent: #93a24c;
    --text: #2c2c2c;
    --light: #f8f9fb;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

.hero-content .accent-text {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-badges {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.badge-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .badge {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
}

/* Products Section */
.products {
    background: var(--light);
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li i {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-cta {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: var(--accent);
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Why Choose Us */
.why-us {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.why-item {
    display: flex;
    gap: 2rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.why-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.why-content p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--primary);
    padding: 6rem 2rem;
    color: var(--white);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-container > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 200px;
}

.form-submit {
    background: var(--accent);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgb(220 218 212 / 40%);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left p {
    opacity: 0.8;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.footer-right a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 0.8;
}

@media (max-width: 968px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-container h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary), #1e293b);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Additional CSS for About Page - Add this to your existing style.css */

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats Section */
.stats-section {
    background: var(--light);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Why Items */
.why-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.why-icon {
    background: var(--accent) !important;
}

.why-features {
    list-style: none;
    margin-top: 1rem;
}

.why-features li {
    color: #666;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.why-features li:before {
    content: "→";
    color: var(--accent);
    font-weight: bold;
}

/* Process Section */
.process-section {
    background: var(--light);
    padding: 6rem 2rem;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.process-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Certifications Section */
.certifications {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.cert-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.cert-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #1e293b);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--accent);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Additional Mobile Responsiveness */
@media (max-width: 968px) {
    /* Story Section Mobile */
    .story-section {
        padding: 3rem 1.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 1.8rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 3rem 1.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* Section Title Mobile */
    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Why Us Mobile */
    .why-us {
        padding: 3rem 1.5rem;
    }

    .why-grid {
        gap: 1.5rem;
    }

    .why-item {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.8rem;
    }

    .why-content h3 {
        font-size: 1.3rem;
    }

    .why-content p {
        font-size: 0.95rem;
    }

    .why-features li {
        font-size: 0.9rem;
    }

    /* Process Mobile */
    .process-section {
        padding: 3rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .process-step:not(:last-child):after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -1.5rem;
        transform: translateX(50%);
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    /* Certifications Mobile */
    .certifications {
        padding: 3rem 1.5rem;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cert-item {
        padding: 1.5rem;
    }

    .cert-icon {
        font-size: 2.5rem;
    }

    .cert-item h4 {
        font-size: 1rem;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 3rem 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
    }

    .page-header p {
        font-size: 1rem !important;
    }

    /* Nav Button Mobile */
    .nav-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem;
    }

    .footer-left p,
    .footer-right {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .story-text h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .why-content h3 {
        font-size: 1.2rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional CSS for Contact Page - Add this to your existing style.css */

/* Contact Page Specific Styles */
.contact-page {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary), #1e293b);
    padding: 6rem 2rem;
    color: var(--white);
    min-height: calc(100vh - 80px);
}

.contact-page .contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-page .contact-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.contact-page .contact-container > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    text-align: center;
}

/* Contact Wrapper - Side by Side Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-section {
    width: 100%;
}

.map-section {
    width: 100%;
}

/* Contact Info Card */
.contact-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info h3 i {
    color: var(--accent);
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    min-width: 30px;
    margin-top: 0.2rem;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Map Container */
.map-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

/* Make sure select dropdown options are visible */
.form-group select option {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 968px) {
    .contact-page {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .contact-page .contact-container h1 {
        font-size: 2rem;
    }

    .contact-page .contact-container > p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .info-item {
        gap: 0.8rem;
    }

    .info-item i {
        font-size: 1.3rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 3rem 1rem;
    }

    .contact-page .contact-container h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-info {
        padding: 1.2rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-item i {
        margin-top: 0;
    }

    .map-container {
        padding: 0.8rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Additional CSS for Enhanced Products Page - Add to style.css */

/* Product Stats Section */
.product-stats {
    background: var(--white);
    padding: 3rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Enhanced Product Cards */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.quick-view:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.05);
}

.quick-view i {
    font-size: 1.2rem;
}

/* Product Specifications */
.product-specs {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #666;
}

.spec i {
    color: var(--accent);
    font-size: 1rem;
}

.spec strong {
    color: var(--primary);
}

/* Enhanced Product CTA */
.product-cta i {
    margin-right: 0.5rem;
}

/* Custom Requirements Section */
.custom-requirements {
    background: var(--light);
    padding: 6rem 2rem;
}

.custom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-text i {
    font-size: 1.6rem;
    color: var(--accent);
}

.custom-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.custom-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.custom-list {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 1rem;
}

.custom-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.custom-cta {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.custom-cta:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.custom-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Why Buy Section */
.why-buy {
    padding: 6rem 2rem;
    background: var(--white);
}

.why-buy-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-buy-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 800;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-buy-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-buy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-buy-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.why-buy-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-buy-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #1e293b);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-buttons .cta-primary {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .cta-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-buttons .cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 1rem;
    }

    .custom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .custom-text h2 {
        font-size: 1.8rem;
    }

    .custom-text p {
        font-size: 1rem;
    }

    .why-buy {
        padding: 4rem 1.5rem;
    }

    .why-buy-container h2 {
        font-size: 1.8rem;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .cta-banner-content h2 {
        font-size: 1.8rem;
    }

    .cta-banner-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .product-stats {
        padding: 2rem 1rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .custom-text i {
        font-size: 2.5rem;
    }

    .custom-text h2 {
        font-size: 1.5rem;
    }

    .custom-cta {
        width: 100%;
        justify-content: center;
    }

    .why-buy-card {
        padding: 1.5rem;
    }

    .why-buy-card i {
        font-size: 2.5rem;
    }

    .cta-banner-content h2 {
        font-size: 1.5rem;
    }
}

/* Additional CSS for Contact Page - Add this to your existing style.css */

/* Contact Page Specific Styles */
.contact-page {
    margin-top: 80px;
    background: var(--primary);
    padding: 6rem 2rem;
    color: var(--white);
    min-height: calc(100vh - 80px);
}

.contact-page .contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-page .contact-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.contact-page .contact-container > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    text-align: center;
}

/* Contact Wrapper - Side by Side Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-section {
    width: 100%;
}

.map-section {
    width: 100%;
}

/* Contact Info Card */
.contact-info {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--white);
}

.contact-info h3 i {
    color: #93a24c;
    font-size: 2.2rem;
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.info-item i {
    font-size: 2rem;
    color: #93a24c;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item > div {
    flex: 1;
    text-align: left;
}

.info-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.info-item p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Map Container */
.map-container {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    height: 385px;
}

.map-container iframe {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 14px;
}

/* Make sure select dropdown options are visible */
.form-group select option {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 968px) {
    .contact-page {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .contact-page .contact-container h1 {
        font-size: 2rem;
    }

    .contact-page .contact-container > p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 2rem 1.8rem;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .contact-info h3 i {
        font-size: 1.8rem;
    }

    .info-items {
        gap: 2rem;
    }

    .info-item {
        grid-template-columns: 35px 1fr;
        gap: 1.2rem;
    }

    .info-item i {
        font-size: 1.7rem;
        width: 35px;
        height: 35px;
    }

    .info-item strong {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 3rem 1rem;
    }

    .contact-page .contact-container h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-info {
        padding: 1.8rem 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-info h3 i {
        font-size: 1.6rem;
    }

    .contact-info > p {
        font-size: 0.95rem;
    }

    .info-items {
        gap: 1.8rem;
    }

    .info-item {
        grid-template-columns: 30px 1fr;
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }

    .info-item strong {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .map-container {
        padding: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger:focus {
    outline: 2px solid #93a24c;
    outline-offset: 4px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Hamburger Active State (X) */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.mobile-nav-link i {
    font-size: 22px;
    color: #93a24c;
}

.mobile-nav-link:hover {
    background: #93a24c;
    color: #ffffff;
    transform: translateX(8px);
}

.mobile-nav-link:hover i {
    color: #ffffff;
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, #93a24c 0%, #93a24c 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(56, 133, 228, 0.3);
}

.mobile-nav-link.active i {
    color: #ffffff;
}

/* Mobile Get Quote Button */
.mobile-btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    background: linear-gradient(135deg, #93a24c 0%, #93a24c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(56, 133, 228, 0.3);
}

.mobile-btn i {
    font-size: 20px;
}

.mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 133, 228, 0.3);

}

.mobile-btn:active {
    transform: translateY(0);
}

/* Mobile Contact Info */
.mobile-contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.mobile-contact-item i {
    font-size: 18px;
    color: #93a24c;
}

.mobile-contact-item:hover {
    background: #93a24c;
    color: #ffffff;
    transform: translateX(4px);
}

.mobile-contact-item:hover i {
    color: #ffffff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Navigation Sticky Behavior */
.main-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transition: transform 0.3s ease;
}

.main-nav.scroll-down {
    transform: translateY(-100%);
}

.main-nav.scroll-up {
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Tablet and Mobile */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .desktop-nav,
    .desktop-btn {
        display: none !important;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 40px;
        width: auto;
    }
}

/* Desktop */
@media screen and (min-width: 769px) {
    .hamburger,
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-btn {
        display: none !important;
    }
    
    .desktop-nav,
    .desktop-btn {
        display: flex !important;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
    .mobile-menu {
        width: 90%;
    }
    
    .mobile-menu-content {
        padding: 70px 20px 20px;
    }
    
    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .mobile-nav-link i {
        font-size: 20px;
    }
}

/* ===================================
   NAVIGATION CONTAINER STYLES
   =================================== */

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: inline-block;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #93a24c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #93a24c;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #93a24c;
}

/* Desktop Get Quote Button */
.nav-btn {
    padding: 12px 28px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 219, 79, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 10px 20px;
    background: #93a24c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-menu.active {
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active {
    animation: fadeIn 0.3s ease;
}

/* 2 Product Grid Layout */
.products-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
    .products-grid-2 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Optional: Make cards slightly wider for 2-column */
.products-grid-2 .product-card {
    max-width: 100%;
}