/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1e21;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Bar */
.top-bar {
    background-color: #3e4d44; /* Dark greenish tint */
    font-size: 12px;
    padding: 8px 0;
    color: #cbd5e0;
}

.top-bar a {
    color: inherit;
    text-decoration: none;
}

.top-right {
    display: flex;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    color: white;
}

.social-links span {
    margin-right: 5px;
    font-weight: bold;
}

/* Main Nav */
.main-nav {
    background-color: #1a1e21;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.nav-flex {
    justify-content: flex-end; /* Matches image alignment */
}

.nav-icons-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
}

.cart-icon {
    position: relative;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #fff;
    color: #000;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background-color: #e2e8f0;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
}

.logo-container {
    margin-bottom: 40px;
}

.main-logo {
    width: 100px; /* Adjust based on your image size */
    margin-bottom: 10px;
}

.logo-container h1 {
    font-size: 32px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e0;
}

.hero-content h2 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content h3 {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
}
/* Container and Layout */
.form-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    color: #e2e8f0;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    margin-bottom: 25px;
}

/* Inputs and Borders */
label {
    font-size: 14px;
    color: #cbd5e0;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    background-color: #1e262b;
    border: 1.5px solid #4a5568;
    border-radius: 4px;
    padding: 12px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

/* The Green Glow Effect from your image */
input:focus, .rich-text-editor:focus-within {
    border-color: #6ee7b7;
    box-shadow: 0 0 5px rgba(110, 231, 183, 0.3);
}

/* Checkboxes */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
}

input[type="checkbox"] {
    accent-color: #6ee7b7; /* Matches the green theme */
}

/* Rich Text Editor Mockup */
.rich-text-editor {
    border: 1px solid #4a5568;
    border-radius: 4px;
    background: #1a1e21;
}

.editor-toolbar {
    padding: 10px;
    border-bottom: 1px solid #4a5568;
    display: flex;
    align-items: center;
    gap: 15px;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: #4a5568;
}

.rich-text-editor textarea {
    width: 100%;
    height: 200px;
    background: transparent;
    border: none;
    padding: 15px;
    color: #a0aec0;
    resize: none;
    outline: none;
}

/* Footer Note */
.form-note {
    font-size: 11px;
    color: #a0aec0;
    margin: 15px 0 30px 0;
}

/* Submit Section */
.submit-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background: #2d3748;
    border: 2px solid #6ee7b7;
    color: white;
    padding: 12px 60px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.submit-arrow-container {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 100px;
}

/* Creating the L-shaped line from image */
.l-arrow {
    position: absolute;
    left: 45px;
    top: -20px;
    width: 100px;
    height: 50px;
    border-left: 2px solid #6ee7b7;
    border-bottom: 2px solid #6ee7b7;
}

.btn-secondary {
    background: #1a1e21;
    border: 2px solid #4fd1c5;
    color: white;
    padding: 10px 40px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

.site-footer {
    background-color: #1a1e21; /* Matches your header/body background */
    padding: 30px 0;
    border-top: 1px solid #333; /* Subtle separation from the body */
    color: white;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Chat Icon Styling */
.chat-bubble {
    background-color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

/* Navigation Links */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #6ee7b7; /* Subtle brand green hover effect */
}

/* Language Selector Styling */
.footer-right {
    display: flex;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 1px solid #4a5568; /* The thin line under 'ENGLISH' */
}

.language-selector i {
    font-size: 12px;
    color: #a0aec0;
}
/* Sticky Header logic */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures header stays above all other content */
    width: 100%;
    background-color: #1a1e21;
}

/* Dropdown Menu Styling */
.menu-wrapper {
    position: relative;
}

#menuToggle {
    cursor: pointer;
    font-size: 24px;
    transition: color 0.3s;
}

#menuToggle:hover {
    color: #6ee7b7;
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 45px;
    right: 0;
    background-color: #1e262b;
    border: 1px solid #4a5568;
    border-radius: 8px;
    list-style: none;
    min-width: 260px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Class added by JavaScript */
.dropdown-menu.active {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #3e4d44;
    color: #6ee7b7;
}

/* Style for the Demo button specifically */
.demo-link {
    color: #6ee7b7 !important;
    border-top: 1px solid #333;
    margin-top: 5px;
}
