:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --surface: #f8fafc;
    --border: #e5e7eb;
    --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--surface);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .contact-page {
    padding: 120px 0 80px; /* space for fixed navbar */
    min-height: 100vh;
  }
  
  /* Header Styles */
  .contact-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  /* Background shapes to match site theme */
  .contact-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .contact-bg .cgrid {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(169,211,255,0.12), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(255,224,191,0.12), transparent 40%),
                radial-gradient(circle at 45% 80%, rgba(215,255,230,0.12), transparent 40%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 60%, transparent);
  }
  .contact-bg .cshape {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(22px);
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: cFloat 22s ease-in-out infinite alternate;
  }
  .contact-bg .cshape.c1 { left: 8%; top: 20%; background: #a9d3ff; }
  .contact-bg .cshape.c2 { right: 10%; top: 46%; background: #ffe0bf; animation-duration: 26s; }
  .contact-bg .cshape.c3 { left: 46%; bottom: 12%; background: #d7ffe6; animation-duration: 28s; }
  @keyframes cFloat { to { transform: translateY(-26px) translateX(16px) scale(1.06); } }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* Main Content Layout */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .contact-content-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  
  /* Contact Form Styles */
  .contact-form-section {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
  }
  
  .form-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  /* Status Messages */
  .status-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInDown 0.3s ease forwards;
  }
  
  .success-message {
    background: var(--accent-color);
    color: white;
  }
  
  .error-message {
    background: #e74c3c;
    color: white;
  }
  
  /* Form Styles */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
  }
  
  .form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: var(--gradient);
    color: white;
    width: 100%;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  }
  
  .btn-primary:active {
    transform: translateY(0);
  }
  
  .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Spinner */
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Contact Info Styles */
  .contact-info-section {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .company-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
  }
  
  .info-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  
  .contact-info-list {
    margin-bottom: 40px;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 18px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .info-item:nth-child(1) {
    animation-delay: 0.6s;
  }
  .info-item:nth-child(2) {
    animation-delay: 0.7s;
  }
  .info-item:nth-child(3) {
    animation-delay: 0.8s;
  }
  .info-item:nth-child(4) {
    animation-delay: 0.9s;
  }
  
  .info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .info-content h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
  }
  
  .info-content p {
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  /* Quick Contact */
  .quick-contact {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .quick-contact h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.2rem;
  }
  
  .quick-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .call-btn {
    background: var(--gradient);
    color: white;
  }
  
  .whatsapp-btn {
    background: #25d366;
    color: white;
  }
  
  .email-btn {
    background: var(--secondary-color);
    color: white;
  }
  
  .quick-btn:hover {
    transform: scale(1.05);
  }
  
  /* Social Links */
  .social-links h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.2rem;
  }
  
  .social-buttons {
    display: flex;
    gap: 15px;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .facebook-btn {
    background: #4267b2;
  }
  .linkedin-btn {
    background: #0077b5;
  }
  .twitter-btn {
    background: #1da1f2;
  }
  .instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .social-btn:hover {
    transform: scale(1.1);
  }
  
  /* Map Section */
  .map-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease 1s forwards;
  }
  
  .map-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
  }
  
  .map-container {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
  }
  
  .simple-address {
    text-align: center;
    padding: 20px 0;
  }
  
  .simple-address p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .simple-address .address-icon { color: #e74c3c; margin-right: 8px; }
  
  .simple-address p:first-child {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-primary);
  }
  
  .simple-address p:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .map-note {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Added card styling for form and info sections */
  .contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .form-card {
    animation: slideInLeft 0.6s ease 0.2s forwards;
  }
  
  .info-card {
    animation: slideInRight 0.6s ease 0.4s forwards;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .contact-content-cards {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .contact-card {
      padding: 30px 25px;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .quick-contact-buttons {
      flex-direction: column;
    }
  
    .quick-btn {
      justify-content: center;
    }
  
    .map-section {
      padding: 30px 20px;
    }
  
    .simple-address p:first-child {
      font-size: 1.1rem;
      color: var(--text-primary);
    }
  
    .simple-address p {
      font-size: 1rem;
      color: var(--text-secondary);
    }
  
    .map-container iframe {
      height: 300px;
    }
  
    .form-card,
    .info-card {
      animation: fadeInUp 0.6s ease forwards;
      transform: translateY(30px);
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    .contact-page {
      padding: 120px 0 40px; /* ensure space under fixed navbar on small devices */
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .info-item {
      padding: 12px;
    }
  
    .contact-card {
      padding: 25px 20px;
    }
  
    .map-title {
      font-size: 1.6rem;
    }
  
    .simple-address {
      padding: 15px 0;
    }
  
    .simple-address p:first-child {
      font-size: 1rem;
      color: var(--text-primary);
    }
  
    .simple-address p {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
  
    .map-container iframe {
      height: 250px;
    }
  
    .quick-contact,
    .map-section {
      padding: 20px;
    }
  }