/* ============================================= */
/*              Global Styles                   */
/* ============================================= */
:root {
    /* Color Scheme */
    --primary: #1a3a6c;
    --primary-light: #2a4d8e;
    --primary-dark: #0d2a4d;
    --secondary: #e63946;
    --secondary-light: #f25f5f;
    --accent: #ffd166;
    --accent-light: #ffe08e;
    --light: #f8f9fa;
    --dark: #2d3748;
    --gray: #718096;
    --light-gray: #edf2f7;
    --white: #ffffff;
    --success: #38a169;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  


  
 
  /* ============================================= */
  /*              Hero Section                    */
  /* ============================================= */
  .contact-hero {
    background: linear-gradient(135deg, rgba(26, 58, 108, 0.95), rgba(13, 42, 77, 0.95)), 
                url('../images/contact-bg.jpg') center/cover no-repeat;
    padding: 160px 0 80px;
    color: var(--white);
    text-align: center;
    margin-top: 60px;
  }
  
  .contact-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .contact-hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    opacity: 0.9;
    line-height: 1.7;
  }
  
  .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }
  
  .breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .breadcrumb li a {
    color: var(--accent);
    font-weight: 500;
  }
  
  .breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: var(--space-xs);
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
  }
  
  /* ============================================= */
  /*              Contact Content                 */
  /* ============================================= */
  .contact-content {
    padding: var(--space-xl) 0;
    background-color: var(--light-gray);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }
  
  /* Contact Info */
.contact-infos {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl); /* Increased padding */
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--secondary);
  }
  
  .contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .contact-info h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    position: relative;
  }
  
  .contact-info h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: var(--radius-sm);
  }
  
  .info-item {
    display: flex;
    margin-bottom: var(--space-md);
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }
  
  .info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
  }
  
  .info-text p, 
  .info-text pre,
  .info-text a {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .info-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
  }
  
  .info-text pre {
    font-family: var(--font-main);
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  

  
  
 /* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl); /* Increased padding */
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--secondary);
  }
  
  .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .contact-form h2 {
    color: var(--primary);
    font-size: 1.75rem; /* Larger heading */
    margin-bottom: var(--space-xl); /* More space below heading */
    padding-bottom: var(--space-sm);
    position: relative;
  }
  
  .contact-form h2::after {
    content: '';
    position: absolute;
    width: 80px; /* Longer underline */
    height: 4px; /* Thicker underline */
    background: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: var(--radius-sm);
  }
  
  .form-group {
    margin-bottom: var(--space-lg); /* More space between fields */
  }
  
  .form-group label {
    display: block;
    margin-bottom: var(--space-sm); /* More space below labels */
    font-weight: 700; /* Bolder labels */
    color: var(--primary);
    font-size: 1.05rem; /* Larger label text */
  }
  
  .form-control {
    width: 100%;
    padding: 1rem 1.25rem; /* Larger padding */
    border: 2px solid var(--light-gray); /* Thicker border */
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1.1rem; /* Larger text */
    transition: var(--transition);
    background-color: #f8fafc;
    min-height: 3.5rem; /* Minimum height for inputs */
  }
  
  .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 58, 108, 0.15); /* More prominent focus */
    outline: none;
    background-color: var(--white);
  }
  
  textarea.form-control {
    min-height: 200px; /* Taller textarea */
    line-height: 1.6; /* Better line spacing */
    padding-top: 1rem; /* Better text alignment */
  }
  
  select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center; /* Better icon positioning */
    background-size: 18px 14px; /* Larger dropdown icon */
  }
  
  .submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem; /* Larger button */
    border-radius: var(--radius-lg); /* More rounded */
    font-size: 1.1rem; /* Larger text */
    font-weight: 700; /* Bolder text */
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* More letter spacing */
    margin-top: var(--space-sm);
  }
  
  .submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md); /* More prominent shadow */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-form {
      padding: var(--space-lg);
    }
    
    .contact-form h2 {
      font-size: 1.5rem;
    }
    
    .form-control {
      padding: 0.9rem 1.1rem;
      font-size: 1rem;
      min-height: 3rem;
    }
    
    textarea.form-control {
      min-height: 150px;
    }
    
    .submit-btn {
      padding: 1rem 1.5rem;
    }
  }
  /* ============================================= */
  /*              Map Section                     */
  /* ============================================= */
  .map-section {
    padding-bottom: var(--space-xl);
    background-color: var(--light-gray);
  }
  
  .map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    border: 10px solid var(--white);
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  
  
  /* ============================================= */
  /*              Back to Top                     */
  /* ============================================= */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
  }
  
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  
  /* ============================================= */
  /*              Responsive Design               */
  /* ============================================= */
  @media (max-width: 992px) {
    
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .map-container {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-hero {
      padding: 140px 0 60px;
    }
    
    .info-item {
      flex-direction: column;
    }
    
    .info-icon {
      margin-bottom: var(--space-sm);
    }
    
   
  }
  
  @media (max-width: 576px) {
    .contact-hero h1 {
      font-size: 1.8rem;
    }
    
    .contact-hero p {
      font-size: 1rem;
    }
    
    .map-container {
      height: 300px;
    }
    
  }