/* ==========================================================================
   CONTACT PAGE - PROFESSIONAL DESIGN
   Visually Stunning & Modern Contact Interface
   ========================================================================== */

/* ==========================================================================
   HERO SECTION - ENHANCED DESIGN
   ========================================================================== */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-hex-05070d);
    padding: 6rem 5% 5rem;
    overflow: hidden;
}

.contact-hero::before {
    content: none;
}

.contact-gradient-blinds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 3rem 2rem;

}

.contact-hero-tagline h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-hero-tagline .highlight {
    position: relative;
    color: var(--primary-color);
}
.contact-hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Enhanced Animations */
@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes highlightPulse {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 10px var(--color-rgba-rgba-0-102-255-0d5);
        transform: scaleX(0.9);
    }
    50% {
        box-shadow: 0 0 25px var(--color-rgba-rgba-0-102-255-0d8);
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
    filter: drop-shadow(0 -5px 10px var(--color-rgba-rgba-0-0-0-0d2));
}

/* ==========================================================================
   CONTACT GRID SECTION - PROFESSIONAL LAYOUT
   ========================================================================== */
.contact-grid-section {
    padding: 8rem 5%;
    background: var(--color-hex-05070d);
    position: relative;
}

.contact-grid-section::before {
    content: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--color-rgba-rgba-255-255-255-0d2);
    border-radius: 999px;
}

.section-header p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CONTACT FORM - PROFESSIONAL DESIGN
   ========================================================================== */
.contact-form-container {
    background: var(--color-rgba-rgba-10-14-22-0d7);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 2.5rem;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d08);
    box-shadow: 0 18px 36px var(--color-rgba-rgba-0-0-0-0d4);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: none;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    font-family: var(--font-ui);
    letter-spacing: 0.01em;
    color: var(--text-primary);
    text-transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d08);
    background: var(--color-rgba-rgba-8-12-20-0d7);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--color-rgba-rgba-0-140-255-0d15);
    background: var(--color-rgba-rgba-8-12-20-0d85);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-rgba-rgba-255-255-255-0d4);
    font-style: normal;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

/* Professional Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d08);
    background: var(--color-rgba-rgba-8-12-20-0d7);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-shadow: none;
}

.dropdown-selected:hover,
.dropdown-selected.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--color-rgba-rgba-0-140-255-0d15);
    background: var(--color-rgba-rgba-8-12-20-0d85);
}

.dropdown-selected .placeholder {
    color: var(--color-rgba-rgba-255-255-255-0d4);
    font-style: italic;
}

.dropdown-arrow {
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
  background: var(--dropdown-bg);
  border: var(--dropdown-border);
  border-radius: var(--dropdown-radius);
  box-shadow: var(--dropdown-shadow);
  padding: 8px;
    opacity: 0;
    visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-speed) ease;
    z-index: 1000;
  overflow: hidden;
}

.dropdown-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
  padding: 10px 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--color-transparent);
  border-radius: var(--dropdown-item-radius);
  margin: 5px 0;
    position: relative;
    overflow: hidden;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        var(--color-transparent),
        var(--color-rgba-rgba-0-102-255-0d1),
        var(--color-transparent));
    transition: left 0.3s ease;
}

.dropdown-option:hover {
  background: var(--dropdown-item-hover-bg);
  border-color: var(--dropdown-item-hover-border);
}

.dropdown-option:hover::before {
    left: 100%;
}

.dropdown-option.selected {
  color: var(--text-primary);
  background: var(--dropdown-item-selected-bg);
  border-color: var(--dropdown-item-selected-border);
  box-shadow: 0 0 14px var(--color-rgba-rgba-0-102-255-0d35);
  font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkbox-group a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.submit-btn {
  color: var(--color-white);
  background: linear-gradient(
    135deg,
    var(--action-primary-bg, #15803d) 0%,
    var(--action-primary-hover, #166534) 100%
  );
  background-size: 300% 300%;
  border: 1px solid var(--action-primary-hover, #166534);
  box-shadow: 0 4px 15px var(--action-primary-shadow, rgba(21, 128, 61, 0.32)), 0 0 30px rgba(21, 128, 61, 0.18),
    inset 0 1px 0 var(--color-rgba-rgba-255-255-255-0d2);
  position: relative;
  overflow: hidden;
  animation: gradientShift 4s ease-in-out infinite;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-transparent),
    var(--color-rgba-rgba-255-255-255-0d2),
    var(--color-transparent)
  );
  transition: left 0.5s ease;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    var(--color-rgba-rgba-255-255-255-0d3) 0%,
    var(--color-transparent) 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.submit-btn:hover {
    background: linear-gradient(
        135deg,
        var(--action-primary-hover, #166534) 0%,
        var(--action-primary-active, #14532d) 100%
    );
    background-size: 300% 300%;
    box-shadow: 0 8px 32px var(--color-rgba-rgba-37-99-235-0d5),
        0 0 0 1px var(--color-rgba-rgba-255-255-255-0d1), inset 0 1px 0 var(--color-rgba-rgba-255-255-255-0d2);
    transform: scale(1.02);
    animation: gradientShift 1.5s ease-in-out infinite,
        buttonPulse 2s ease-in-out infinite;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover::after {
    width: 120px;
    height: 120px;
    opacity: 0.6;
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 16px var(--action-primary-shadow, rgba(21, 128, 61, 0.32));
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 32px var(--color-rgba-rgba-37-99-235-0d5),
        0 0 0 3px var(--color-rgba-rgba-37-99-235-0d3), inset 0 1px 0 var(--color-rgba-rgba-255-255-255-0d2);
    animation: gradientShift 1.5s ease-in-out infinite,
        buttonPulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 32px var(--color-rgba-rgba-37-99-235-0d5),
            0 0 0 1px var(--color-rgba-rgba-255-255-255-0d1), inset 0 1px 0 var(--color-rgba-rgba-255-255-255-0d2);
    }
    50% {
        box-shadow: 0 12px 40px var(--color-rgba-rgba-37-99-235-0d7),
            0 0 0 1px var(--color-rgba-rgba-255-255-255-0d15), inset 0 1px 0 var(--color-rgba-rgba-255-255-255-0d3);
    }
}

.submit-btn:focus:not(:hover) {
    transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT INFO - MODERN CARDS
   ========================================================================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-rgba-rgba-10-14-22-0d7);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d08);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 28px var(--color-rgba-rgba-0-0-0-0d35);
}

.info-card::before {
    content: none;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px var(--color-rgba-rgba-0-0-0-0d4);
    border-color: var(--color-rgba-rgba-255-255-255-0d16);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-rgba-rgba-255-255-255-0d08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 0 1px var(--color-rgba-rgba-255-255-255-0d12);
    transition: all 0.2s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.05);
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.info-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.info-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.info-card a:hover::after {
    width: 100%;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-rgba-rgba-255-255-255-0d1);
}

.social-connect h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-rgba-rgba-10-10-25-0d6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a i {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px var(--color-rgba-rgba-0-102-255-0d3);
    border-color: var(--primary-color);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover i {
    color: var(--color-white);
    transform: scale(1.1);
}


/* ==========================================================================
   FAQ SECTION - MODERN ACCORDION
   ========================================================================== */


