/*
===============================================
Project Landing Page Styles
===============================================
Custom landing page for individual projects
Fill content in admin panel, styles applied automatically
*/

/* ===========================
   Split Hero Section with Form - 626px Height @ 1440px
   =========================== */
.project-landing-hero-split {
    position: relative;
    min-height: 626px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    overflow: visible;
}

.project-landing-hero-split .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 30, 50, 0.8);
    z-index: 1;
}

.project-landing-hero-split .container {
    position: relative;
    z-index: 2;
}

.project-landing-hero-split .row {
    align-items: flex-start;
}

/* Left Side - Hero Content */
.hero-content-left {
    padding-right: 30px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #ff9800;
    color: #ff9800;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 3px;
}

.hero-heading-split {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
}

.hero-heading-split .heading-line1 {
    display: block;
    color: #fff;
    margin-bottom: 8px;
}

.hero-heading-split .heading-line2 {
    display: block;
    color: #ff9800;
}

.hero-description-split {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #ff9800;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ff9800;
}

.hero-btn-primary:hover {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.hero-btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Right Side - Form Box - Compact for 626px Height */
.hero-form-box {
    background: rgba(20, 25, 35, 0.95);
    padding: 28px 30px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.hero-form-box .form-title {
    color: #ff9800;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-form-box .form-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.hero-contact-form .form-group {
    margin-bottom: 16px;
}

.hero-contact-form label {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-contact-form input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 4px;
    color: #333333;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hero-contact-form input::placeholder {
    color: #999999;
}

.hero-contact-form input:focus {
    background: #ffffff;
    border-color: #ff9800;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.form-submit-btn {
    width: 100%;
    padding: 13px 16px;
    background: #ff9800;
    border: none;
    border-radius: 4px;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.form-submit-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

/* Form Messages */
.hero-contact-form .form-message {
    margin-top: 15px;
    margin-bottom: 10px;
}

.hero-contact-form .success-message {
    padding: 12px 15px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    border-radius: 4px;
    color: #4caf50;
    font-size: 14px;
    text-align: center;
}

.hero-contact-form .error-message {
    padding: 12px 15px;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    border-radius: 4px;
    color: #f44336;
    font-size: 14px;
    text-align: center;
}

.hero-form-box .rera-text {
    text-align: center;
    color: #ff9800;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Contact Form 7 Styling in Hero - Updated for Clean White Design */
.hero-form-box .form-group {
    margin-bottom: 16px;
}

.hero-form-box .form-group label {
    display: block;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-form-box .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.hero-form-box .wpcf7-form {
    margin: 0;
}

/* White Input Fields */
.hero-form-box .wpcf7-form-control.hero-form-input,
.hero-form-box input.hero-form-input,
.hero-form-box textarea.hero-form-input {
    width: 100%;
    padding: 12px 16px;
    background-color: #ffffff !important;
    border: 2px solid transparent !important;
    border-radius: 6px;
    font-size: 14px;
    color: #333333 !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hero-form-box .wpcf7-form-control.hero-form-input:focus,
.hero-form-box input.hero-form-input:focus,
.hero-form-box textarea.hero-form-input:focus {
    outline: none;
    border-color: #ff9800 !important;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
    background-color: #ffffff !important;
}

.hero-form-box .hero-form-input::placeholder {
    color: #999999;
    opacity: 1;
}

/* Submit Button */
.hero-form-box .wpcf7-submit.hero-submit-btn,
.hero-form-box button.hero-submit-btn,
.hero-form-box input[type="submit"].hero-submit-btn {
    width: 100%;
    padding: 13px 16px;
    background-color: #ff9800 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.hero-form-box .wpcf7-submit.hero-submit-btn:hover,
.hero-form-box button.hero-submit-btn:hover,
.hero-form-box input[type="submit"].hero-submit-btn:hover {
    background-color: #e68900 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

/* RERA Text at bottom of form */
.hero-form-box .wpcf7-form .rera-text {
    text-align: center;
    color: #ff9800;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 15px;
    text-transform: uppercase;
}

/* Validation Messages */
.hero-form-box .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.hero-form-box .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.hero-form-box .wpcf7-validation-errors {
    background-color: rgba(255, 107, 107, 0.15);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
}

.hero-form-box .wpcf7-mail-sent-ok {
    background-color: rgba(76, 209, 55, 0.15);
    border: 1px solid #4cd137;
    color: #4cd137;
}

.hero-form-box .wpcf7-spinner {
    margin: 0 0 0 10px;
}

/* ===========================
   Original Hero Section (Legacy)
   =========================== */
.project-landing-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.project-landing-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.project-landing-hero .container {
    position: relative;
    z-index: 2;
}

.project-landing-hero .hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.project-landing-hero .hero-subheading {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffd700;
    font-weight: 600;
}

.project-landing-hero .hero-heading {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.project-landing-hero .hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.project-landing-hero .hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #d4af37;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-landing-hero .hero-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ===========================
   Why Choose Section (Below Hero)
   =========================== */
.project-why-choose {
    padding: 80px 0;
    background: #ffffff;
}

.project-why-choose .why-choose-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.project-why-choose .why-choose-title .highlight-text {
    color: #ff9800;
}

/* ===========================
   Full Width Hero Section - Centered Content
   =========================== */
.project-landing-hero-fullwidth {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    z-index: 1;
}

.project-landing-hero-fullwidth .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.project-landing-hero-fullwidth .container {
    position: relative;
    z-index: 2;
}

.hero-content-center {
    text-align: left;
    max-width: 900px;
    margin: 0;
    color: #fff;
}

/* Badge at Top */
.hero-badge-top {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ff9800;
    color: #ff9800;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 3px;
}

/* Main Heading */
.hero-heading-main {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-heading-main .heading-line1 {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.hero-heading-main .heading-line2 {
    display: block;
    color: #fff;
}

/* Highlight Classes for Hero Section */
.hero-heading-main .highlight-orange,
.hero-heading-main .highlight-text,
.hero-heading-main .highlight-word {
    color: #ff9800;
}

.hero-subtitle .highlight-orange,
.hero-subtitle .highlight-text,
.hero-subtitle .highlight-word {
    color: #ff9800;
    font-weight: 600;
}

/* Subtitle */
.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 750px;
}

/* Stats Boxes Container */
.hero-stats-boxes {
    margin-bottom: 35px;
    display: inline-block;
    padding: 25px 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    min-width: 500px;
}

/* RERA Row - First Row */
.rera-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box-rera {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.stat-box-rera svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.stat-box-rera .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Stats Cards Row - Second Row */
.hero-stats-row {
    display: flex;
    justify-content: flex-start;
    gap: 35px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: left;
    min-width: 180px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.stat-box .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-box .stat-number .highlight-word {
    color: #ff9800;
}

.stat-box .stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ff9800;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ff9800;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.hero-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.project-why-choose .why-choose-features {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* 5 Column Layout - Custom col-lg-2-4 (20% width for 5 columns) */
.project-why-choose .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 15px;
}

.project-why-choose .why-feature-box {
    text-align: left;
    padding: 0 20px;
    background: transparent;
    transition: all 0.3s ease;
}

.project-why-choose .why-feature-icon {
    font-size: 32px;
    color: #ff9800;
    margin-bottom: 20px;
    line-height: 1;
    display: block;
}

.project-why-choose .why-feature-icon i {
    display: inline-block;
}

.project-why-choose .why-feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.project-why-choose .why-feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ===========================
   Content with Stats Section
   =========================== */
.project-content-stats {
    padding: 80px 0;
    background: #f5f5f5;
}

.project-content-stats .row {
    min-height: 600px;
}

.project-content-stats .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.project-content-stats .content-stats-text {
    padding-right: 40px;
}

.project-content-stats .content-stats-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.project-content-stats .content-stats-heading .heading-regular {
    display: block;
    color: #1a1a1a;
}

.project-content-stats .content-stats-heading .heading-highlight {
    display: block;
    color: #ff9800;
}

.project-content-stats .content-stats-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.project-content-stats .content-stats-description p {
    margin-bottom: 10px;
}

.project-content-stats .content-stats-numbers {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.project-content-stats .stat-item {
    flex: 0 0 auto;
}

.project-content-stats .stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #ff9800;
    margin-bottom: 8px;
}

.project-content-stats .stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #666;
}

.project-content-stats .content-stats-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    align-self: stretch;
}

.project-content-stats .content-stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===========================
   Floor Plans / Unit Types Section
   =========================== */
.project-floor-plans {
    padding: 80px 0;
    background: #ffffff;
}

.project-floor-plans .floor-plans-header {
    margin-bottom: 60px;
}

.project-floor-plans .floor-plans-heading {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-floor-plans .floor-plans-heading .heading-highlight {
    color: #ff9800;
}

.project-floor-plans .floor-plans-subheading {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.project-floor-plans .floor-plans-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.project-floor-plans .floor-plan-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.project-floor-plans .floor-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Popular Plan - Dark Background */
.project-floor-plans .floor-plan-card.popular-plan {
    background: #1a1a1a;
}

.project-floor-plans .floor-plan-card.popular-plan .plan-title,
.project-floor-plans .floor-plan-card.popular-plan .plan-price-note,
.project-floor-plans .floor-plan-card.popular-plan .detail-label,
.project-floor-plans .floor-plan-card.popular-plan .detail-value {
    color: #ffffff;
}

.project-floor-plans .popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff9800;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 2;
}

.project-floor-plans .plan-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-floor-plans .plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-floor-plans .floor-plan-card:hover .plan-card-image img {
    transform: scale(1.05);
}

.project-floor-plans .plan-card-content {
    padding: 25px 25px;
}

.project-floor-plans .plan-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.project-floor-plans .plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.project-floor-plans .plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
}

.project-floor-plans .plan-price-note {
    font-size: 14px;
    color: #666;
}

.project-floor-plans .floor-plan-card.popular-plan .plan-price-note {
    color: #ffffff;
}

.project-floor-plans .plan-details {
    margin-bottom: 20px;
}

.project-floor-plans .plan-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.project-floor-plans .floor-plan-card.popular-plan .plan-detail-item {
    border-bottom-color: #333333;
}

.project-floor-plans .plan-detail-item:last-child {
    border-bottom: none;
}

.project-floor-plans .detail-label {
    font-size: 14px;
    color: #666;
}

.project-floor-plans .detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.project-floor-plans .plan-button {
    display: block;
    width: 100%;
    padding: 16px 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.project-floor-plans .plan-button:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

/* Popular Plan Button - Orange */
.project-floor-plans .floor-plan-card.popular-plan .plan-button {
    background: #ff9800;
    color: #000000;
    border-color: #ff9800;
    font-weight: 700;
}

.project-floor-plans .floor-plan-card.popular-plan .plan-button:hover {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

/* ===========================
   Amenities Carousel Section
   =========================== */
.project-amenities {
    padding: 80px 0;
    background: #f5f5f5;
}

.project-amenities .amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.project-amenities .amenities-header-content {
    flex: 1;
}

.project-amenities .amenities-heading {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.project-amenities .amenities-heading .heading-highlight {
    color: #ff9800;
}

.project-amenities .amenities-subheading {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.project-amenities .amenities-nav {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    margin-top: 40px !important;
    justify-content: center;
    clear: both;
}

.project-amenities .amenities-prev,
.project-amenities .amenities-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-amenities .amenities-prev i,
.project-amenities .amenities-next i {
    font-size: 16px;
    color: #1a1a1a;
}

.project-amenities .amenities-prev:hover,
.project-amenities .amenities-next:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-amenities .amenities-prev:hover i,
.project-amenities .amenities-next:hover i {
    color: #ffffff;
}

.project-amenities .amenities-carousel {
    margin: 0 -15px 30px;
}

.project-amenities .amenity-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0 15px;
}

.project-amenities .amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.project-amenities .amenity-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.project-amenities .amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-amenities .amenity-card:hover .amenity-image img {
    transform: scale(1.05);
}

.project-amenities .amenity-content {
    padding: 25px 20px;
}

.project-amenities .amenity-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.project-amenities .amenity-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Owl Carousel Custom Styling */
.project-amenities .owl-carousel .owl-stage-outer {
    padding: 5px 0;
    margin: -5px 0;
    overflow: hidden;
}

.project-amenities .owl-carousel .owl-stage {
    display: flex;
}

/* Hide default Owl Carousel navigation */
.project-amenities .owl-carousel .owl-nav {
    display: none !important;
}

.project-amenities .owl-carousel .owl-dots {
    display: none !important;
}

/* ===========================
   Location Connectivity Section
   =========================== */
.project-location {
    padding: 80px 0;
    background: #ffffff;
}

.project-location .location-map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
}

.project-location .location-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-location .location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    display: block;
}

.project-location .location-content {
    padding-left: 60px;
}

.project-location .location-heading {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 40px;
}

.project-location .location-heading .heading-highlight {
    color: #ff9800;
}

.project-location .location-points-list {
    margin-bottom: 40px;
}

.project-location .location-point-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.project-location .location-point-item:last-child {
    margin-bottom: 0;
}

.project-location .location-icon-box {
    width: 60px;
    height: 60px;
    background: #fff8e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-location .location-icon-box i {
    font-size: 24px;
    color: #ff9800;
}

.project-location .location-point-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-location .location-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.project-location .location-separator {
    display: none;
}

.project-location .location-distance {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.project-location .location-button-wrapper {
    margin-top: 10px;
}

.project-location .location-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #ff9800;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-location .location-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    color: #000000;
    text-decoration: none;
}

/* Location Map Responsive */
@media (max-width: 767px) {
    .project-location .location-map-wrapper {
        min-height: 350px;
        margin-bottom: 30px;
    }

    .project-location .location-map-wrapper iframe {
        min-height: 350px;
    }
}

/* ===========================
   Floor Plan Detail Section
   =========================== */
.project-floor-plan-detail {
    padding: 80px 0;
    background: #f5f5f5;
}

.project-floor-plan-detail .fpd-image-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    height: 450px;
}

.project-floor-plan-detail .fpd-detail-image {
    width: 100%;
    height: 450px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    filter: blur(2px);
    transition: filter 0.3s ease;
}

.project-floor-plan-detail .fpd-detail-image:hover {
    filter: blur(0);
}

/* Right Side Content */
.project-floor-plan-detail .fpd-content {
    padding-left: 60px;
}

.project-floor-plan-detail .fpd-heading {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.project-floor-plan-detail .fpd-heading .heading-highlight {
    color: #ff9800;
}

.project-floor-plan-detail .fpd-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.project-floor-plan-detail .fpd-button-wrapper {
    margin-top: 10px;
}

.project-floor-plan-detail .fpd-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #ff9800;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-floor-plan-detail .fpd-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    color: #000000;
    text-decoration: none;
}

/* ===========================
   RERA & Investment Section
   =========================== */
.project-rera-section {
    padding: 80px 0;
    background: #ffffff;
}

.project-rera-section .rera-heading {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.project-rera-section .rera-heading .rera-highlight {
    color: #ff9800;
}

.project-rera-section .rera-features-row {
    margin-bottom: 50px;
}

.project-rera-section .rera-feature-box {
    text-align: center;
    padding: 20px 15px;
}

.project-rera-section .rera-icon {
    margin-bottom: 20px;
}

.project-rera-section .rera-icon i {
    font-size: 60px;
    color: #ff9800;
}

.project-rera-section .rera-feature-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.project-rera-section .rera-number-box {
    background: #f5f5f5;
    padding: 30px 40px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.project-rera-section .rera-number-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-rera-section .rera-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===========================
   FAQ Section
   =========================== */
.project-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.project-faq-section .faq-heading {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.project-faq-section .faq-heading .faq-highlight {
    color: #ff9800;
}

.project-faq-section .faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.project-faq-section .faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-faq-section .faq-item:last-child {
    margin-bottom: 0;
}

.project-faq-section .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

.project-faq-section .faq-question:hover {
    background: #f8f9fa;
}

.project-faq-section .faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    padding-right: 20px;
    flex: 1;
}

.project-faq-section .faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.project-faq-section .faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.project-faq-section .faq-toggle i {
    font-size: 14px;
    color: #1a1a1a;
}

.project-faq-section .faq-answer {
    padding: 0 30px 25px 30px;
    background: #ffffff;
}

.project-faq-section .faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title.text-center::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 20px auto 0;
}

/* Overview Section */
.project-landing-overview .overview-content {
    padding-right: 30px;
}

.project-landing-overview .overview-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.project-landing-overview .overview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.project-landing-features .row {
    margin-top: 30px;
}

.project-landing-features .feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-landing-features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-landing-features .feature-icon {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}

.project-landing-features .feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.project-landing-features .feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Details Section */
.project-landing-details .details-list {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.project-landing-details .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.project-landing-details .detail-item:last-child {
    border-bottom: none;
}

.project-landing-details .detail-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.project-landing-details .detail-value {
    color: #666;
    font-size: 16px;
}

/* Gallery Section */
.project-landing-gallery .gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-landing-gallery .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-landing-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/* Location Section */
.project-landing-location .location-address {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.project-landing-location .location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.project-landing-location .location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===========================
   CTA Section
   =========================== */
.project-cta-section {
    padding: 80px 0;
    background: #e8e4dc;
}

.project-cta-section .cta-content-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.project-cta-section .cta-main-title {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.project-cta-section .cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.project-cta-section .cta-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.project-cta-section .cta-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-cta-section .cta-btn-primary {
    background: #ff9800;
    color: #000000;
    border-color: #ff9800;
}

.project-cta-section .cta-btn-primary:hover {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    color: #000000;
    text-decoration: none;
}

.project-cta-section .cta-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.project-cta-section .cta-btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.project-cta-section .cta-whatsapp {
    margin-top: 20px;
}

.project-cta-section .cta-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-cta-section .cta-whatsapp-link i {
    font-size: 20px;
}

.project-cta-section .cta-whatsapp-link:hover {
    color: #25D366;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    /* Full Width Hero Tablet */
    .project-landing-hero-fullwidth {
        min-height: 650px;
        padding: 80px 0;
    }

    .hero-heading-main {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .stat-box .stat-number {
        font-size: 32px;
    }

    /* Split Hero Responsive */
    .project-landing-hero-split {
        height: auto;
        min-height: 500px;
        padding: 50px 0;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-heading-split {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-form-box {
        margin: 0 auto;
        max-width: 500px;
        max-height: none;
    }

    /* Legacy Hero */
    .project-landing-hero {
        min-height: 500px;
    }

    .project-landing-hero .hero-heading {
        font-size: 40px;
    }

    .project-landing-overview .overview-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    /* Why Choose Responsive - Tablet */
    .project-why-choose .col-lg-2-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .project-why-choose .why-choose-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .project-why-choose .why-feature-box {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    /* Content with Stats Responsive - Tablet */
    .project-content-stats .content-stats-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .project-content-stats .content-stats-heading {
        font-size: 32px;
    }

    .project-content-stats .stat-number {
        font-size: 42px;
    }

    /* Floor Plans Responsive - Tablet */
    .project-floor-plans .floor-plans-heading {
        font-size: 36px;
    }

    .project-floor-plans .floor-plans-subheading {
        font-size: 15px;
    }

    /* Amenities Responsive - Tablet */
    .project-amenities {
        padding: 60px 0;
    }

    .project-amenities .amenities-header {
        margin-bottom: 40px;
    }

    .project-amenities .amenities-heading {
        font-size: 36px;
    }

    .project-amenities .amenities-subheading {
        font-size: 15px;
    }

    .project-amenities .amenity-image {
        height: 220px;
    }

    .project-amenities .amenity-content {
        padding: 25px 20px;
    }

    .project-amenities .amenity-title {
        font-size: 20px;
    }

    .project-amenities .amenity-description {
        font-size: 14px;
    }

    /* Location Responsive - Tablet */
    .project-location {
        padding: 60px 0;
    }

    .project-location .location-content {
        padding-left: 40px;
    }

    .project-location .location-heading {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .project-location .location-icon-box {
        width: 55px;
        height: 55px;
    }

    .project-location .location-icon-box i {
        font-size: 22px;
    }

    .project-location .location-name {
        font-size: 18px;
    }

    .project-location .location-distance {
        font-size: 15px;
    }

    /* Floor Plan Detail Responsive - Tablet */
    .project-floor-plan-detail {
        padding: 60px 0;
    }

    .project-floor-plan-detail .fpd-image-wrapper {
        padding: 0;
        margin-bottom: 30px;
        height: 400px;
    }

    .project-floor-plan-detail .fpd-detail-image {
        height: 400px;
    }

    .project-floor-plan-detail .fpd-content {
        padding-left: 40px;
    }

    .project-floor-plan-detail .fpd-heading {
        font-size: 40px;
    }

    .project-floor-plan-detail .fpd-description {
        font-size: 16px;
    }

    /* RERA Section Responsive - Tablet */
    .project-rera-section {
        padding: 60px 0;
    }

    .project-rera-section .rera-heading {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .project-rera-section .rera-icon i {
        font-size: 50px;
    }

    .project-rera-section .rera-feature-text {
        font-size: 18px;
    }

    .project-rera-section .rera-number {
        font-size: 20px;
    }

    /* FAQ Section Responsive - Tablet */
    .project-faq-section {
        padding: 60px 0;
    }

    .project-faq-section .faq-heading {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .project-faq-section .faq-question {
        padding: 20px 25px;
    }

    .project-faq-section .faq-question h3 {
        font-size: 16px;
    }

    .project-faq-section .faq-answer {
        padding: 0 25px 20px 25px;
    }

    .project-faq-section .faq-answer p {
        font-size: 15px;
    }

    /* CTA Section Responsive - Tablet */
    .project-cta-section {
        padding: 60px 0;
    }

    .project-cta-section .cta-main-title {
        font-size: 36px;
    }

    .project-cta-section .cta-subtitle {
        font-size: 17px;
    }

    .project-cta-section .cta-buttons-row {
        gap: 15px;
    }
}


@media (max-width: 767px) {
    /* Full Width Hero Mobile */
    .project-landing-hero-fullwidth {
        min-height: 600px;
        padding: 60px 0;
    }

    .hero-badge-top {
        font-size: 9px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-heading-main {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .hero-stats-boxes {
        margin-bottom: 30px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .rera-row {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .stat-box-rera {
        padding: 0;
    }

    .stat-box-rera .stat-label {
        font-size: 10px;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .stat-box {
        min-width: auto;
        width: 100%;
    }

    .stat-box .stat-number {
        font-size: 28px;
    }

    .stat-box .stat-label {
        font-size: 10px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        padding: 14px 30px;
        font-size: 14px;
    }

    /* Split Hero Mobile */
    .project-landing-hero-split {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-badge {
        font-size: 9px;
        padding: 5px 12px;
    }

    .hero-heading-split {
        font-size: 28px;
    }

    .hero-description-split {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-form-box {
        padding: 25px 20px;
        max-height: none;
    }

    .hero-form-box .form-title {
        font-size: 22px;
    }

    .hero-form-box .form-description {
        font-size: 12px;
    }

    .hero-contact-form input {
        padding: 11px 14px;
        font-size: 13px;
    }

    .form-submit-btn {
        padding: 12px;
        font-size: 13px;
    }

    /* Legacy Hero Mobile */
    .project-landing-hero {
        min-height: 400px;
        padding: 60px 0;
    }

    .project-landing-hero .hero-heading {
        font-size: 32px;
    }

    .project-landing-hero .hero-description {
        font-size: 16px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .project-landing-features .feature-box {
        padding: 30px 20px;
    }

    .project-landing-details .details-list {
        padding: 25px;
    }


    /* Why Choose Responsive - Mobile */
    .project-why-choose {
        padding: 50px 0;
    }

    .project-why-choose .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .project-why-choose .why-choose-title {
        font-size: 24px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .project-why-choose .why-feature-box {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .project-why-choose .why-feature-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .project-why-choose .why-feature-title {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }

    .project-why-choose .why-feature-description {
        font-size: 13px;
        text-align: center;
    }

    /* Content with Stats Responsive - Mobile */
    .project-content-stats {
        padding: 50px 0;
    }

    .project-content-stats .content-stats-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .project-content-stats .content-stats-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .project-content-stats .content-stats-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .project-content-stats .content-stats-numbers {
        gap: 40px;
    }

    .project-content-stats .stat-number {
        font-size: 36px;
    }

    .project-content-stats .stat-label {
        font-size: 11px;
    }

    .project-content-stats .content-stats-image {
        min-height: 400px;
        height: 400px;
        margin-top: 30px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: block;
        overflow: hidden;
    }
    
    .project-content-stats .content-stats-image img {
        width: 100% !important;
        height: 100% !important;
        min-height: 400px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 8px;
        display: block !important;
    }

    /* Floor Plans Responsive - Mobile */
    .project-floor-plans {
        padding: 50px 0;
    }

    .project-floor-plans .floor-plans-header {
        margin-bottom: 40px;
    }

    .project-floor-plans .floor-plans-heading {
        font-size: 28px;
        padding: 0 15px;
    }

    .project-floor-plans .floor-plans-subheading {
        font-size: 14px;
        padding: 0 15px;
    }

    .project-floor-plans .plan-card-image {
        height: 200px;
    }

    .project-floor-plans .plan-card-content {
        padding: 25px 20px;
    }

    .project-floor-plans .plan-title {
        font-size: 20px;
    }

    .project-floor-plans .plan-price {
        font-size: 20px;
    }

    .project-floor-plans .popular-badge {
        top: 15px;
        right: 15px;
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Amenities Responsive - Mobile */
    .project-amenities {
        padding: 50px 0;
    }

    .project-amenities .amenities-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 35px;
    }

    .project-amenities .amenities-header-content {
        margin-bottom: 20px;
    }

    .project-amenities .amenities-heading {
        font-size: 28px;
        padding: 0 15px;
    }

    .project-amenities .amenities-subheading {
        font-size: 14px;
        padding: 0 15px;
    }

    .project-amenities .amenities-nav {
        padding: 0 15px;
    }

    .project-amenities .amenities-prev,
    .project-amenities .amenities-next {
        width: 45px;
        height: 45px;
    }

    .project-amenities .amenities-prev i,
    .project-amenities .amenities-next i {
        font-size: 14px;
    }

    .project-amenities .amenity-card {
        margin: 0 10px;
    }

    .project-amenities .amenity-image {
        height: 200px;
    }

    .project-amenities .amenity-content {
        padding: 25px 20px;
        text-align: center;
    }

    .project-amenities .amenity-title {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }

    .project-amenities .amenity-description {
        font-size: 14px;
        text-align: center;
    }

    /* Location Responsive - Mobile */
    .project-location {
        padding: 50px 0;
    }

    .project-location .location-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .project-location .location-heading {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .project-location .location-points-list {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .project-location .location-point-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .project-location .location-icon-box {
        width: 50px;
        height: 50px;
    }

    .project-location .location-icon-box i {
        font-size: 20px;
    }

    .project-location .location-name {
        font-size: 18px;
    }

    .project-location .location-distance {
        font-size: 14px;
    }

    .project-location .location-button-wrapper {
        padding: 0 15px;
    }

    .project-location .location-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Floor Plan Detail Responsive - Mobile */
    .project-floor-plan-detail {
        padding: 50px 0;
    }

    .project-floor-plan-detail .fpd-image-wrapper {
        padding: 0;
        margin-bottom: 30px;
        height: 300px;
    }

    .project-floor-plan-detail .fpd-detail-image {
        height: 300px;
    }

    .project-floor-plan-detail .fpd-content {
        padding-left: 0;
        padding: 0 15px;
    }

    .project-floor-plan-detail .fpd-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .project-floor-plan-detail .fpd-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .project-floor-plan-detail .fpd-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* RERA Section Responsive - Mobile */
    .project-rera-section {
        padding: 50px 0;
    }

    .project-rera-section .rera-heading {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    .project-rera-section .rera-features-row {
        margin-bottom: 40px;
    }

    .project-rera-section .rera-feature-box {
        margin-bottom: 30px;
    }

    .project-rera-section .rera-icon i {
        font-size: 40px;
    }

    .project-rera-section .rera-feature-text {
        font-size: 16px;
    }

    .project-rera-section .rera-number-box {
        padding: 20px 15px;
    }

    .project-rera-section .rera-number-label {
        font-size: 12px;
    }

    .project-rera-section .rera-number {
        font-size: 16px;
        word-break: break-all;
    }

    /* FAQ Section Responsive - Mobile */
    .project-faq-section {
        padding: 50px 0;
    }

    .project-faq-section .faq-heading {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    .project-faq-section .faq-accordion {
        padding: 0 15px;
    }

    .project-faq-section .faq-item {
        margin-bottom: 15px;
    }

    .project-faq-section .faq-question {
        padding: 18px 20px;
    }

    .project-faq-section .faq-question h3 {
        font-size: 15px;
    }

    .project-faq-section .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .project-faq-section .faq-answer p {
        font-size: 14px;
    }

    .project-landing-details .detail-item {
        flex-direction: column;
        gap: 5px;
    }

    /* CTA Section Responsive - Mobile */
    .project-cta-section {
        padding: 50px 0;
    }

    .project-cta-section .cta-main-title {
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .project-cta-section .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .project-cta-section .cta-buttons-row {
        gap: 10px;
        flex-direction: column;
    }

    .project-cta-section .cta-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Why Choose Section Responsive - Mobile */
    .project-why-choose .why-choose-title {
        font-size: 24px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .project-why-choose .why-feature-box {
        padding: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .project-why-choose .why-feature-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .project-why-choose .why-feature-title {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }

    .project-why-choose .why-feature-description {
        font-size: 13px;
        text-align: center;
    }

    /* Content with Stats Responsive - Mobile */
    .project-content-stats {
        padding: 50px 0;
    }

    .project-content-stats .content-stats-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .project-content-stats .content-stats-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .project-content-stats .content-stats-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .project-content-stats .content-stats-numbers {
        gap: 40px;
    }

    .project-content-stats .stat-number {
        font-size: 36px;
    }

    .project-content-stats .stat-label {
        font-size: 11px;
    }

    /* Floor Plans Responsive - Mobile */
    .project-floor-plans {
        padding: 50px 0;
    }

    .project-floor-plans .floor-plans-header {
        margin-bottom: 40px;
    }

    .project-floor-plans .floor-plans-heading {
        font-size: 28px;
        padding: 0 15px;
    }

    .project-floor-plans .floor-plans-subheading {
        font-size: 14px;
        padding: 0 15px;
    }

    .project-floor-plans .plan-card-image {
        height: 200px;
    }

    .project-floor-plans .plan-card-content {
        padding: 25px 20px;
    }

    .project-floor-plans .plan-title {
        font-size: 20px;
    }

    .project-floor-plans .plan-price {
        font-size: 20px;
    }

    .project-floor-plans .popular-badge {
        top: 15px;
        right: 15px;
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Amenities Responsive - Mobile */
    .project-amenities {
        padding: 50px 0;
    }

    .project-amenities .amenities-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 35px;
    }

    .project-amenities .amenities-header-content {
        margin-bottom: 20px;
    }

    .project-amenities .amenities-heading {
        font-size: 28px;
        padding: 0 15px;
    }

    .project-amenities .amenities-subheading {
        font-size: 14px;
        padding: 0 15px;
    }

    .project-amenities .amenities-nav {
        padding: 0 15px;
    }

    .project-amenities .amenities-prev,
    .project-amenities .amenities-next {
        width: 45px;
        height: 45px;
    }

    .project-amenities .amenities-prev i,
    .project-amenities .amenities-next i {
        font-size: 14px;
    }

    .project-amenities .amenity-card {
        margin: 0 10px;
    }

    .project-amenities .amenity-image {
        height: 200px;
    }

    .project-amenities .amenity-content {
        padding: 25px 20px;
        text-align: center;
    }

    .project-amenities .amenity-title {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }

    .project-amenities .amenity-description {
        font-size: 14px;
        text-align: center;
    }

    /* Location Responsive - Mobile */
    .project-location {
        padding: 50px 0;
    }

    .project-location .location-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .project-location .location-heading {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .project-location .location-points-list {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .project-location .location-point-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .project-location .location-icon-box {
        width: 50px;
        height: 50px;
    }

    .project-location .location-icon-box i {
        font-size: 20px;
    }

    .project-location .location-name {
        font-size: 18px;
    }

    .project-location .location-distance {
        font-size: 14px;
    }

    .project-location .location-button-wrapper {
        padding: 0 15px;
    }

    .project-location .location-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Floor Plan Detail Responsive - Mobile */
    .project-floor-plan-detail {
        padding: 50px 0;
    }

    .project-floor-plan-detail .fpd-image-wrapper {
        padding: 0;
        margin-bottom: 30px;
        height: 300px;
    }

    .project-floor-plan-detail .fpd-detail-image {
        height: 300px;
    }

    .project-floor-plan-detail .fpd-content {
        padding-left: 0;
        padding: 0 15px;
    }

    .project-floor-plan-detail .fpd-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .project-floor-plan-detail .fpd-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .project-floor-plan-detail .fpd-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* RERA Section Responsive - Mobile */
    .project-rera-section {
        padding: 50px 0;
    }

    .project-rera-section .rera-heading {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    .project-rera-section .rera-features-row {
        margin-bottom: 40px;
    }

    .project-rera-section .rera-feature-box {
        margin-bottom: 30px;
    }

    .project-rera-section .rera-icon i {
        font-size: 40px;
    }

    .project-rera-section .rera-feature-text {
        font-size: 16px;
    }

    .project-rera-section .rera-number-box {
        padding: 20px 15px;
    }

    .project-rera-section .rera-number-label {
        font-size: 12px;
    }

    .project-rera-section .rera-number {
        font-size: 16px;
        word-break: break-all;
    }

    /* FAQ Section Responsive - Mobile */
    .project-faq-section {
        padding: 50px 0;
    }

    .project-faq-section .faq-heading {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    .project-faq-section .faq-accordion {
        padding: 0 15px;
    }

    .project-faq-section .faq-item {
        margin-bottom: 15px;
    }

    .project-faq-section .faq-question {
        padding: 18px 20px;
    }

    .project-faq-section .faq-question h3 {
        font-size: 15px;
    }

    .project-faq-section .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .project-faq-section .faq-answer p {
        font-size: 14px;
    }

    .project-landing-details .detail-item {
        flex-direction: column;
        gap: 5px;
    }

    /* CTA Section Responsive - Mobile */
    .project-cta-section {
        padding: 50px 0;
    }

    .project-cta-section .cta-main-title {
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .project-cta-section .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .project-cta-section .cta-buttons-row {
        flex-direction: column;
        gap: 15px;
    }

    .project-cta-section .cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .project-cta-section .cta-whatsapp-link {
        font-size: 15px;
    }

    .project-landing-gallery .gallery-item img {
        height: 250px;
    }
}

/* Small Mobile - Additional Refinements for 480px and below */
@media (max-width: 480px) {
    .project-content-stats .content-stats-image {
        min-height: 350px;
        height: 350px;
        margin-top: 25px;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .project-content-stats .content-stats-image img {
        min-height: 350px !important;
        height: 100% !important;
        border-radius: 6px;
        display: block !important;
    }
}

/* Extra Small Mobile - Additional Refinements for 375px and below */
@media (max-width: 375px) {
    .project-content-stats .content-stats-image {
        min-height: 320px;
        height: 320px;
        margin-top: 20px;
    }
    
    .project-content-stats .content-stats-image img {
        min-height: 320px !important;
        height: 100% !important;
    }
}

/* ===========================
   Contact Form Modal - Hidden by Default
   =========================== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10000;
    margin: auto;
    max-width: 450px;
    width: 90%;
    padding: 0;
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #ff9800;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.modal-close:hover {
    background: #ff9800;
    color: #fff;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.modal-form-wrapper {
    background: rgba(20, 25, 35, 0.95);
    padding: 25px 25px 20px;
    
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.modal-form-title {
    color: #ff9800;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 6px;
    line-height: 1.2;
}

.modal-form-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.hero-form-group {
    margin-bottom: 12px;
}

.hero-form-group label {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-form-control {
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #333;
    font-size: 13px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hero-form-control::placeholder {
    color: #999;
}

.hero-form-control:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.15);
}

.hero-form-submit {
    width: 100%;
    padding: 12px 16px;
    background: #ff9800;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.hero-form-submit:hover {
    background: #e68900;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35);
}

.hero-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-response-message {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
}

.form-response-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.form-response-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
}

.modal-form-footer {
    margin-top: 15px;
    text-align: center;
}

.modal-form-footer .rera-text {
    color: #ff9800;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

body.modal-open {
    overflow: hidden;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .contact-modal {
        padding: 15px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 420px;
    }
    
    .modal-form-wrapper {
        padding: 22px 18px 18px;
    }
    
    .modal-form-title {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .modal-form-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-form-group {
        margin-bottom: 11px;
    }

    .hero-form-group label {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .hero-form-control {
        padding: 10px 13px;
        font-size: 13px;
    }

    .hero-form-submit {
        padding: 12px 16px;
        font-size: 12px;
        margin-top: 5px;
    }

    .modal-form-footer {
        margin-top: 12px;
    }

    .modal-form-footer .rera-text {
        font-size: 9px;
    }
    
    .modal-close {
        top: -12px;
        right: -12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 96%;
        max-width: none;
    }
    
    .modal-form-wrapper {
        padding: 20px 16px 16px;
    }
    
    .modal-form-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .modal-form-subtitle {
        font-size: 11px;
        margin-bottom: 14px;
        line-height: 1.4;
    }

    .hero-form-group {
        margin-bottom: 10px;
    }

    .hero-form-group label {
        font-size: 8px;
        margin-bottom: 4px;
    }

    .hero-form-control {
        padding: 9px 12px;
        font-size: 12px;
    }

    .hero-form-submit {
        padding: 11px 14px;
        font-size: 11px;
        margin-top: 4px;
    }

    .modal-close {
        top: -10px;
        right: -10px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 375px) {
    .modal-form-wrapper {
        padding: 18px 14px 14px;
    }
    
    .modal-form-title {
        font-size: 17px;
    }

    .modal-form-subtitle {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .hero-form-control {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero-form-submit {
        padding: 10px 12px;
        font-size: 10px;
    }
}

/* ========================================
   CONTACT FORM 7 MODAL STYLING
   ======================================== */

/* CF7 Modal Form Container */
.cf7-modal-form-container .wpcf7 {
    margin: 0;
}

.cf7-modal-form-container .wpcf7-form {
    margin: 0;
}

/* CF7 Form Groups */
.cf7-modal-form-container .hero-form-group {
    margin-bottom: 8px;
}

.cf7-modal-form-container .hero-form-group label {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Remove CF7 wrapper spacing */
.cf7-modal-form-container .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* CF7 Input Fields */
.cf7-modal-form-container .hero-form-control {
    width: 100% !important;
    padding: 10px 14px !important;
    background: #ffffff !important;
    border: 2px solid transparent !important;
    border-radius: 5px !important;
    color: #333 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
}

.cf7-modal-form-container .hero-form-control::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.cf7-modal-form-container .hero-form-control:focus {
    outline: none !important;
    border-color: #ff9800 !important;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.15) !important;
}

/* CF7 Submit Button */
.cf7-modal-form-container .hero-form-submit {
    width: 100% !important;
    padding: 12px 16px !important;
    background: #ff9800 !important;
    border: none !important;
    border-radius: 5px !important;
    color: #000 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 3px !important;
}

.cf7-modal-form-container .hero-form-submit:hover {
    background: #e68900 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35) !important;
}

.cf7-modal-form-container .hero-form-submit:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* CF7 Response Messages */
.cf7-modal-form-container .wpcf7-response-output {
    margin: 10px 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    border: none !important;
    text-align: center !important;
}

.cf7-modal-form-container .wpcf7-mail-sent-ok {
    background: rgba(76, 175, 80, 0.1) !important;
    border: 1px solid #4caf50 !important;
    color: #4caf50 !important;
}

.cf7-modal-form-container .wpcf7-validation-errors,
.cf7-modal-form-container .wpcf7-acceptance-missing {
    background: rgba(244, 67, 54, 0.1) !important;
    border: 1px solid #f44336 !important;
    color: #f44336 !important;
}

.cf7-modal-form-container .wpcf7-spam-blocked {
    background: rgba(255, 152, 0, 0.1) !important;
    border: 1px solid #ff9800 !important;
    color: #ff9800 !important;
}

/* CF7 Validation Error Tips */
.cf7-modal-form-container .wpcf7-not-valid-tip {
    color: #f44336 !important;
    font-size: 11px !important;
    margin-top: 4px !important;
    display: block !important;
}

.cf7-modal-form-container .wpcf7-not-valid {
    border-color: #f44336 !important;
}

/* CF7 Spinner */
.cf7-modal-form-container .wpcf7-spinner {
    margin: 0 0 0 10px !important;
    display: inline-block !important;
}

/* Remove CF7 Default Margins */
.cf7-modal-form-container .wpcf7-form p {
    margin: 0 !important;
}

.cf7-modal-form-container .wpcf7 form .wpcf7-form-control-wrap {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* CF7 Screen Reader Response */
.cf7-modal-form-container .wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

/* Responsive - CF7 Modal Form */
@media (max-width: 768px) {
    .cf7-modal-form-container .hero-form-group {
        margin-bottom: 7px;
    }
    
    .cf7-modal-form-container .hero-form-group label {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .cf7-modal-form-container .hero-form-control {
        padding: 9px 12px !important;
        font-size: 13px !important;
    }
    
    .cf7-modal-form-container .hero-form-submit {
        padding: 11px 16px !important;
        font-size: 12px !important;
        margin-top: 4px !important;
    }
}
