

body {
  padding-top: 100px;
  background: #f8f9fa;
}

html {
  scroll-behavior: smooth;
}

/* CONTACT PAGE SPECIFIC STYLES WITH UNIQUE CLASS NAMES */
.contact-main {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* LEFT SIDE - CONTACT FORM WITH UNIQUE CLASSES */
.contact-form-container {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(255, 154, 86, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.form-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.contact-form-group {
    position: relative;
}

.contact-form-input {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    color: rgb(12, 0, 0) !important;
    font-size: 16px;
    
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.contact-form-input:focus {
    border-bottom-color: white;
    transform: translateY(-2px);
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 20px;
}

.contact-checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
}

.contact-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    appearance: none;
}

.contact-checkbox:checked {
    background: white;
    border-color: white;
}

.contact-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff9a56;
    font-size: 12px;
    font-weight: bold;
}

.contact-submit-btn {
    background: white;
    color: #ff9a56;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* RIGHT SIDE - PROCESS STEPS WITH UNIQUE CLASSES */
.contact-process-section {
    padding: 20px 0;
}

.contact-process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-process-subtitle {
    color: #ff9a56;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-left-color: #ff9a56;
}

.contact-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-step-content {
    flex: 1;
}

.contact-step-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* CONTACT INFO CARDS WITH UNIQUE CLASSES */
.contact-info-section {
    margin-top: 80px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: #667eea;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-card-info {
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.contact-card-info a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-info a:hover {
    color: #ff9a56;
}

/* CONTACT SPECIFIC LOADING AND ANIMATION STYLES */
.contact-btn-loading {
    background: #ccc !important;
    pointer-events: none !important;
    opacity: 0.7;
}

.contact-btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #ff9a56;
    border-radius: 50%;
    animation: contact-spin 1s linear infinite;
    display: inline-block;
    margin-left: 8px;
}

/* CONTACT SPECIFIC ANIMATIONS */
@keyframes contact-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-focused {
    transform: scale(1.02);
}

.contact-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* RESPONSIVE DESIGN FOR CONTACT PAGE */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .contact-main {
        padding: 60px 15px;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-form-container {
        padding: 40px 25px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-process-title {
        font-size: 1.5rem;
    }

    .contact-form-input {
        font-size: 14px;
        padding: 15px 0;
    }

    .contact-submit-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}