/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'SF Pro', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.mali-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.mali-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.mali-header .mali-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.company-logo {
    width: 180px;
    height: 60px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.mali-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.mali-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mali-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.mali-nav a:hover::after,
.mali-nav a.active::after {
    width: 100%;
}

.mali-nav a:hover,
.mali-nav a.active {
    color: #0066cc;
}

.mali-mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.mali-contact-hero {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.mali-contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mali-contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Contact Info Section */
.mali-contact-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.mali-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mali-contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mali-contact-card:hover {
    transform: translateY(-5px);
}

.mali-contact-card i {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
}

.mali-contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.mali-contact-card p {
    color: #666;
    margin-bottom: 10px;
}

/* Contact Form Section */
.mali-contact-form {
    padding: 80px 0;
}

.mali-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.mali-form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.mali-form-content p {
    color: #666;
    margin-bottom: 30px;
}

.mali-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mali-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mali-form-group label {
    font-weight: 500;
    color: #333;
}

.mali-form-group input,
.mali-form-group select,
.mali-form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.mali-form-group input:focus,
.mali-form-group select:focus,
.mali-form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.mali-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Branches Section */
.mali-branches {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.mali-branches h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.mali-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mali-branch-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mali-branch-card:hover {
    transform: translateY(-5px);
}

.mali-branch-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.mali-branch-card p {
    color: #666;
    margin-bottom: 10px;
}

/* Feedback Section */
.mali-feedback {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
}

.mali-feedback h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mali-feedback p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.mali-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.mali-button-primary {
    background: #ffd700;
    color: #333;
}

.mali-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.mali-footer {
    background: #333;
    color: #fff;
    padding: 80px 0 20px;
}

.mali-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.mali-footer-logo .company-logo {
    margin-bottom: 20px;
}

.mali-footer-logo p {
    color: #999;
}

.mali-footer-links h3,
.mali-footer-contact h3 {
    margin-bottom: 20px;
    color: #ffd700;
}

.mali-footer-links ul {
    list-style: none;
}

.mali-footer-links a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.mali-footer-links a:hover {
    color: #ffd700;
}

.mali-footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mali-footer-contact i {
    color: #ffd700;
}

.mali-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mali-social-link {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.mali-social-link:hover {
    color: #ffd700;
}

.mali-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mali-header .mali-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .mali-nav {
        display: none;
    }

    .mali-mobile-menu {
        display: block;
    }

    .mali-contact-hero {
        padding: 120px 0 60px;
    }

    .mali-contact-hero h1 {
        font-size: 36px;
    }

    .mali-contact-hero p {
        font-size: 18px;
    }

    .mali-form-grid {
        grid-template-columns: 1fr;
    }

    .mali-map {
        order: -1;
    }
} 