body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding-top: 80px;
    /* Account for fixed navbar */
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    color: black;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1%;
}

/* Logo Styles */
.logo {
    width: 40px;
    height: 35px;
    border-radius: 15px;
    margin-right: 2rem;
}

.logo:hover {
    color: #ddd;
    transition: color 0.3s ease;
}

.logo-text {
    font-size: 15px;
    margin-bottom: 10%;
    margin-left: 1%;
    font-weight: 600;
    color: black;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f19292;
}

/* Underline Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger Animation to Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background-color: black;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 5%;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f19292;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 3px 20px;
    }

    .nav-container {
        height: 40px;
    }

    .nav-logo {
        margin-top: 5%;
    }

    body {
        padding-top: 60px;
    }

    .mobile-menu {
        top: 60px;
        margin: 0 2%;
        z-index: 1001;
        /* Ensure this is also set in media query */
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-logo {
        margin-top: 5%;
    }

    .mobile-menu {
        margin: 0 1%;
        padding: 1.5rem;
    }

    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .navbar {
        padding: 20px 20px;
    }

    .nav-logo {
        margin-bottom: 3%;
    }

    .mobile-menu {
        border-radius: 0 0 50% 50%;
        padding: 4rem;
    }

    .mobile-nav-links li {
        margin: 0.8rem 0;
    }

    .mobile-nav-links a {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

/* Large screens */
@media screen and (min-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 3rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (orientation: landscape) {
    .nav-links {
        top: 60px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-header h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Social Medias */
.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.fa-whatsapp {
    color: rgb(13, 243, 13);
    font-size: 2rem;
}

.fa-linkedin {
    color: rgb(0, 183, 255);
    font-size: 2rem;
}

.fa-envelope {
    color: black;
    font-size: 2rem;
}

/* X (Twitter) SVG specific styling */
.social-icon svg {
    width: 32px;
    height: 32px;
    margin-top: 12%;
}

.company-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.detail-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-item strong {
    min-width: 80px;
    color: #fff;
}

.hours-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 15px;
    border: 2px dashed #e1e5e9;
    border-radius: 8px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    border-color: #667eea;
    background: #f0f2ff;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.recaptcha-notice {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* Regional Presence Section */
.regional-section {
    padding: 80px 0;
    background: white;
}

.regional-header {
    text-align: center;
    margin-bottom: 60px;
}

.regional-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.regional-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.regional-card:hover {
    transform: translateY(-10px);
}

.regional-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.regional-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Media Queries */

/* Large Desktop */
@media (min-width: 1200px) {
    .contact-header h1 {
        font-size: 3.5rem;
    }

    .contact-content {
        gap: 80px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (orientation: landscape) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        gap: 40px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .regional-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .regional-section {
        padding: 60px 0;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 1.3rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .regional-card {
        padding: 30px 20px;
    }

    .form-group,
    input,
    textarea {
        width: 90%;
    }
}

/* Small Mobile */
@media (max-width: 320px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-header h2 {
        font-size: 1.1rem;
    }

    .contact-info,
    .contact-form {
        padding: 15px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .contact-form {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
}

/* Print Styles */
@media print {
    .contact-section {
        background: white !important;
        color: black !important;
    }

    .contact-info {
        background: #f8f9fa !important;
        color: black !important;
    }

    .btn {
        display: none;
    }
}