.wpconthero-intro-text {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
}/**
 * Contact Hero Section CSS
 *
 * @package YourThemeName
 * @since 1.0.0
 */

:root {
    --wpconthero-primary-color: #3a86ff;
    --wpconthero-secondary-color: #8338ec;
    --wpconthero-text-light: #ffffff;
    --wpconthero-text-dark: #333333;
    --wpconthero-bg-light: #f8f9fa;
    --wpconthero-bg-dark: #212529;
    --wpconthero-overlay-light: rgba(255, 255, 255, 0.85);
    --wpconthero-overlay-dark: rgba(0, 0, 0, 0.7);
    --wpconthero-transition: all 0.3s ease;
}

/* Light/Dark Mode Variables */
body.wpconthero-light-mode {
    --wpconthero-text-color: var(--wpconthero-text-dark);
    --wpconthero-bg-color: var(--wpconthero-bg-light);
    --wpconthero-overlay-color: var(--wpconthero-overlay-light);
    --wpconthero-card-bg: #ffffff;
    --wpconthero-border-color: rgba(0, 0, 0, 0.1);
}

body.wpconthero-dark-mode {
    --wpconthero-text-color: var(--wpconthero-text-light);
    --wpconthero-bg-color: var(--wpconthero-bg-dark);
    --wpconthero-overlay-color: var(--wpconthero-overlay-dark);
    --wpconthero-card-bg: #2a2d3a;
    --wpconthero-border-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.wpconthero-contact-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: var(--wpconthero-transition);
    background-color: var(--wpconthero-bg-color);
    color: var(--wpconthero-text-color);
}

/* Background Video */
.wpconthero-hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Background Image (Fallback) */
.wpconthero-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -3;
}

/* Overlay */
.wpconthero-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wpconthero-overlay-color);
    z-index: -1;
}

/* Content Container */
.wpconthero-hero-content {
    width: 95%;
    max-width: 1200px;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: wpconthero-fadeInUp 1s ease forwards 0.3s;
}

/* Breadcrumbs */
.wpconthero-breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wpconthero-breadcrumbs a {
    color: var(--wpconthero-primary-color);
    text-decoration: none;
    transition: var(--wpconthero-transition);
    margin-right: 0.5rem;
}

.wpconthero-breadcrumbs a:hover {
    text-decoration: underline;
}

.wpconthero-breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.wpconthero-breadcrumbs span:last-child {
    margin-right: 0;
}

/* Hero Title Section */
.wpconthero-hero-title-container {
    margin-bottom: 1rem;
    position: relative;
}

.wpconthero-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--wpconthero-primary-color), var(--wpconthero-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content Grid */
.wpconthero-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 100%;
}

/* Contact Form Card */
.wpconthero-contact-card {
    background: var(--wpconthero-card-bg);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--wpconthero-transition);
    display: flex;
    flex-direction: column;
}

.wpconthero-contact-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wpconthero-primary-color);
}

.wpconthero-form-group {
    margin-bottom: 0.5rem;
}

.wpconthero-form-group label {
    display: block;
    margin-bottom: 0.15rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.wpconthero-form-control {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--wpconthero-border-color);
    border-radius: 5px;
    background-color: transparent;
    color: var(--wpconthero-text-color);
    transition: var(--wpconthero-transition);
    font-size: 0.9rem;
    line-height: 1.2;
}

.wpconthero-form-control:focus {
    outline: none;
    border-color: var(--wpconthero-primary-color);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

textarea.wpconthero-form-control {
    min-height: 70px;
    max-height: 70px;
    resize: vertical;
}

.wpconthero-cta-button {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-top: 0.3rem;
    background: linear-gradient(135deg, var(--wpconthero-primary-color), var(--wpconthero-secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wpconthero-transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.wpconthero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wpconthero-cta-button:active {
    transform: translateY(1px);
}

/* Contact Information */
.wpconthero-contact-info {
    background: var(--wpconthero-card-bg);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wpconthero-contact-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wpconthero-primary-color);
}

.wpconthero-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.wpconthero-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--wpconthero-primary-color), var(--wpconthero-secondary-color));
    border-radius: 50%;
    margin-right: 0.6rem;
    color: white;
}

.wpconthero-info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.wpconthero-info-content p, 
.wpconthero-info-content a {
    color: var(--wpconthero-text-color);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--wpconthero-transition);
    font-size: 0.9rem;
}

.wpconthero-info-content a:hover {
    opacity: 1;
    color: var(--wpconthero-primary-color);
}

/* Map Container */
.wpconthero-map-container {
    margin-top: 0.6rem;
    border-radius: 10px;
    overflow: hidden;
    height: 100px;
}

.wpconthero-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #666;
    font-style: italic;
}

/* Mode Toggle */
.wpconthero-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: var(--wpconthero-card-bg);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.wpconthero-toggle-button {
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: var(--wpconthero-text-color);
    cursor: pointer;
    border-radius: 50px;
    transition: var(--wpconthero-transition);
}

.wpconthero-toggle-button.active {
    background: linear-gradient(135deg, var(--wpconthero-primary-color), var(--wpconthero-secondary-color));
    color: white;
}

/* Form Response Message */
.wpconthero-form-response {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
}

.wpconthero-form-response.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.wpconthero-form-response.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Animations */
@keyframes wpconthero-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .wpconthero-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .wpconthero-hero-grid {
        grid-template-columns: 1fr;
    }

    .wpconthero-hero-title {
        font-size: 2.5rem;
    }

    .wpconthero-hero-subtitle {
        font-size: 1.1rem;
    }

    .wpconthero-contact-hero {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }

    .wpconthero-contact-info {
        margin-top: 2rem;
    }

    .wpconthero-hide-on-mobile {
        display: none;
    }

    
}