/* Variables */
:root {
    /* --primary-color: #2563eb; */
    --primary-color: #629b7f;

    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --text-light: #fff;
    --primary-cream: #FFB900;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, .button, input[type="submit"] {
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

button:hover, .button:hover, input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo, .footer-logo {
    display: flex;
    align-items: center;
}

.logo img, .footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo img {
    filter: invert(1);
}

.logo-text {
    font-weight: bold;
    font-size: 28px;
    color: var(--primary-dark) !important;
}

.logo a:hover .logo-text {
    color: var(--text-light) !important;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-color);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 20px;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    margin-right: 10px;
}

.success-message {
    display: none;
    color: var(--success-color);
    margin-top: 20px;
    font-weight: 600;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.trusted-by h3 {
    margin-bottom: 40px;
    color: var(--light-text);
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    width: 120px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.features h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

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

.feature-item {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 100px 0;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.products h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
}

.product-item h4 {
    font-size: 20px;
    margin: 20px 0 15px;
    padding: 0 20px;
}

.product-item p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.learn-more {
    display: inline-block;
    margin: 0 20px 20px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.faq h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-header {
    background-color: var(--bg-color);
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.testimonials h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--light-text);
}

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

.testimonial-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: normal;
    color: var(--light-text);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.validation-message {
    display: none;
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 0 8px;
}

footer .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo img {
    height: 20px;
    filter: invert(1);
}

.footer-logo .logo-text {
    font-size: 18px;
}

.footer-logo .logo-text:hover {
    color: #FFB900 !important;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-links ul li a {
    font-size: 15px;
    color: white;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.6;
    text-align: center;
    margin-top: 5px;
}

#site-footer a:hover {
    color: #ffd700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .features, .products, .faq, .testimonials, .contact {
    animation: fadeIn 1s ease-out;
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
}

.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
}

.feedback-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.feedback-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.feedback-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


/* Menu Burger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}


.section-light {
  background-color: #ffffff;
  color: #333333;
}

.section-dark {
  background-color: #f5f5f5;
  color: #333333;
} 

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFB900;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    nav ul {
        display: none;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links ul li {
        margin: 0;
    }

    .contact-form-container {
      padding: 1rem;
    }
  }
  
/* Success Page Styles */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 1.5rem;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-details {
  margin: 2rem 0;
  color: var(--text-color);
}

.success-details p {
  margin-bottom: 1rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

#site-footer a,
#site-footer .logo-text,
footer .logo-text,
footer a {
  color: #fff !important;
} 
footer a:hover {
  color: #ffd700 !important;
} 

#site-footer .footer-logo a .logo-text:hover {
    color: #FFB900 !important;
} 