/* ===========================================
   Owner Registration Styles
   Matches the advertising landing page design
   @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');
   
   =========================================== */


:root {
    --black: #000;
    --green: rgb(45, 74, 62);
    --green-dark: #2E6F40; 
    --blue-dark: rgb(49, 52, 128);
    --green-light: rgb(124, 195, 91);
    --gray-light: rgb(221, 221, 221);
    --gray: #bbb;
    --gray-dark: #757575;
    --cream: #faf8f5;
    --error-red: #dc3545;
    --success-green: #28a745;
}


input::placeholder{
	color: var(--gray);
	font-weight:normal;
	
}

.advertising-landing {
    /*font-family: 'Source Sans 3', sans-serif;*/
    color: var(--black);
    background: #faf8f5;
    line-height: 1.7;
}

.advertising-landing * {
    box-sizing: border-box;
}

/* Hero Section */
.adv-hero {
    background:  var(--green-dark); /*linear-gradient(135deg, var(--green) 0%, #06402B 100%);*/
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.adv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 15 L30 12 L25 15 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.adv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease-out;
}

.adv-hero-badge svg {
    width: 16px;
    height: 16px;
    fill: #f5c518;
}

.adv-hero h1 {
 
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
    /*line-height: 1.2;*/
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.adv-hero-subtitle {
 
    font-size: 1.15rem;
  
        font-weight: 300;

  
        animation: fadeInUp 0.6s ease-out 0.2s both;
      color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;

}

/* Trust Bar */
.adv-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 20px;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray);
}

.adv-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem; /*0.95rem;*/
    color: var(--black);
}

.adv-trust-item svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
    opacity: 0.8;
}

.adv-trust-item strong {
    color: var(--green);
    font-weight: 600;
}

/* Pricing Section */
.adv-pricing-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.adv-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.adv-section-header h2 {
 
  /*  font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;*/
    color: var(--black); /*var(--blue-dark);*/
    margin-bottom: 15px;
}

.adv-section-header p {
    color: var(--black);
   /* font-size: 1.1rem;*/
    max-width: 550px;
    margin: 0 auto;
}

.adv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.adv-pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 35px;
    position: relative;
    box-shadow: 0 4px 20px rgba(45, 74, 62, 0.08);
    border: 1px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.adv-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(45, 74, 62, 0.18);
}

.adv-pricing-card.featured {
    border: 2px solid var(--green-light);
}

.adv-pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-light);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.adv-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #faf8f5 0%, var(--gray-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.adv-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--green);
}

.adv-card-icon i {
    font-size: 32px;
    color: var(--green);
}

.adv-contact-info {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #faf8f5 0%, var(--gray-light) 100%);
    border-radius: 10px;
}

.adv-contact-info p {
    margin: 0 0 10px 0;
    color: var(--black);
    font-size: 1rem; /*0.95rem;*/
}

.adv-contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.adv-contact-info a:hover {
    color: var(--black); /*var(--blue-dark);*/
}

.adv-contact-info a i {
    font-size: 18px;
}

.adv-pricing-card h3 {
   /* font-family: 'Noto Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;*/
    color: var(--black); /*var(--blue-dark);*/
    text-align: center;
    margin-bottom: 10px;
}

.adv-pricing-card .adv-card-desc {
    text-align: center;
    color: var(--black);
    font-size: 1rem; /*0.95rem;*/
    margin-bottom: 25px;
    min-height: 45px;
}

.adv-price-display {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 25px;
}

.adv-price-amount {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green);
}

.adv-price-period {
    color: var(--black);
    font-size: 0.9rem;
}

.adv-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.adv-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--black);
    font-size: 1rem; /*0.95rem;*/
}

.adv-card-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--green-light);
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA Buttons - using .green_button base */
.adv-pricing-card .green_button {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.adv-pricing-card .green_button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.adv-pricing-card .green_button.outline {
    background: transparent !important;
    color: var(--green) !important;
    border: 2px solid var(--green) !important;
}

.adv-pricing-card .green_button.outline:hover {
    background: var(--green) !important;
    color: #fff !important;
}

/* Why Join Section */
.adv-why-section {
    background: linear-gradient(180deg, var(--gray-light) 0%, #faf8f5 100%);
    padding: 80px 20px;
}

.adv-why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.adv-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.adv-why-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 74, 62, 0.08);
    transition: all 0.3s ease;
}

.adv-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(45, 74, 62, 0.12);
}

.adv-why-card-icon {
    width: 50px;
    height: 50px;
    background: #faf8f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.adv-why-card-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--green-light);
}

.adv-why-card h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black); /*var(--blue-dark);*/
    margin-bottom: 12px;
}

.adv-why-card p {
    color: var(--black);
    font-size: 1rem; /*0.95rem;*/
    line-height: 1.7;
    margin: 0;
}

