/* Contact Us Page Styles */
.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Main Contact Section */
.contact-us-section {
    padding: 120px 0 80px;
    background-color: #fff;
    min-height: 100vh;
}

/* Page Title */
.contact-page-title {
    font-size: 48px;
    font-weight: 800;
    color: #C39F2B;
    text-align: right;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Introduction Text Block */
.intro-text-block {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: right;
}

.intro-text-block p:last-child {
    margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 80px;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-icon {
    color: #C39F2B;
    font-size: 24px;
    margin-left: 15px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #C39F2B;
    margin: 0;
}

.form-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #C39F2B;
    margin-bottom: 30px;
    text-align: right;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 16px;
    color: #333;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
    text-align: right;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #C39F2B;
}

.form-input::placeholder {
    color: #999;
    font-size: 16px;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    border-color: #C39F2B;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: right;
}

.checkbox-group input[type="checkbox"] {
    margin-left: 10px;
    margin-top: 3px;
    transform: scale(1.2);
    accent-color: #C39F2B;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #C39F2B, #DBB63F);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(195, 159, 43, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #DBB63F, #C39F2B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 159, 43, 0.4);
}


/* Success Message */
.success-message {
    background-color: #e9e9e9;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

/* Contact Methods Cards */
.contact-methods-row {
    margin-top: 60px;
}

.contact-method-card {
    background-color: #ffffff;
    border: 2px solid #f0e68c;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 48px;
    color: #C39F2B;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.card-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-btn {
    background-color: #fff8e1;
    color: #333;
    border: 2px solid #C39F2B;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.card-btn:hover {
    background-color: #C39F2B;
    color: #fff;
    transform: translateY(-2px);
}

.phone-number {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #C39F2B;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    font-family: 'Cairo', sans-serif;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-us-section {
        padding: 100px 0 60px;
    }
    
    .contact-page-title {
        font-size: 36px;
        text-align: center;
    }
    
    .intro-text-block {
        padding: 30px 20px;
    }
    
    .intro-text-block p {
        font-size: 16px;
        text-align: center;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        text-align: center;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 150px 0 40px;
    }
    
    .contact-page-title {
        font-size: 28px;
    }
    
    .intro-text-block {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    
    .intro-text-block p {
        font-size: 15px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 18px;
    }
    
    .form-input {
        font-size: 15px;
    }
    
    .contact-method-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 36px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact-us-section {
        padding: 150px 0 30px;
    }
    
    .contact-page-title {
        font-size: 24px;
    }
    
    .intro-text-block {
        padding: 20px 15px;
    }
    
    .intro-text-block p {
        font-size: 14px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .form-input {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .contact-method-card {
        padding: 25px 15px;
    }
    
    .card-icon i {
        font-size: 32px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .card-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .phone-number {
        padding: 10px 15px;
        font-size: 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Form Validation Styles */
.form-input.error {
    border-bottom-color: #dc3545;
}

.form-input.success {
    border-bottom-color: #28a745;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    text-align: right;
}

/* Loading State - static button, only text changes */
.submit-btn.loading {
    background: linear-gradient(135deg, #ffe385, #DBB63F);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(195, 159, 43, 0.3);
    animation: jumping 0.8s ease-in-out infinite;
    transform: none;
}

@keyframes jumping {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Creative Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon::before {
    opacity: 1;
}

.social-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}