/**
 * Contact Page Styles
 * Ultra-Premium Luxurious Design with 100% Consistency
 */

/* ==================== PREMIUM HERO SECTION - 100% Consistent with About, Projects & Gallery ==================== */

.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 35, 50, 0.92) 0%,
        rgba(26, 35, 50, 0.85) 50%,
        rgba(212, 175, 55, 0.15) 100%);
    z-index: 2;
}

/* Decorative Elements */
.contact-hero-section .hero-decoration-top-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 8s ease-in-out infinite;
}

.contact-hero-section .hero-decoration-bottom-right {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.contact-hero-section .container {
    position: relative;
    z-index: 3;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Breadcrumb Premium */
.contact-hero-section .breadcrumb-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-hero-section .breadcrumb-premium a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hero-section .breadcrumb-premium a:hover {
    color: var(--primary-gold);
}

.contact-hero-section .breadcrumb-premium .separator {
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.7rem;
}

.contact-hero-section .breadcrumb-premium .current {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Hero Badge Premium */
.contact-hero-section .hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.contact-hero-section .hero-badge-premium .badge-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-hero-section .hero-badge-premium .badge-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Title Premium */
.contact-hero-section .hero-title-premium {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--neutral-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.contact-hero-section .hero-title-premium .title-highlight {
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Hero Subtitle Premium */
.contact-hero-section .hero-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats Row */
.contact-hero-section .hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-hero-section .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-hero-section .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.contact-hero-section .stat-content {
    text-align: left;
}

.contact-hero-section .stat-number {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin: 0;
}

.contact-hero-section .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    margin-top: 0.25rem;
}

.contact-hero-section .stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Hero CTA Buttons */
.contact-hero-section .hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-hero-section .btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-hero-section .btn-primary-premium {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--secondary-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-hero-section .btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    color: var(--secondary-navy);
}

.contact-hero-section .btn-outline-premium {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.contact-hero-section .btn-outline-premium:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    color: var(--neutral-white);
}

/* Scroll Indicator Premium - Centered */
.contact-hero-section .scroll-indicator-premium {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce-vertical 2s ease-in-out infinite;
    z-index: 10;
}

.contact-hero-section .scroll-indicator-premium i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

@keyframes bounce-vertical {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Responsive for Hero */
@media (max-width: 992px) {
    .contact-hero-section {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .contact-hero-section .hero-title-premium {
        font-size: 3rem;
    }

    .contact-hero-section .hero-subtitle-premium {
        font-size: 1.1rem;
    }

    .contact-hero-section .hero-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-hero-section .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .contact-hero-section .hero-title-premium {
        font-size: 2.5rem;
    }

    .contact-hero-section .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-hero-section .hero-stats-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .contact-hero-section .stat-item {
        width: 100%;
        justify-content: center;
    }

    .contact-hero-section .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-hero-section .btn-premium {
        width: 100%;
        justify-content: center;
    }

    .contact-hero-section .scroll-indicator-premium {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section .hero-title-premium {
        font-size: 2rem;
    }

    .contact-hero-section .hero-badge-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .contact-hero-section .stat-number {
        font-size: 1.75rem;
    }

    .contact-hero-section .stat-label {
        font-size: 0.85rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== CONTACT INFO CARDS SECTION ==================== */
.contact-info-section {
    background: linear-gradient(180deg, var(--neutral-white) 0%, var(--neutral-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-info-card {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.info-card-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--neutral-white);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
    transition: all var(--transition-normal);
}

.contact-info-card:hover .info-card-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.info-card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-navy);
    margin-bottom: 1rem;
}

.info-card-content {
    margin-bottom: 1.25rem;
}

.info-card-content p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--neutral-dark);
}

.info-card-content a {
    color: var(--secondary-navy);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.info-card-content a:hover {
    color: var(--primary-gold);
}

.info-card-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==================== CONTACT FORM SECTION ==================== */
.contact-form-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    position: relative;
}

.contact-form-wrapper {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 1rem;
}

.form-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1.05rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    z-index: 1;
}

.input-wrapper textarea + i {
    top: 1.25rem;
    transform: translateY(0);
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--secondary-navy);
    background: var(--neutral-white);
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: rgba(26, 35, 50, 0.4);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    padding-top: 1rem;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
}

/* ==================== QUICK CONTACT SIDEBAR ==================== */
.quick-contact-sidebar {
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    color: var(--neutral-white);
    height: 100%;
}

.sidebar-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--neutral-white);
}

.sidebar-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quick-contact-list {
    margin-bottom: 2.5rem;
}

.quick-contact-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.quick-contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

.quick-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.quick-icon.call {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.quick-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.quick-icon.email {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.quick-contact-item:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-details h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--neutral-white);
}

.quick-link {
    display: inline-block;
    font-size: 1.05rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.quick-link:hover {
    color: var(--neutral-white);
}

.quick-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.office-hours-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
}

.hours-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.hours-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-white);
}

.hours-days {
    font-size: 1.05rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 0.75rem;
}

.hours-note {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ==================== MAP SECTION ==================== */
.map-section {
    position: relative;
    overflow: hidden;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.map-overlay-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-gold);
    max-width: 400px;
}

.map-info-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-info-content h4 i {
    color: var(--primary-gold);
    font-size: 1.75rem;
}

.map-info-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: var(--neutral-white);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary-navy);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--neutral-gray);
    line-height: 1.7;
}

