/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-page {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-text p {
    color: #555;
    line-height: 1.6;
}

.contact-map {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #e8f4fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #3498db;
}

.contact-map i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.contact-map p {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Country-Specific Dropdown Styles */
.country-dropdown-container {
    margin-bottom: 20px;
}

.country-dropdown-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.country-dropdown-container select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Page Content Areas (for SPA-like navigation) *
.page-content {
    display: none;
}*/

.page-content.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-sticky {
        max-width: 500px;
        margin: 40px auto 0;
        height: auto;
    }
    
    .about-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-us-image {
        height: 350px;
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .carousel-content h2 {
        font-size: 2.2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .logos-container {
        gap: 20px;
    }
    
    .logo-item {
        width: 120px;
    }
    
    .cartoon-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .about-us-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        left: 5%;
        right: 5%;
    }
    
    .carousel-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .contact-form-container,
    .contact-form-sticky {
        padding: 25px;
    }
    
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-us-stats {
        grid-template-columns: 1fr;
    }
    
    .about-us-content h2 {
        font-size: 2rem;
    }
}

/*Contact Us form style*/
/* Contact Sidebar (Home Page - Compact Form) */
.contact-sidebar {
    position: relative;
}

.contact-form-sticky {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 10px;
}

.form-header h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.form-header p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 3px;
    min-height: 18px;
}

.submit-btn {
    padding: 12px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.form-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.form-footer i {
    margin-right: 5px;
}

/* Success Message */
.success-message {
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeIn 0.5s ease;
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*Maps New style*/
.contact-map {
 position: relative;
 border-radius: 12px;
 overflow: hidden;
 box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-link {
 display: block;
 position: relative;
}

.map-overlay {
 position: absolute;
 inset: 0;
 background: rgba(0,0,0,0.2);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 color: white;
 font-size: 16px;
 font-weight: 600;
 opacity: 0;
 transition: 0.3s;
}

.map-link:hover .map-overlay {
 opacity: 1;
 background: rgba(0,0,0,0.4);
}

.map-overlay i {
 font-size: 30px;
 margin-bottom: 8px;
}

/* ===========================
   CONTACT PAGE MOBILE
=========================== */
@media (max-width: 768px) {

  .contact-hero {
    padding: 60px 20px;
  }

  .contact-hero h1 {
    font-size: 2.1rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-page {
    padding: 40px 0;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  /* Justify intro text for professional look */
  .contact-info > p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 25px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .contact-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-map {
    height: 220px;
  }

  .contact-form-container {
    padding: 25px;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .contact-hero h1 {
    font-size: 1.9rem;
  }

  .contact-form-container {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}

