/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    z-index: 10;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent !important; /* Force transparent background */
    backdrop-filter: none; /* Remove any blur effect */
}

.logo-img {
    height: 3.6rem;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3b82f6;
}

.dropdown {
    cursor: pointer;
}

.call-now {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mobile-bg {
    display: none;
}

.desktop-bg {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 28, 106, 0.7);
    z-index: -1;
}

.contact-panel:active ~ .hero-overlay {
    background: rgba(12, 28, 106, 0.15);
}

/* Contact Panel */
.contact-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    display: flex;
    max-width: 1000px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
    color: #1f2937;
}

.info-logo-img {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.location {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #0f16b3;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f16b3;
}

.address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #6b7280;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.contact-item .label {
    font-weight: 600;
    min-width: 80px;
    margin-right: 1rem;
    color: #0f16b3;
}

.contact-item .value {
    color: #6b7280;
}

.copyright {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: auto;
}

/* Contact Form */
.contact-form {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
    color: #1f2937;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f16b3;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid #e8b417;
    background: transparent;
    font-size: 1rem;
    color: #1f2937;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #0f16b3;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.submit-btn {
    background: #0f16b3;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
}

.submit-btn:hover {
    background: #0e1372;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 22, 179, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .call-now {
        display: none;
    }
    
    .hero {
        padding-top: 0;
        padding-bottom: 2rem;
    }
    
    .contact-panel {
        flex-direction: column;
        width: 95%;
        margin: 1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        float: none;
        margin-top: 1rem;
    }
    
    .mobile-bg {
        display: block;
    }
    
    .desktop-bg {
        display: none;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .header {
        padding: 0.75rem;
    }
    
    .logo-img {
        height: 2.5rem;
    }
    
    .hero {
        padding-top: 0;
    }
    
    .contact-panel {
        margin: 0.5rem;
        border-radius: 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .call-now {
        display: none;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-panel {
        max-width: 900px;
        width: 95%;
    }
    
    .contact-info,
    .contact-form {
        padding: 2.5rem;
    }
    
    .info-title {
        font-size: 1.6rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .call-now {
        display: none;
    }
}

/* Large Desktop Styles */
@media (min-width: 1025px) {
    .contact-panel {
        max-width: 1200px;
    }
    
    .contact-info,
    .contact-form {
        padding: 4rem;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
    
    .submit-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
}