/* ==========================================================================
   CTA SECTION - ENHANCED DESIGN
   ========================================================================== */
.cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg,
        var(--color-rgba-rgba-0-102-255-0d1) 0%,
        var(--color-rgba-rgba-123-90-255-0d08) 50%,
        var(--color-rgba-rgba-0-255-204-0d06) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, var(--color-rgba-rgba-0-102-255-0d15) 0%, var(--color-transparent) 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,
        var(--text-primary) 0%,
        var(--primary-color) 50%,
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--color-transparent);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg,
        var(--action-primary-bg, #15803d) 0%,
        var(--action-primary-hover, #166534) 100%);
    background-size: 200% 200%;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: var(--font-ui);
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 25px var(--color-rgba-rgba-0-102-255-0d3),
        0 0 0 1px var(--color-rgba-rgba-255-255-255-0d1);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        var(--color-transparent),
        var(--color-rgba-rgba-255-255-255-0d2),
        var(--color-transparent));
    transition: left 0.5s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 15px 35px var(--color-rgba-rgba-0-102-255-0d4),
        0 0 0 1px var(--color-rgba-rgba-255-255-255-0d2);
    background-position: 100% 0;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-small {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container,
    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        padding: 6rem 5% 4rem;
    }

    .contact-hero-content {
        padding: 2rem 1.5rem;
    }

    .contact-grid-section,
    .map-section,
    .contact-faq,
    .cta {
        padding: 4rem 5%;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer p {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content {
        padding: 1.5rem 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .social-icons {
        justify-content: center;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.border-none {
    border: none !important;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* ==========================================================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.contact-form input:focus,
.contact-form textarea:focus,
.dropdown-selected:focus,
.submit-btn:focus,
.cta-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-form-container,
    .info-card {
        border-width: 2px;
    }

    .contact-form input,
    .contact-form textarea,
    .dropdown-selected {
        border-width: 2px;
    }
}

.contact-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 6vw 4rem;
    background: var(--color-hex-05070d);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-rgba-rgba-3-6-14-0d85) 0%,
        var(--color-rgba-rgba-5-8-18-0d7) 50%,
        var(--color-rgba-rgba-3-6-14-0d9) 100%
    );
    z-index: 1;
}

.contact-gradient-blinds {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: blur(3px) brightness(60%);
    transform: scale(1.03);
    z-index: 0;
}

.contact-hero-content {
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--color-rgba-rgba-255-255-255-0d45);
    font-weight: 600;
}

.contact-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.contact-hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-action {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d12);
    background: var(--color-rgba-rgba-12-16-24-0d7);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-action.muted {
    color: var(--color-rgba-rgba-255-255-255-0d7);
}

.contact-action:hover {
    border-color: var(--color-rgba-rgba-255-255-255-0d3);
    transform: translateY(-1px);
}

.contact-main {
    padding: 3rem 6vw 6rem;
    background: var(--color-hex-05070d);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-card,
.contact-info-card {
    background: var(--color-rgba-rgba-10-14-22-0d7);
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d08);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 36px var(--color-rgba-rgba-0-0-0-0d4);
}

.contact-form-card h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-form-note {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row.inline {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.contact-form label {
    font-size: 0.85rem;
    color: var(--color-rgba-rgba-255-255-255-0d7);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d08);
    background: var(--color-rgba-rgba-8-12-20-0d7);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-rgba-rgba-0-140-255-0d6);
    box-shadow: 0 0 0 2px var(--color-rgba-rgba-0-140-255-0d15);
}

.submit-btn {
    margin-top: 0.5rem;
    padding: 1.1rem 1.75rem;
    border-radius: 180px;
    border: 1px solid var(--color-rgba-rgba-255-255-255-0d1);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-block h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-rgba-rgba-255-255-255-0d55);
}

.contact-info-block p,
.contact-info-block a {
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-block a:hover {
    color: var(--color-rgba-rgba-255-255-255-0d7);
}

@media (max-width: 960px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 5rem 6vw 3rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}
