/* Contact Page Styles */

/* Hero Banner */
/* Hero styles moved to hero.css */



/* Contact Info Cards */
.contact-info-section {
    padding: 50px 0;
    background-color: #fff;
}

.contact-info-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.contact-card.clickable-card {
    cursor: pointer;
}

.contact-card.clickable-card:focus {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 2px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(212, 175, 55, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:not(.clickable-card):hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-icon i {
    display: block;
    line-height: 1;
    text-align: center;
}

.contact-text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.contact-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.contact-text p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
}

.click-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.contact-card:hover .click-hint {
    opacity: 1;
    transform: translateY(0);
}

.contact-card.clickable-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.contact-card.clickable-card:active {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px 0;
    background-color: #f1f5f9;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(212, 175, 55, 0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Contact Info Container */
.contact-info-container {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.contact-info-container h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-align: center;
    position: relative;
}

.contact-info-container h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    margin: 10px auto 0;
    border-radius: 2px;
}

.info-items {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.info-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-weight: 400;
}

.info-item:hover .info-icon {
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.btn-link {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
}

.btn-link::before {
    content: '←';
    transition: transform 0.3s ease;
}

.btn-link:hover::before {
    transform: translateX(-3px);
}

.social-media {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.social-media h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
    position: relative;
}

.social-media h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    margin: 8px auto 0;
    border-radius: 1px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-weight: 400;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Map Section */
.map-section {
    padding: 50px 0;
    background-color: #fff;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.map-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 20px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    
    /* Hero responsive styles moved to hero.css */
    
    .form-header h2 {
        font-size: 2.2rem;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-container {
        order: 2;
        position: static;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 20px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 25px 20px;
        border-radius: 16px;
        margin: 0 15px;
    }
    
    .form-header {
        margin: -25px -20px 25px -20px;
        padding: 20px 25px;
        border-radius: 16px 16px 0 0;
        background: var(--primary-color);
        color: white;
        text-align: center;
    }
    
    .form-header h2 {
        font-size: 20px;
        margin: 0;
        color: white;
    }
    
    .form-header p {
        font-size: 14px;
        margin: 8px 0 0 0;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Better form styling on mobile */
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .form-group select,
    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        border: 2px solid #e1e5e9;
        border-radius: 12px;
        font-size: 16px;
        min-height: 52px;
        background-color: #fff;
        transition: all 0.3s ease;
    }
    
    .form-group select:focus,
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        outline: none;
        transform: none;
    }
    
    .contact-btn {
        padding: 18px 20px;
        font-size: 16px;
        min-height: 56px;
        border-radius: 12px;
        margin-top: 15px;
        width: 100%;
    }
    
    .info-item {
        padding: 15px;
        margin-bottom: 15px;
        align-items: center;
        gap: 12px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Hero mobile responsive styles moved to hero.css */
    
    .contact-content {
        gap: 20px;
    }
    
    .contact-form-container {
        margin: 0 10px;
        padding: 20px 15px;
    }
    
    .form-header {
        margin: -20px -15px 20px -15px;
        padding: 18px 20px;
    }
    
    .form-header h2 {
        font-size: 18px;
    }
    
    .form-header p {
        font-size: 13px;
        padding: 0;
    }
    
    .map-header h2 {
        font-size: 1.6rem;
    }
    
    .map-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .map-section iframe {
        height: 300px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 50px;
        border-radius: 12px;
    }
    
    .contact-btn {
        padding: 16px 18px;
        font-size: 15px;
        min-height: 52px;
        border-radius: 12px;
    }
    
    .contact-card {
        padding: 18px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-text h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .contact-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .info-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
        align-items: center;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1rem;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .contact-info-container h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .info-content h4 {
        font-size: 0.9rem;
    }
    
    .info-content p {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-note {
        font-size: 0.75rem;
    }
    
    /* Mobile phone input adjustments */
    .phone-group .phone-input input {
        padding: 12px 14px; /* Reduced for better proportion */
        border-left: none;
        border-right: 1px solid #e9ecef;
    }
    
    .phone-group .phone-input select {
        min-width: 120px; /* Reduced minimum width */
        font-size: 11px !important; /* Further reduced to fit properly */
        padding: 12px 8px !important; /* Increased padding since no arrow */
        background-image: none !important; /* Remove arrow completely */
        font-weight: 500 !important;
        line-height: 1.2 !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        white-space: nowrap !important;
    }
}

.form-header {
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.form-header h2 {
    margin: 0 0 16px 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    position: relative;
}

.form-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 15px 0 20px;
    line-height: 1.5;
}

.gold-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.contact-form {
    position: relative;
    z-index: 2;
}

/* Form styles moved to css/shared/common.css */

.contact-btn {
    width: 100%;
    padding: 16px 22px; /* Reduced for better proportion */
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), var(--navy-light));
    border: none;
    border-radius: 12px;
    color: white;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.3);
    cursor: pointer;
    min-height: 50px; /* Maintain good touch target */
}

.contact-btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), #f9efb0);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.contact-btn.loading {
    pointer-events: none;
}

.contact-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Form status styles moved to css/shared/common.css */ 