/* Trial Banner */
.adv-trial-banner {
    /*background: var(--blue-dark);
    background: linear-gradient(135deg, var(--blue-dark) 0%, #2a2d5a 100%);*/
     background: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.adv-trial-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.adv-trial-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.adv-trial-banner h3 {
    /*font-family: 'Noto Sans', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);*/
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.adv-trial-banner p {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.adv-trial-banner .green_button {
    display: inline-block;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.adv-trial-banner .green_button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Property Types Section */
.adv-properties-section {
    padding: 70px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.adv-property-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.adv-property-tag {
    background: #fff;
    border: 1px solid var(--gray-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.adv-property-tag:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

/* Animations */
@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@@media (max-width: 768px) {
    .adv-hero {
        padding: 60px 20px 80px;
    }
    
    .adv-trust-bar {
        gap: 25px;
    }
    
    .adv-trust-item {
        font-size: 0.85rem;
    }
    
    .adv-pricing-section,
    .adv-why-section {
        padding: 60px 20px;
    }
    
    .adv-pricing-card {
        padding: 35px 25px;
    }
    
    .adv-trial-banner {
        padding: 50px 20px;
    }
}
   

/* Registration Container */
.register-container {
    /*font-family: 'Source Sans 3', sans-serif;*/
    background: var(--cream);
    min-height: 100vh;
    padding: 40px 20px;
}

.register-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Progress Steps */
.register-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.register-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.register-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 3px;
    background: var(--gray-light);
}

.register-step.completed:not(:last-child)::after {
    background: var(--green-light);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.register-step.active .step-number {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 74, 62, 0.3);
}

.register-step.completed .step-number {
    background: var(--green-light);
    color: #fff;
}

.step-label {
    font-size: 0.85rem;
    color: var(--black);
    text-align: center;
    font-weight: 500;
}

.register-step.active .step-label {
    color: var(--green);
    font-weight: 600;
}

.register-step.completed .step-label {
    color: var(--green-light);
}

/* Registration Card */
.register-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 74, 62, 0.08);
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.register-card-header {
    background:  var(--green-dark); /*linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);*/
    padding: 30px;
    text-align: center;
}

.register-card-header h1 {
 
    /*font-size: 1.8rem;*/
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
}

.register-card-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

.register-card-body {
    padding: 40px;
}

/* Form Styles */
.register-form .form-group {
    margin-bottom: 24px;
}

.register-form label {
    display: block;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
    font-size: 1rem; /*0.95rem;*/
}

.register-form label .required {
    color: var(--error-red);
    margin-left: 2px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"],
.register-form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    /*font-family: 'Source Sans 3', sans-serif;*/
    transition: all 0.3s ease;
    background: #fff;
}

.register-form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(45, 74, 62, 0.1);
}

.register-form input.error {
    border-color: var(--error-red);
}

.register-form input.valid {
    border-color: var(--green-light);
}

.register-form .input-hint {
    font-size: 0.85rem;
    color: var(--black);
    margin-top: 6px;
    font-style: italic;
}

.register-form label.error {
    display: block;
    color: var(--error-red);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 6px;
    padding-left: 0;
}

/* Checkbox */
.register-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--cream);
    border-radius: 10px;
    margin-top: 30px;
}

.register-form .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--green);
    cursor: pointer;
}

.register-form .checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
}

.register-form .checkbox-group a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.register-form .checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.register-form .btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    /*font-family: 'Source Sans 3', sans-serif;*/
}

.register-form .btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 74, 62, 0.25);
}

.register-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Card Payment Section */
.payment-info-box {
    background: linear-gradient(135deg, var(--cream) 0%, #e8f5e9 100%);
    border: 2px solid var(--green-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.payment-info-box p {
    margin: 0;
    color: var(--green);
    font-size: 1rem; /*0.95rem;*/
    line-height: 1.6;
}

.payment-info-box strong {
    color: var(--green);
}

.card-details-section {
    background: #fff;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.card-details-section h3 {
    font-family: 'Noto Sans', sans-serif;
   /* font-size: 1.2rem;*/
    font-weight: 600;
    color: var(--black); /*var(--blue-dark);*/
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

/* Stripe Card Element */
#card-element {
    padding: 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

#card-element.StripeElement--focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(45, 74, 62, 0.1);
}

#card-element.StripeElement--invalid {
    border-color: var(--error-red);
}

#card-errors {
    color: var(--error-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    min-height: 22px;
}

/* Card Holder Name Input */
#cardholder-name {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    /*font-family: 'Source Sans 3', sans-serif;*/
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#cardholder-name:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(45, 74, 62, 0.1);
}

/* Card Icons */
.card-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.card-icons img {
    height: 36px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    padding: 4px 8px;
    background: #fff;
}

/* Payment Button */
.btn-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /*font-family: 'Source Sans 3', sans-serif;*/
    min-width: 200px;
}

.btn-payment:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 74, 62, 0.25);
}

.btn-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner.hidden {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Trial Notice */
.trial-notice {
    background: var(--cream);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--black);
    line-height: 1.6;
}

.trial-notice strong {
    color: var(--green);
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-light);
    color: var(--black);
    font-size: 0.9rem;
}

.security-badge i {
    color: var(--green);
    font-size: 1.1rem;
}

/* Trust Badges */
.register-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    background: var(--cream);
    border-radius: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    /*font-size: 0.85rem;*/
    color: var(--black);
}

.trust-badge i {
    color: var(--green);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .register-container {
        padding: 20px 15px;
    }
    
    .register-card-body {
        padding: 25px 20px;
    }
    
    .register-card-header {
        padding: 25px 20px;
    }
    
    .register-card-header h1 {
        /*font-size: 1.5rem;*/
    }
    
    .register-steps {
        padding: 0;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .register-trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .register-step:not(:last-child)::after {
        display: none;
    }
    
    .register-steps {
        gap: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}