/* ==========================================
   GET IN TOUCH SECTION - Professional Islamic Design
   ========================================== */

/* Section Container */
.get-in-touch-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f3f4f7 100%);
    position: relative;
    overflow: hidden;
}

.get-in-touch-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 141, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatPattern 8s ease-in-out infinite;
}

.get-in-touch-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(102, 65, 49, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatPattern 10s ease-in-out infinite reverse;
}

@keyframes floatPattern {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    50% { 
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Section Header */
.git-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.git-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    color: #a88d5e;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.git-subtitle::before,
.git-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #a88d5e, #e59756);
}

.git-subtitle::before {
    left: 0;
}

.git-subtitle::after {
    right: 0;
}

.git-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #664131;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.git-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.git-title-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.divider-star {
    color: #a88d5e;
    font-size: 1.2rem;
    padding: 0 15px;
    position: relative;
}

.divider-star::before,
.divider-star::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a88d5e);
}

.divider-star::before {
    right: 100%;
}

.divider-star::after {
    left: 100%;
    background: linear-gradient(90deg, #a88d5e, transparent);
}

/* ==========================================
   LEFT COLUMN - CONTACT INFORMATION
   ========================================== */

.git-info-container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.git-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(18, 46, 91, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #a88d5e, #e59756);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s ease;
}

.git-info-card:hover {
    box-shadow: 0 15px 50px rgba(168, 141, 94, 0.15);
    transform: translateY(-5px);
}

/* Islamic Pattern Background */
.git-info-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 141, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102, 65, 49, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(168, 141, 94, 0.02) 10px, rgba(168, 141, 94, 0.02) 20px);
    opacity: 0.5;
    pointer-events: none;
}

/* Info Header */
.git-info-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.git-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a88d5e, #e59756);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(168, 141, 94, 0.3);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.git-info-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(168, 141, 94, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(168, 141, 94, 0.4);
    }
}

.git-info-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #664131;
    font-weight: 700;
    margin-bottom: 10px;
}

.git-info-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Info List */
.git-info-list {
    margin-bottom: 30px;
}

.git-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.git-info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #a88d5e, #e59756);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.git-info-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(168, 141, 94, 0.1);
    transform: translateX(5px);
}

.git-info-item:hover::before {
    transform: scaleY(1);
}

.git-info-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a88d5e, #e59756);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(168, 141, 94, 0.2);
}

.git-info-item-icon i {
    color: white;
    font-size: 1.2rem;
}

.git-info-item-content {
    flex: 1;
}

.git-info-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.git-info-value {
    display: block;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.git-info-value a {
    color: #664131;
    text-decoration: none;
    transition: color 0.3s ease;
}

.git-info-value a:hover {
    color: #a88d5e;
}

/* Social Links */
.git-social-links {
    text-align: center;
    padding-top: 25px;
    border-top: 2px dashed #e8e8e8;
}

.git-social-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.git-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.git-social-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #664131;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.git-social-icon:hover {
    background: linear-gradient(135deg, #a88d5e, #e59756);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 141, 94, 0.3);
}

/* ==========================================
   RIGHT COLUMN - CONTACT FORM
   ========================================== */

.git-form-container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.git-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(18, 46, 91, 0.08);
    height: 100%;
    transition: all 0.4s ease;
}

.git-form-card:hover {
    box-shadow: 0 15px 50px rgba(18, 46, 91, 0.12);
}

/* Form Header */
.git-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.git-form-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #664131, #a88d5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 65, 49, 0.3);
}

.git-form-icon i {
    font-size: 1.8rem;
    color: white;
}

.git-form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #664131;
    font-weight: 700;
    margin-bottom: 10px;
}

.git-form-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Alert Messages */
.git-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.git-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.git-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Groups */
.git-form-group {
    margin-bottom: 0;
}

.git-form-label {
    display: block;
    font-size: 0.9rem;
    color: #664131;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.git-form-label i {
    color: #a88d5e;
    font-size: 0.95rem;
}

.required {
    color: #dc3545;
    font-weight: 700;
}

/* Form Inputs */
.git-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.git-form-input:focus {
    border-color: #a88d5e;
    outline: none;
    box-shadow: 0 0 0 4px rgba(168, 141, 94, 0.1);
    background: #fefefe;
}

.git-form-input::placeholder {
    color: #aaa;
}

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

/* Captcha Wrapper */
.git-captcha-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.git-captcha-image {
    height: 45px !important;
    max-height: 45px !important;
    width: auto !important;
    max-width: 150px !important;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    object-fit: contain;
    background: #f8f9fa;
    aspect-ratio: auto !important;
}

.git-captcha-refresh {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a88d5e, #e59756);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.git-captcha-refresh:hover {
    background: linear-gradient(135deg, #664131, #a88d5e);
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(168, 141, 94, 0.3);
}

/* Submit Button */
.git-submit-btn {
    width: 100%;
    padding: 16px 35px;
    background: linear-gradient(135deg, #664131, #a88d5e);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 65, 49, 0.3);
    position: relative;
    overflow: hidden;
}

.git-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a88d5e, #e59756);
    transition: left 0.5s ease;
}

.git-submit-btn:hover::before {
    left: 0;
}

.git-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 141, 94, 0.4);
}

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

.git-btn-text,
.git-btn-loading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 991px) {
    .get-in-touch-section {
        padding: 60px 0;
    }

    .git-main-title {
        font-size: 2.3rem;
    }

    .git-section-header {
        margin-bottom: 50px;
    }

    .git-info-card,
    .git-form-card {
        padding: 35px;
    }

    .git-info-icon,
    .git-form-icon {
        width: 65px;
        height: 65px;
    }

    .git-info-icon i,
    .git-form-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .get-in-touch-section {
        padding: 50px 0;
    }

    .git-main-title {
        font-size: 2rem;
    }

    .git-description {
        font-size: 1rem;
    }

    .git-info-card,
    .git-form-card {
        padding: 30px 20px;
    }

    .git-info-item {
        padding: 15px;
    }

    .git-info-item-icon {
        width: 40px;
        height: 40px;
    }

    .git-info-item-icon i {
        font-size: 1.1rem;
    }

    .git-form-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .git-submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .git-social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .git-main-title {
        font-size: 1.8rem;
    }

    .git-info-header h3,
    .git-form-header h3 {
        font-size: 1.5rem;
    }

    .git-captcha-wrapper {
        flex-direction: row;
        justify-content: flex-start;
    }

    .git-captcha-image {
        width: auto !important;
        max-width: 140px !important;
        height: 40px !important;
        max-height: 40px !important;
    }

    .git-captcha-refresh {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
}
