/* ============================================ */
/*                Contact Page                   */
/* ============================================ */
/* Contact Hero Section */
@media only screen and (min-width: 0rem) {
  #contact-hero {
    padding: var(--sectionPadding);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
  }
  #contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    z-index: 1;
  }
  #contact-hero .cs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-hero .cs-content {
    max-width: 48.75rem;
  }
  #contact-hero .cs-topper {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64ffda;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  #contact-hero .cs-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1em;
    text-align: center;
    max-width: 100%;
    margin: 0 0 2rem 0;
    color: #fff;
  }
  #contact-hero .cs-color {
    background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  #contact-hero .cs-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6em;
    text-align: center;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto;
    color: #e6f1ff;
    opacity: 0.9;
  }
}
/* Contact Form Section */
@media only screen and (min-width: 0rem) {
  #contact-form {
    padding: var(--sectionPadding);
    background: #fff;
  }
  #contact-form .cs-container {
    width: 100%;
    max-width: 60rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-form .cs-content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48.75rem;
  }
  #contact-form .cs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    color: #0f0f23;
  }
  #contact-form .cs-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6em;
    text-align: center;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto;
    color: #4a5568;
  }
  .cs-form {
    width: 100%;
    max-width: 48.75rem;
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  .cs-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .cs-input-group {
    display: flex;
    flex-direction: column;
  }
  .cs-input-group.cs-full-width {
    grid-column: 1/-1;
  }
  .cs-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f0f23;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .cs-input,
  .cs-select,
  .cs-textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
    color: #0f0f23;
  }
  .cs-input:focus,
  .cs-select:focus,
  .cs-textarea:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
  }
  .cs-textarea {
    resize: vertical;
    min-height: 120px;
  }
  .cs-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
  }
  .cs-checkbox {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #64ffda;
    cursor: pointer;
  }
  .cs-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  .cs-hidden {
    display: none;
  }
}
/* Contact Info Section */
@media only screen and (min-width: 0rem) {
  #contact-info {
    padding: var(--sectionPadding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  #contact-info .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-info .cs-content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48.75rem;
  }
  #contact-info .cs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    color: #0f0f23;
  }
  #contact-info .cs-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6em;
    text-align: center;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto;
    color: #4a5568;
  }
  .cs-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 70rem;
  }
  .cs-contact-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  .cs-contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #64ffda;
  }
  .cs-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f23;
  }
  .cs-contact-item .cs-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #0f0f23;
  }
  .cs-contact-item .cs-item-text {
    font-size: 1rem;
    line-height: 1.6em;
    color: #4a5568;
    margin: 0 0 0.5rem 0;
  }
  .cs-contact-item .cs-item-text:last-child {
    margin-bottom: 0;
  }
  .cs-contact-item a {
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .cs-contact-item a:hover {
    color: #00d4ff;
  }
}
/* Contact Social Section */
@media only screen and (min-width: 0rem) {
  #contact-social {
    padding: var(--sectionPadding);
    background: #fff;
    text-align: center;
  }
  #contact-social .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-social .cs-content {
    max-width: 48.75rem;
    margin-bottom: 3rem;
  }
  #contact-social .cs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    color: #0f0f23;
  }
  #contact-social .cs-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6em;
    text-align: center;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto;
    color: #4a5568;
  }
  .cs-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 70rem;
  }
  .cs-social-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .cs-social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #64ffda;
    text-decoration: none;
    color: inherit;
  }
  .cs-social-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f23;
    transition: transform 0.3s ease;
  }
  .cs-social-card:hover .cs-social-icon {
    transform: scale(1.1);
  }
  .cs-social-card .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #0f0f23;
  }
  .cs-social-card .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.6em;
    color: #4a5568;
    margin: 0;
  }
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
  .cs-form-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cs-form {
    padding: 2rem 1.5rem;
  }
  .cs-contact-grid,
  .cs-social-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cs-contact-item,
  .cs-social-card {
    padding: 2rem 1.5rem;
  }
}
/* Button Styles */
.cs-button-solid {
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #64ffda 0%, #00d4ff 100%);
  color: #0f0f23;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.cs-button-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
  text-decoration: none;
  color: #0f0f23;
}

.cs-button-solid:active {
  transform: translateY(0);
}

/*# sourceMappingURL=contact.css.map */
