/* Contact Form Section */
.contact-form-section {
  padding: 100px 0 80px;
  background-color: transparent;
}

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

.contact-mega-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  color: #111;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 60px;
  text-transform: capitalize;
}

.contact-split {
  display: flex;
  gap: 80px;
}

/* Left Info Column */
.contact-info {
  flex: 0 0 280px;
}

.contact-info-block {
  margin-bottom: 40px;
}

.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.contact-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.contact-info-text a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-text a:hover {
  color: #FF4326;
}

/* Right Form Column */
.contact-form {
  flex: 1;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.form-label .required {
  color: #FF4326;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #111;
  background: transparent;
  border: none;
  border-bottom: 1px solid #D0D0D0;
  outline: none;
  transition: border-color 0.3s;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: #111;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

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

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #FF4326;
  cursor: pointer;
}

.form-checkbox-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #777;
  cursor: pointer;
}

.btn-submit {
  display: inline-block;
  background-color: #111;
  color: #FFF;
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #FF4326;
  box-shadow: 0 8px 25px rgba(255,67,38,0.25);
}

/* Mobile Responsiveness for Contact Form */
@media (max-width: 992px) {
  .contact-split {
    flex-direction: column;
    gap: 50px;
  }
  
  .contact-info {
    flex: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-mega-title {
    font-size: clamp(50px, 15vw, 100px);
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 30px;
  }

  .contact-mega-title {
    font-size: 60px;
  }
}

/* New Premium Footer System */
.footer-main {
  background-color: #FFFFFF;
  padding: 120px 0 40px;
  color: #111;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle background curve - simulated with a pseudo-element or skip for now if too complex */
.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(255, 67, 38, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 100px;
}

/* Left Brand Side */
.footer-brand-side {
  flex: 1.2;
  max-width: 500px;
}

.footer-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #111;
  margin-bottom: 30px;
}

.footer-tagline span {
  color: #FF4326; /* Brand Red */
}

.footer-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 50px;
  max-width: 400px;
}

/* Circular Badge */
.footer-badge-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.connect-badge {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-arrow {
  width: 54px;
  height: 54px;
  background-color: #FF4326;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.connect-badge:hover .badge-arrow {
  transform: scale(1.1) rotate(45deg);
}

/* Links Grid */
.footer-links-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #111;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #FF4326;
  border-radius: 50%;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #777;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #111;
}

/* Contact Specific Styling */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #777;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: #111;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #FF4326;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F8F8F8;
  color: #111;
  padding: 18px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.footer-btn:hover {
  background-color: #111;
  color: #FFF;
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: #111;
}

.footer-logo-brand img {
  height: 30px;
  width: auto;
}

.footer-copyright {
  font-size: 13px;
  color: #999;
}

.footer-legal-links {
  display: flex;
  gap: 30px;
}

.footer-legal-links a {
  text-decoration: none;
  color: #999;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #111;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
}

.footer-social-icons a {
  color: #111;
  font-size: 18px;
  transition: color 0.2s, transform 0.2s;
}

.footer-social-icons a:hover {
  color: #FF4326;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .footer-top {
    flex-direction: column;
    gap: 60px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-tagline {
    font-size: 56px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-legal-links {
    justify-content: center;
  }
}
