/* Real Estate Industry Page Styles */

/* Hero Section */
.real-estate-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.real-estate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.real-estate-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    margin-bottom: 3rem;
}

.hero-actions .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Property Showcase */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.property-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.property-showcase:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.property-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.property-card.featured {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.property-image {
    height: 150px;
    background: url('/images/industries/real-estate-hero.jpg') center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card:not(.featured) .property-image {
    background-image: url('/images/industries/real-estate.jpg');
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.property-badge.new {
    background: #28a745;
}

.property-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

.property-details {
    padding: 1.5rem;
}

.property-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.property-details p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-details i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.8rem;
    color: #495057;
    display: flex;
    align-items: center;
}

.property-features i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
    color: #6c757d;
}

/* Lead Notification */
.lead-notification {
    position: absolute;
    top: 20px;
    right: -50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    min-width: 250px;
    color: #333;
    animation: slideIn 0.5s ease-out;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.notification-content strong {
    color: #2c3e50;
    font-size: 0.9rem;
}

.notification-content p {
    color: #495057;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

.notification-content small {
    color: #6c757d;
    font-size: 0.75rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Real Estate Icons */
.floating-real-estate-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon:nth-child(odd) {
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
}

.service-features i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.client-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.client-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.case-study-metrics {
    margin-bottom: 1.5rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.metric-value {
    font-weight: 600;
    color: #2c3e50;
}

.metric-change {
    color: #28a745;
    font-weight: 600;
    font-size: 0.85rem;
}

.case-study-description {
    color: #495057;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #dc3545, #6366f1);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions .btn {
    margin-bottom: 1rem;
}

/* Responsive Design */

/* Large Screens and Tablets */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .service-card,
    .case-study-card {
        padding: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .service-card,
    .case-study-card {
        padding: 1.5rem;
    }
    
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Make floating elements responsive */
    .floating-real-estate-icons {
        position: relative;
        display: none;
    }
    
    .lead-notification {
        position: relative;
        right: auto;
        top: auto;
        margin: 1rem 0;
        animation: none;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .real-estate-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.75rem auto;
        touch-action: manipulation;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        flex: 0 0 auto;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .property-showcase {
        transform: none;
        margin-top: 2rem;
    }
    
    .property-card.featured {
        transform: none;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-card {
        padding: 1rem;
        touch-action: manipulation;
    }
    
    .property-card:active {
        transform: scale(0.98);
    }
    
    .service-card,
    .case-study-card {
        padding: 1.5rem 1rem;
        touch-action: manipulation;
    }
    
    .service-card:active,
    .case-study-card:active {
        transform: scale(0.98);
    }
    
    .lead-notification {
        position: static;
        margin-top: 1rem;
        min-width: auto;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-content {
        max-width: none;
        padding: 1.5rem;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .client-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .metric-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    /* Prevent zoom on inputs */
    input, textarea, select, button {
        font-size: 16px;
    }
    
    /* Better touch targets */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Improve text readability */
    .service-card p,
    .case-study-description {
        line-height: 1.6;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .real-estate-hero {
        min-height: 60vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card,
    .case-study-card {
        padding: 1.25rem 0.75rem;
    }
    
    .property-card {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .property-image {
        height: 120px;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .section-spacing {
        padding: 3rem 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .case-study-card,
    .property-card {
        padding: 1rem 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-badge,
    .section-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .property-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .notification-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .lead-notification {
        padding: 0.75rem;
        min-width: auto;
    }
}

/* Touch Improvements */
@media (max-width: 768px) {
    .btn:active {
        transform: scale(0.95);
    }
    
    .btn:focus {
        outline: 3px solid rgba(220, 53, 69, 0.5);
        outline-offset: 2px;
    }
    
    .service-card:focus,
    .case-study-card:focus,
    .property-card:focus {
        outline: 2px solid rgba(220, 53, 69, 0.5);
        outline-offset: 2px;
    }
    
    /* Better scrolling for metric rows */
    .case-study-metrics {
        overflow-x: auto;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .property-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-icon {
        animation: none !important;
    }
    
    .property-showcase {
        transform: none;
    }
    
    .property-showcase:hover {
        transform: none;
    }
    
    .service-card:hover,
    .case-study-card:hover,
    .property-card:hover {
        transform: none;
    }
    
    .lead-notification {
        animation: none;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .real-estate-hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-spacing {
        padding: 2rem 0;
    }
}

/* Print Styles */
@media print {
    .floating-real-estate-icons,
    .floating-icon,
    .lead-notification {
        display: none;
    }
    
    .real-estate-hero,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .service-card,
    .case-study-card,
    .property-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .btn {
        background: transparent !important;
        color: black !important;
        border: 1px solid black !important;
    }
}

/* ========================================
   Enhanced Contact Form Section
   ======================================== */
.re-contact-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f0fa 0%, #eae8f4 50%, #f5f5fa 100%);
    overflow: hidden;
}

.re-contact-bg-shape {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.re-contact-bg-shape::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Info Sidebar */
.re-contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 1.5rem 2.5rem 0;
}

.re-contact-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: none;
}

.re-contact-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.re-contact-desc {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.re-contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.re-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.re-benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.re-benefit-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.15rem;
}

.re-benefit-item p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.re-contact-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(102, 126, 234, 0.12);
    font-size: 0.9rem;
    color: #6c757d;
}

.re-trust-avatars {
    display: flex;
    gap: 4px;
}

.re-trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.re-trust-dot:nth-child(2) {
    opacity: 0.7;
}

.re-trust-dot:nth-child(3) {
    opacity: 0.4;
}

/* Form Card */
.re-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.re-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.re-form-header i {
    font-size: 1.1rem;
    opacity: 0.85;
}

.re-form-body {
    padding: 2rem;
}

.re-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3a3a4a;
    margin-bottom: 0.4rem;
    display: block;
}

.re-form-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background-color: #fafbfc;
}

.re-form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
    background-color: #fff;
}

.re-form-input::placeholder {
    color: #adb5bd;
}

select.re-form-input {
    cursor: pointer;
}

.re-form-submit {
    display: block;
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.re-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.re-form-submit:active {
    transform: translateY(0);
}

/* Contact Section Responsive */
@media (max-width: 991px) {
    .re-contact-section {
        padding: 3.5rem 0;
    }

    .re-contact-info {
        padding: 0 0 2rem 0;
        text-align: center;
        align-items: center;
    }

    .re-benefit-item {
        text-align: left;
    }

    .re-contact-trust {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .re-contact-section {
        padding: 2.5rem 0;
    }

    .re-form-body {
        padding: 1.25rem;
    }

    .re-form-header {
        padding: 0.875rem 1.25rem;
    }

    .re-contact-title {
        font-size: 1.5rem;
    }

    .re-form-submit {
        font-size: 1rem;
    }
}

/* ========================================
   Enhanced Newsletter Section
   ======================================== */
.re-newsletter-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2456 50%, #1a1a2e 100%);
    color: #fff;
    overflow: hidden;
}

.re-nl-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.re-nl-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

.re-nl-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
}

.re-nl-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    color: #a4b4f4;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(102, 126, 234, 0.25);
}

.re-nl-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #fff;
}

.re-nl-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.re-nl-benefits {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.re-nl-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
}

/* Newsletter Card */
.re-nl-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.re-nl-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.re-nl-card-header i {
    opacity: 0.85;
}

.re-nl-card-body {
    padding: 2rem 1.75rem;
}

.re-nl-input-group {
    margin-bottom: 1.25rem;
}

.re-nl-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.re-nl-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.re-nl-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.re-nl-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.re-nl-submit {
    display: block;
    width: 100%;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.re-nl-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
}

.re-nl-submit:active {
    transform: translateY(0);
}

.re-nl-disclaimer {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Newsletter Responsive */
@media (max-width: 991px) {
    .re-newsletter-section {
        padding: 3.5rem 0;
        text-align: center;
    }

    .re-nl-benefits {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .re-newsletter-section {
        padding: 2.5rem 0;
    }

    .re-nl-card-body {
        padding: 1.5rem 1.25rem;
    }

    .re-nl-title {
        font-size: 1.4rem;
    }
}
