/* Contact Hero Section */
.contact-hero {
    background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
        radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
        linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 15% 20%, rgba(13, 159, 232, 0.1), transparent),
        radial-gradient(1px 1px at 85% 30%, rgba(237, 131, 33, 0.08), transparent),
        radial-gradient(1px 1px at 25% 80%, rgba(13, 159, 232, 0.06), transparent),
        radial-gradient(1px 1px at 70% 70%, rgba(237, 131, 33, 0.1), transparent);
    background-size: 400px 300px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-10px) translateY(-5px);
    }

    50% {
        transform: translateX(5px) translateY(-10px);
    }

    75% {
        transform: translateX(-5px) translateY(5px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--dark-text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-highlight {
    font-weight: 500;
    background: linear-gradient(135deg, #0d9fe8 0%, #ed8321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--dark-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Contact Section */
.contact-section {
    padding: 80px 0 80px;
    min-height: 100vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Left Side - Contact Info */
.contact-info {
    background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
        radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
        linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--dark-text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info .subtitle {
    font-size: 18px;
    color: var(--dark-text-secondary);
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-methods {
    flex-grow: 1;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method.map {
    align-items: flex-start;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method:hover {
    transform: translateX(8px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-blue-text), var(--brand-orange-text));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 4px;
}

.method-details p {
    font-size: 14px;
    color: var(--dark-text-secondary);
}

.method-details a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--brand-orange-text);
}

.office-info {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.office-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 12px;
}

.office-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark-text-secondary);
    font-size: 14px;
}

.office-detail i {
    width: 16px;
    color: var(--brand-orange-text);
    margin-top: 2px;
}

/* Right Side - Contact Form */
.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-blue-text);
    box-shadow: 0 0 0 3px rgba(13, 159, 232, 0.1);
}

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

.character-count {
    text-align: right;
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-blue-text);
    margin-top: 2px;
}

.checkbox-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.submit-button {
    background: var(--brand-orange-text) !important;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

.submit-button:hover {
    background: #e8640f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 1001;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Error styling */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading .submit-button {
    background: #ccc;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        gap: 40px;
    }

    .contact-info,
    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 60px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        order: 2;
        padding: 40px 30px;
    }

    .contact-form-container {
        order: 1;
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info h1 {
        font-size: 2rem;
    }

    .form-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact-info,
    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-info h1 {
        font-size: 1.8rem;
    }

    .form-header h2 {
        font-size: 22px;
    }
}/* Google Maps Integration */
        .map-container {
            margin-top: 8px;
        }

        .map-iframe {
            width: 100%;
            height: 200px;
            border: none;
            border-radius: 12px;
            filter: grayscale(20%) contrast(1.1);
            transition: all 0.3s ease;
        }

        .map-iframe:hover {
            filter: grayscale(0%) contrast(1.2);
        }

        