/* ====== COLOR PALETTE ====== */
:root {
    --primary: #A87903;
    --primary-light: #B99435;
    --accent: #CBAF68;
    --light-accent: #DCC99A;
    --bg-light: #EEE4CD;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --border: #e0e0e0;
}

/* ====== GENERAL STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== NAVBAR ====== */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link.active {
    color: var(--primary-light);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.25rem;
}

.nav-link.cta-btn {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-link.cta-btn:hover {
    background-color: var(--light-accent);
    color: var(--primary);
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--bg-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
}

/* ====== SECTION STYLES ====== */
section {
    padding: 4rem 0;
}

section.alternate {
    background-color: var(--bg-light);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ====== INTRODUCTION SECTION ====== */
.introduction-grid {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.intro-content {
    padding: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.form-group button:hover {
    background-color: var(--light-accent);
}

/* ====== WHERE SPECIFIED SECTION ====== */
.where-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.where-card {
    background: var(--white);
    border: 2px solid var(--light-accent);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.where-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(168, 121, 3, 0.1);
    transform: translateY(-5px);
}

.where-card h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* ====== OFFER/FEATURES SECTION ====== */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.features-list li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* ====== HOW IT WORKS SECTION ====== */
.how-it-works {
    background: linear-gradient(135deg, rgba(168, 121, 3, 0.05) 0%, rgba(185, 148, 53, 0.05) 100%);
}

.steps-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.steps-list li {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.steps-list li::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ====== SECTORS SECTION ====== */
.sectors-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sectors-list li {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

/* ====== PRODUCT CARDS ====== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(168, 121, 3, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: transparent;
}

.product-content {
    padding: 2rem;
}

.product-card h3 {
    margin-bottom: 1rem;
}

.product-specs {
    list-style: none;
    margin: 1.5rem 0;
}

.product-specs li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li strong {
    color: var(--primary);
}

/* ====== ABOUT PAGE LAYOUT ====== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ====== TRUST SIGNALS ====== */
.trust-signals {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.trust-signals p {
    color: var(--bg-light);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ====== CONTACT FORM SECTION ====== */
.form-section {
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #f5c6cb;
}

/* ====== COMMON QUESTIONS ====== */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-accent);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(168, 121, 3, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
}

/* ====== FOOTER ====== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--bg-light);
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section p a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section p a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--bg-light);
}
.footer-bottom p{
    color:white;
}
/* ====== HONEYPOT (anti-spam, hidden from humans) ====== */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ====== TESTIMONIALS SLIDER ====== */
.testimonial-slider {
    position: relative;
    max-width: 850px;
    margin: 3rem auto 0;
    padding: 0 30px;
}

.testimonial-viewport {
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
    position: relative;
    height: 100%;
}

.testimonial-quote-mark {
    position: absolute;
    top: 1rem;
    left: 1.75rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--light-accent);
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
}

.testimonial-detail {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(168, 121, 3, 0.25);
}

.testimonial-arrow:hover {
    background: var(--primary-light);
}

.testimonial-prev {
    left: 8px;
}

.testimonial-next {
    right: 8px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--light-accent);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .introduction-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .where-grid,
    .features-list,
    .steps-list,
    .sectors-list,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .product-image {
        height: 200px;
    }

    .testimonial-slider {
        padding: 0 8px;
    }

    .testimonial-card {
        padding: 2.5rem 1.25rem 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .testimonial-prev {
        left: -4px;
    }

    .testimonial-next {
        right: -4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}
