* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 8px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #003366;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.navbar .logo img.logo-img {
    height: 48px;
    width: auto;
}

.navbar ul.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.navbar ul.nav-links li a {
    text-decoration: none;
    color: #003366;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.2s;
}

.navbar ul.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #c0392b;
    transition: 0.3s;
}

.navbar ul.nav-links li a:hover::after { width: 100%; }
.navbar ul.nav-links li a:hover { color: #c0392b; }

.search-container { display: flex; align-items: center; }

.search-input {
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid #003087;
    font-size: 14px;
    width: 180px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus { border-color: #c0392b; }

.search-button {
    background: #003087;
    border: none;
    color: white;
    padding: 7px 12px;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 5px;
    transition: background 0.3s;
}

.search-button:hover { background: #c0392b; }

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #003366;
}

/* ===== HERO ===== */
.contact-hero {
    position: relative;
    background: url('IMG-20240703-WA0090.jpg') no-repeat center center/cover;
    min-height: 340px;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 500px;
}

/* ===== MAIN SECTION ===== */
.contact-main {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ===== INFO CARDS ===== */
.contact-info {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: transform 0.2s;
    border-left: 4px solid #c0392b;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: #c0392b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
}

.info-text a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover { text-decoration: underline; }

.social-row {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.social-row p {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-3px);
}

/* ===== FORM ===== */
.contact-form-wrap {
    flex: 2;
    min-width: 300px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}

.form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: #888;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #222;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: Arial, sans-serif;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c0392b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: #c0392b;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
}

.submit-btn:hover { background: #a93226; }
.submit-btn:active { transform: scale(0.98); }
.submit-btn:disabled { background: #aaa; cursor: not-allowed; }

/* ===== SUCCESS STATE ===== */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 300px;
}

.success-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.form-success h3 {
    font-size: 26px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.reset-btn {
    background: none;
    border: 2px solid #c0392b;
    color: #c0392b;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.reset-btn:hover {
    background: #c0392b;
    color: #fff;
}

/* ===== MAP ===== */
.map-section {
    background: #fff;
    padding: 50px 24px;
    text-align: center;
    border-top: 1px solid #eee;
}

.map-header {
    margin-bottom: 24px;
}

.map-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 6px;
}

.map-header p {
    font-size: 15px;
    color: #888;
}

.map-wrap {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 3px solid #c0392b;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
.footer {
    background-color: #001F3F;
    color: #fff;
    padding: 40px 20px 0;
    border-top: 3px solid #000;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col { flex: 1; min-width: 180px; }

.footer-col h4 {
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 15px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a,
.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover { text-decoration: underline; }

.footer p { font-size: 14px; opacity: 0.85; margin: 5px 0; }

.social-icons { display: flex; gap: 14px; margin-top: 10px; }

.social-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icons a:hover { transform: scale(1.2); }

.designer { margin-top: 14px; opacity: 0.8; font-size: 12px; }

.footer-bottom {
    text-align: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
}

.footer-bottom p { margin: 0; opacity: 0.8; }

@media (max-width: 768px) {
    .navbar {
        background-color: #d32f2f; /* solid mobile navbar */
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navbar .logo {
        display: none; /* hide logo on mobile */
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #fff;
    }

    .navbar ul.nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #d32f2f; /* solid red background */
        padding: 0;
        margin: 0;
        z-index: 999;
        list-style: none;
        border-top: 1px solid #b72b27; /* slightly darker top border */
    }

    .navbar ul.nav-links.active {
        display: flex;
    }

    .navbar ul.nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #b72b27; /* lines between items */
    }

    .navbar ul.nav-links li:last-child {
        border-bottom: none; /* remove last line */
    }

    .navbar ul.nav-links li a {
        display: block;
        padding: 15px 0;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
    }

    .navbar ul.nav-links li a:hover {
        background-color: #b72b27; /* darker hover */
    }

    .search-container {
        order: 2; /* keep search bar on right */
        width: auto;
    }

    
}

@media (max-width: 768px) {


    .contact-hero {
        min-height: 260px;
        padding: 40px 20px;
    }

    .hero-content h1 { font-size: 30px; }
    .hero-sub { font-size: 14px; }

    .contact-main {
        flex-direction: column;
        padding: 30px 16px;
        gap: 24px;
    }

    .contact-info { min-width: unset; width: 100%; }
    .contact-form-wrap { min-width: unset; width: 100%; padding: 24px 18px; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    .map-wrap iframe { height: 280px; }

    .footer-container { flex-direction: column; gap: 20px; }
    .footer-col { width: 100%; text-align: center; min-width: unset; }
    .social-icons { justify-content: center; }
}