/* Contact Us Page Styles */
.section {
    padding: 20px;
    background: linear-gradient(135deg, #2C363D 0%, #3a4449 50%, #2C363D 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(201,180,88,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.flex {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.flex-col-mob {
    flex-direction: column;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 1.2; }
.flex-3 { flex: 1.5; }

/* Contact Information Section */
.contact-info {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(44, 54, 61, 0.3);
    border: 2px solid rgba(201, 180, 88, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9b458, #d4c26b, #c9b458, #b8a04d);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(44, 54, 61, 0.4);
    border-color: rgba(201, 180, 88, 0.4);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C363D;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9b458, #d4c26b);
    border-radius: 2px;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(201, 180, 88, 0.08);
    border-radius: 16px;
    border-left: 4px solid #c9b458;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 180, 88, 0.15), transparent);
    transition: left 0.5s ease;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(201, 180, 88, 0.15);
    box-shadow: 0 10px 20px rgba(201, 180, 88, 0.2);
    border-left-color: #b8a04d;
}

.info-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(25%) saturate(1058%) hue-rotate(14deg) brightness(95%) contrast(86%);
}

.info-item span {
    font-weight: 500;
    color: #2C363D;
    font-size: 1.1rem;
}

/* Form Section */
.flex-1.p-4.flex-3 {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(44, 54, 61, 0.3);
    border: 2px solid rgba(201, 180, 88, 0.2);
    position: relative;
    overflow: hidden;
}

.text-center h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #2C363D;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

.text-center h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 180, 88, 0.3), rgba(201, 180, 88, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
}

.text-center h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c9b458, #d4c26b, #c9b458);
    border-radius: 2px;
}

.text-center p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Form Styles */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 90%;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2C363D;
    font-size: 1.1rem;
    margin-bottom: 8px;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9b458, #d4c26b);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    color: #2C363D;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9b458;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 180, 88, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #bbb;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Button Styles */
.btn-blue {
    background: linear-gradient(135deg, #c9b458 0%, #d4c26b 50%, #c9b458 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(201, 180, 88, 0.3);
    text-shadow: 1px 1px 2px rgba(44, 54, 61, 0.3);
}

.btn-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-blue:hover::before {
    left: 100%;
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 180, 88, 0.4);
    background: linear-gradient(135deg, #b8a04d 0%, #c9b458 50%, #b8a04d 100%);
}

.btn-blue:active {
    transform: translateY(-1px);
}

/* Error Styles */
.error {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 10px;
    display: block;
    opacity: 1;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error.show {
    opacity: 1;
    transform: translateY(0);
}

/* Justify End */
.justify-end {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 40px 15px;
    }
    
    .flex {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info,
    .flex-1.p-4.flex-3 {
        padding: 30px 20px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .text-center h1 {
        font-size: 2.5rem;
    }
    
    .flex-col-mob {
        flex-direction: column;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .btn-blue {
        width: 100%;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .text-center h1 {
        font-size: 2rem;
    }
    
    .contact-info,
    .flex-1.p-4.flex-3 {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
    }
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info,
.flex-1.p-4.flex-3 {
    animation: fadeInUp 0.6s ease forwards;
}

.flex-1.p-4.flex-3 {
    animation-delay: 0.2s;
}

/* Floating Elements */
.section::after {
    content: '';
    position: absolute;
    top: 7%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(201, 180, 88, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Contact Arrow Styling */
.contact-info img[alt="contact-arrow"] {
    position: absolute;
    rotate: 180deg;
    top: 0px;
    right: -130px;
    opacity: 0.3;
    animation: bounce 2s infinite;
    filter: brightness(0) saturate(100%) invert(71%) sepia(25%) saturate(1058%) hue-rotate(14deg) brightness(95%) contrast(86%);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Additional Gold Accents */
.mt-2 {
    margin-top: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-5 {
    margin-bottom: 20px;
}

.p-4 {
    padding: 16px;
}

.text-center {
    text-align: center;
}

.pointer {
    cursor: pointer;
}

/* Custom Gold Highlights */
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: rgba(201, 180, 88, 0.5);
    background: rgba(201, 180, 88, 0.02);
}

/* Subtle Gold Glow Effect */
.contact-info:hover,
.flex-1.p-4.flex-3:hover {
    box-shadow: 
        0 20px 40px rgba(44, 54, 61, 0.3),
        0 0 0 1px rgba(201, 180, 88, 0.1),
        inset 0 1px 0 rgba(201, 180, 88, 0.1);
}