/* Modern contact section for Lotus Media Studio */
.contact-section {
  background: #fdfdfd; /* Very slight off-white for contrast */
  padding: 80px 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
  padding: 0 20px;
}

/* --- Card Styles --- */
.contact-form, .contact-info {
  flex: 1 1 450px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06); /* Softer, deeper shadow */
  border: 1px solid rgba(0,0,0,0.03); /* Subtle border definition */
}

/* --- Form Styling --- */
.contact-form h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #222;
  font-weight: 700;
}

.contact-form p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
    position: relative;
}

/* Modern Input Fields */
.contact-form input, 
.contact-form textarea {
  width: 100%;
  border: 2px solid #f0f0f0; /* Thicker, lighter border default */
  border-radius: 8px;
  padding: 16px;
  font-size: 1rem;
  background: #fcfcfc;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #333;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

/* Focus State - The "Stylish" part */
.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #b87333; /* Use your brand accent color here (bronze/gold) */
  background: #fff;
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Button Styling --- */
.submit-btn {
  background: #222f3e; /* Dark navy */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(34, 47, 62, 0.2);
}

.submit-btn:hover {
  background: #b87333; /* Hover to brand accent color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.3);
}

/* --- Contact Info Side --- */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #b87333;
    background: rgba(184, 115, 51, 0.1);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: #333;
}

.info-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding-left: 80px; /* Align with text */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #b87333;
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-form, .contact-info {
      padding: 30px 20px;
  }
  
  .social-links {
      padding-left: 0;
      justify-content: center;
  }
}