﻿
:root {
    --primary-green: #303296;
    --dark-gray: #374151;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-gray: #6b7280;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 80px;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

    .logo img {
        height: 100%;
        width: auto;
        max-height: 40px;
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    /* Dropdown */
    .nav-links li {
        position: relative;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 180px;
    display: none;
    z-index: 1001;
}

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 14px;
        color: #374151;
        text-decoration: none;
        white-space: nowrap;
    }

        .dropdown-menu a:hover {
            background: #f3f4f6;
            color: var(--primary-green);
        }

.nav-links li:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu:hover {
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-green);
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    font-size: 1.2rem;
    color: var(--dark-gray);
    cursor: pointer;
}

.search-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #374151;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

    .search-icon::after {
        content: '';
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 6px;
        height: 2px;
        background: #374151;
        transform: rotate(45deg);
    }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--dark-gray);
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1001;
    padding-top: 80px;
    overflow-y: auto;
}

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

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-menu a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--dark-gray);
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s;
    }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            background: #f3f4f6;
            color: var(--primary-green);
        }

    .mobile-menu .dropdown-arrow {
        float: right;
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }

    .mobile-menu .dropdown-menu {
        position: static;
        display: none;
        background: #f9fafb;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }

        .mobile-menu .dropdown-menu a {
            padding-left: 2.5rem;
            font-size: 0.9rem;
        }

    .mobile-menu li:hover .dropdown-menu {
        display: block;
    }

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

    .mobile-overlay.active {
        display: block;
    }

.dropdown-arrow {
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    background: url('/images/1675911537438-contact.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    height: 600px;
    margin-top: 0;
    position: relative;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    padding: 0 0 4rem 0;
}

/* Top Section - Map and Contact Info */
.top-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    margin-bottom: 4rem;
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Map Section */
.map-section {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 800px;
    background: var(--light-gray);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-gray);
    position: relative;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #dc2626;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

    .map-marker::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: 10px;
        height: 10px;
        background: var(--white);
        border-radius: 50%;
    }

.map-info {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    max-width: 300px;
    border: 1px solid #e5e7eb;
}

    .map-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: var(--dark-gray);
        font-weight: 700;
    }

    .map-info p {
        font-size: 1rem;
        color: var(--text-gray);
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .map-info a {
        color: var(--primary-green);
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

        .map-info a:hover {
            text-decoration: underline;
        }

/* Bottom Section - Text and Form */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Text Introduction */
.text-intro {
    background: var(--white);
    padding: 2rem;
}

    .text-intro h2 {
        font-size: 2rem;
        color: var(--dark-gray);
        margin-top: 0;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .text-intro .highlight-text {
        color: var(--primary-green);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .text-intro p {
        color: var(--text-gray);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .text-intro ul {
        list-style: none;
        padding: 0;
    }


    .text-intro li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: var(--text);
        line-height: 1.6;
        font-size: 1rem;
    }

        .text-intro li::before {
            content: '✓';
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 0.1rem;
            flex-shrink: 0;
        }

/* Contact Form */
.contact-form-section {
    background: var(--white);
}

.form-title {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

    .form-title .highlight {
        color: var(--primary-green);
    }

.form-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

    .form-description p {
        margin-bottom: 1rem;
    }

.contact-form {
    background: var(--white);
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

    .form-group label {
        display: block;
        margin-top: 0;
        margin-bottom: 0.5rem;
        color: var(--dark-gray);
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.3s;
        background: #f9fafb;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
        }

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

.required {
    color: #dc2626;
}

.submit-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .submit-btn:hover {
        background: #212529;
    }

/* Contact Information */
.contact-info {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem;
    border-radius: 0 10px 10px 0;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-info h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        color: var(--white);
        font-weight: 700;
    }

image.png .contact-info p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #d1d5db;
    font-size: 1.1rem;
}

.contact-details {
    list-style: none;
}

Quality Door Handle Manufacturer _ Tallsen.png
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    padding: 0.5rem 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--white);
    font-weight: normal;
}

.contact-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e7eb;
}

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

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: 400px;
    }

    .main-content {
        margin-top: -80px;
    }

    .top-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-container {
        border-radius: 10px 10px 0 0;
    }

    .contact-info {
        border-radius: 0 0 10px 10px;
        height: auto;
        min-height: 400px;
    }

    .map-container {
        height: 400px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .text-intro h2 {
        font-size: 1.5rem;
    }

    .map-info {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-mission {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: rgba(204, 204, 204, 1);
    line-height: 1.6;
    max-width: 600px;
}

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

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

    .footer-column a:hover {
        color: #fff;
    }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
    overflow: hidden;
}

    .social-icon:hover {
        transform: scale(1.1);
    }

    .social-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-mission {
        font-size: 1.2rem;
    }
}