.accordion-item {
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1.25rem;
    background: var(--neutral-white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-navy);
    background: var(--neutral-white);
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
}

.accordion-button i {
    color: var(--primary-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    color: var(--secondary-navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    background: var(--neutral-white);
}

/* ==================== TRUST BAR SECTION ==================== */
.trust-bar-section {
    background: linear-gradient(135deg, var(--secondary-navy), var(--secondary-navy-light));
    padding: 3rem 0;
}

.trust-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-bar-header {
    text-align: center;
}

.trust-bar-header h3 {
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 0.5rem;
}

.trust-bar-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.trust-bar-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: all var(--transition-normal);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.trust-icon.rera {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.trust-icon.dtcp {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.trust-icon.title {
    background: linear-gradient(135deg, #27AE60, #229954);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-icon i {
    color: var(--neutral-white);
}

.trust-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 0.5rem;
}

.trust-number {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.trust-validity {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.qr-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-verification-compact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.qr-code-placeholder {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    border: 3px dashed var(--primary-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qr-code-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.qr-text {
    text-align: left;
}

.qr-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 0.25rem;
}

.qr-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablets & Small Laptops (991px and below) */
@media (max-width: 991px) {
    .page-header-section {
        min-height: 55vh;
        padding: 150px 0 80px;
    }

    .contact-form-wrapper,
    .quick-contact-sidebar {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }

    .trust-bar-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .map-overlay-info {
        left: 1rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Tablets Portrait (767px and below) */
@media (max-width: 767px) {
    .page-header-section {
        min-height: 50vh;
        padding: 140px 0 70px;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .info-card-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .quick-contact-sidebar {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .sidebar-title {
        font-size: 1.75rem;
    }

    .quick-contact-item {
        padding: 1.5rem 1.25rem;
    }

    .quick-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .trust-bar-content {
        grid-template-columns: 1fr;
    }

    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .accordion-body {
        padding: 1.25rem 1.5rem 1.75rem;
    }
}

/* Mobile Devices (575px and below) */
@media (max-width: 575px) {
    .page-header-section {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }

    .info-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .info-card-title {
        font-size: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .quick-contact-sidebar {
        padding: 2rem 1.5rem;
    }

    .quick-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .quick-details {
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

    .trust-details {
        text-align: center;
    }

    .qr-verification-compact {
        flex-direction: column;
        text-align: center;
    }

    .qr-text {
        text-align: center;
    }

    .map-wrapper {
        height: 400px;
    }

    .map-overlay-info {
        padding: 1.5rem 1.25rem;
    }

    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .accordion-button i {
        font-size: 1.1rem;
    }
}

/* ==========================================
   PREMIUM HERO SECTION
   ========================================== */

.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--secondary-navy-light) 100%);
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.92) 0%,
        rgba(27, 38, 59, 0.88) 50%,
        rgba(13, 27, 42, 0.92) 100%
    );
    z-index: 2;
}

/* Inherit all premium hero styles from project.css */
.contact-hero-section .container {
    position: relative;
    z-index: 3;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
