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

:root {
    --dark: #000000;
    --dark-light: #1a1a1a;
    --primary: #000000;
    --primary-dark: #000000;
    --accent: #000000;
    --text: #000000;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --gray: #f5f5f5;
    --border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation - Professional Tech */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
}

.nav-menu a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.nav-menu a:hover::after {
    width: 100%;
}

.language-switcher {
    margin-left: 2rem;
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 400;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 4px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
}

/* Hero - Tech Forward */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 100px;
    position: relative;
    background: var(--gray);
    overflow: hidden;
}

.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('branding/roboaibackround.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--dark);
    margin-bottom: 2rem;
    position: relative;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.btn {
    padding: 16px 32px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10, 14, 39, 0.15);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

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

.hero-background {
    display: none;
}

/* Statistics - Professional Metrics */
.stats-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 40px;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--white);
    display: block;
}

.stat-number::after {
    content: '+';
    color: var(--primary);
    font-size: 0.7em;
    margin-left: 0.1em;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

/* Feature Cards - Clean Tech */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}


.feature-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}


.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.two-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.company-details {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.company-detail-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

.company-detail-item strong {
    font-weight: 500;
    color: var(--dark);
    display: inline-block;
    min-width: 100px;
}

.about-features {
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.about-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.about-icon i {
    font-size: 1.2rem;
}

.about-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.about-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.visual-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.visual-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.visual-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Partnership Cards - Professional */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.partnership-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.partnership-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
    opacity: 0;
}

.partnership-card:hover::after {
    opacity: 1;
}

.partnership-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}


.partnership-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.partnership-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.partnership-cta {
    text-align: center;
    padding: 3rem;
    background: var(--dark);
    color: var(--white);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.partnership-cta h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.partnership-cta p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Trust Badges Section */
.trust-section {
    background: var(--gray);
    padding: 60px 40px;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.trust-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Partner Logos Section */
.partners-section {
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.partner-logo {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.partner-logo:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.partner-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    padding: 1rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    background: var(--white);
}

.partner-logo:hover .partner-img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-placeholder {
    width: 100%;
    height: 120px;
    background: var(--gray);
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px dashed var(--border);
}

.partner-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
    opacity: 0.5;
}

.partner-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--border);
}

.author-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ODM/OEM Section */
.odm-oem-intro {
    margin-bottom: 3rem;
}

.odm-oem-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.odm-oem-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.odm-oem-feature:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.odm-oem-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.odm-oem-feature h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.odm-oem-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.odm-oem-benefits {
    position: relative;
}

.benefit-card {
    background: var(--dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-list li {
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Applications */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.application-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
}

.application-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.application-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--dark);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.application-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.application-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.application-list {
    list-style: none;
    margin-top: 1.5rem;
}

.application-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.application-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Contact - Professional Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.form-group input,
.form-group textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-link:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

.social-link-inline {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.social-link-inline:hover {
    text-decoration: underline;
}

/* Platform Features */
.platform-features {
    margin-top: 2rem;
}

.platform-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.platform-icon {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}


.platform-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.platform-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        padding: 0 20px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #000000;
        width: 100%;
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        width: 100%;
        color: #ffffff !important;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-grid,
    .partnership-grid,
    .applications-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

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

    .odm-oem-features {
        gap: 1.5rem;
    }

    .odm-oem-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .form-group input,
    .form-group textarea,
    .form-select {
        font-size: 16px;
        padding: 12px 16px;
        min-height: 44px;
    }

    .contact-item {
        padding: 1rem 0;
    }

    .language-switcher {
        margin-left: 1rem;
    }

    .lang-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .company-details {
        font-size: 0.9rem;
    }

    .company-detail-item {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    .logo-img {
        height: 35px;
    }
}
