:root {
    --gold: #f0b429;
    --gold-dark: #c8940a;
    --gold-light: #ffd666;
    --gold-bg: #fff8e7;
    --green: #1a5c1a;
    --green-mid: #236e23;
    --green-light: #2e8b2e;
    --text: #182018;
    --text-muted: #657065;
    --border: #d8e2d8;
    --bg: #f7faf7;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.plx-page {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Container Responsive */
.plx-page .container-fluid {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: auto;
    margin-left: auto;
}

/* Hero Section - FULL WIDTH BANNERS - NO CROPPING */
.plx-hero {
    background: #eef5ee;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.plx-hero .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.plx-hero-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.plx-hero-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.plx-hero-slide img {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
    margin: 0;
    padding: 0;
}

/* Alternative: If you want full width with background cover (no white space) */
.plx-hero-slide img.cover-image {
    object-fit: cover !important;
    min-height: 300px;
}

/* Owl Carousel Customization */
.owl-carousel {
    width: 100%;
}

.owl-stage-outer {
    overflow: hidden;
    width: 100%;
}

.owl-stage {
    display: flex;
    width: 100%;
}

.plx-hero .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
}

.plx-hero .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.plx-hero .owl-dots .owl-dot.active span {
    background: var(--gold);
    transform: scale(1.2);
}

.plx-hero .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 24px !important;
}

.plx-hero .owl-prev {
    left: 20px;
}

.plx-hero .owl-next {
    right: 20px;
}

/* Topbar Section */
.plx-topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 24px 0 20px;
}

.plx-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.plx-mini-tag,
.plx-tag {
    display: inline-flex;
    align-items: center;
    background: var(--gold-bg);
    color: var(--gold-dark);
    border: 1px solid #f1dfb5;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.plx-title-block {
    flex: 1;
    min-width: 250px;
}

.plx-title-block h1 {
    margin: 12px 0 10px;
    font-size: clamp(24px, 5vw, 38px);
    line-height: 1.2;
    color: var(--green);
    font-weight: 900;
}

.plx-title-block p {
    margin: 0;
    max-width: 760px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.plx-top-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.plx-top-points span {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.plx-top-points span:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

/* Sticky Anchor Navigation */
.plx-anchor-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.plx-anchor-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.plx-anchor-nav::-webkit-scrollbar {
    height: 4px;
}

.plx-anchor-nav::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 10px;
}

.plx-anchor-nav::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px;
}

.plx-anchor-link {
    flex: 0 0 auto;
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.plx-anchor-link:hover,
.plx-anchor-link.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-2px);
}

/* Sections */
.plx-section {
    padding: 40px 0;
}

.plx-section-head {
    margin-bottom: 30px;
}

.plx-section-head h2 {
    margin: 12px 0 8px;
    font-size: clamp(22px, 4vw, 32px);
    line-height: 1.2;
    color: var(--green);
    font-weight: 900;
}

.plx-section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 720px;
}

/* Cards */
.plx-box,
.plx-form-box,
.plx-mini-card,
.plx-offer-card,
.plx-card,
.plx-emi-box,
.plx-process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.plx-box,
.plx-form-box,
.plx-offer-card,
.plx-card,
.plx-emi-box,
.plx-process-card {
    padding: 24px;
}

.plx-mini-card {
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.plx-mini-card:hover,
.plx-offer-card:hover,
.plx-card:hover,
.plx-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.plx-mini-card h3,
.plx-offer-card h3,
.plx-card h3,
.plx-process-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--text);
    font-weight: 900;
}

.plx-mini-card p,
.plx-card p,
.plx-process-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Form Box */
.plx-form-box {
    position: sticky;
    top: 80px;
}

.plx-form-head h3 {
    margin: 0 0 8px;
    font-size: clamp(20px, 4vw, 26px);
    color: var(--green);
    font-weight: 900;
}

.plx-form-head p {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Step Pills */
.plx-step-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.plx-step-pill {
    padding: 8px 16px;
    background: var(--gold-bg);
    border: 1px solid #f1dfb5;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plx-step-pill.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

/* Form Fields */
.plx-step-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.plx-step-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plx-form-group {
    margin-bottom: 18px;
}

.plx-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
    color: var(--text);
}

.plx-form-group input,
.plx-form-group select,
.plx-form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plx-form-group input:focus,
.plx-form-group select:focus,
.plx-form-group textarea:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(46, 139, 46, 0.1);
}

.plx-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Validation Styles */
.plx-form-group .is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

.plx-form-group .is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Option Groups (Radio/Checkbox) */
.plx-option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.plx-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.plx-check-item input {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.plx-check-item span {
    font-size: 14px;
    color: var(--text);
}

/* Form Actions */
.plx-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.plx-form-actions.right {
    justify-content: flex-end;
}

/* Buttons */
.plx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 8px;
}

.plx-btn-primary {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.plx-btn-primary:hover:not(:disabled) {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 92, 26, 0.3);
}

.plx-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.plx-btn-secondary {
    background: #fff;
    border-color: var(--border);
    color: var(--text);
}

.plx-btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
}

.plx-form-note {
    margin: 16px 0 0;
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

/* Offer Cards */
.plx-rate {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: var(--gold-bg);
    border: 1px solid #f1dfb5;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    border-radius: 6px;
}

.plx-offer-card ul,
.plx-list {
    margin: 12px 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.plx-offer-card ul li,
.plx-list li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.plx-offer-card a {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.plx-offer-card a:hover {
    color: var(--green-light);
    transform: translateX(4px);
}

/* Table Styles */
.plx-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.plx-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.plx-table th,
.plx-table td {
    border: 1px solid var(--border);
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    vertical-align: top;
}

.plx-table th {
    background: var(--green);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.plx-table tbody tr:nth-child(even) {
    background: #f8fbf8;
}

.plx-table tbody tr:hover {
    background: var(--gold-bg);
}

/* EMI Calculator */
.plx-emi-box {
    padding: 28px;
}

.plx-range-group {
    margin-bottom: 24px;
}

.plx-range-group:last-child {
    margin-bottom: 0;
}

.plx-range-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.plx-range-top label {
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
}

.plx-range-top span {
    font-size: 14px;
    font-weight: 900;
    color: var(--green);
}

.plx-emi-box input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}

.plx-emi-box input[type="range"]:focus {
    outline: none;
}

.plx-emi-box input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plx-emi-box input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--green-light);
}

.plx-emi-result {
    display: grid;
    gap: 12px;
}

.plx-result-card {
    border: 1px solid var(--border);
    background: var(--gold-bg);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.plx-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.plx-result-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plx-result-card strong {
    display: block;
    font-size: clamp(18px, 4vw, 24px);
    color: var(--green);
    line-height: 1.2;
    font-weight: 900;
}

/* Process Cards */
.plx-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 12px;
    border-radius: 50%;
}

/* ============================================ */
/* RESPONSIVE DESIGN - FULL BANNERS ON ALL SCREENS */
/* ============================================ */

/* Extra Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 600px;
    }
}

/* Large Screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 550px;
    }
    
    .plx-page .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Medium Screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 450px;
    }
    
    .plx-section {
        padding: 32px 0;
    }
    
    .plx-box,
    .plx-form-box,
    .plx-offer-card,
    .plx-card,
    .plx-emi-box,
    .plx-process-card {
        padding: 20px;
    }
    
    .plx-form-box {
        position: static;
        margin-top: 30px;
    }
}

/* Tablet Screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 350px;
    }
    
    .plx-page .container-fluid {
        padding-right: 16px;
        padding-left: 16px;
    }
    
    .plx-topbar {
        padding: 20px 0;
    }
    
    .plx-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .plx-title-block {
        width: 100%;
    }
    
    .plx-title-block h1 {
        font-size: 28px;
    }
    
    .plx-top-points {
        width: 100%;
    }
    
    .plx-section {
        padding: 28px 0;
    }
    
    .plx-section-head {
        margin-bottom: 24px;
    }
    
    .plx-section-head h2 {
        font-size: 24px;
    }
    
    .plx-step-pills {
        gap: 8px;
    }
    
    .plx-step-pill {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .plx-option-group {
        gap: 12px;
    }
    
    .plx-table th,
    .plx-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .plx-emi-box {
        padding: 20px;
    }
    
    .plx-result-card {
        padding: 14px;
    }
}

/* Mobile Screens (375px to 575px) */
@media (min-width: 375px) and (max-width: 575px) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 280px;
    }
    
    .plx-page .container-fluid {
        padding-right: 14px;
        padding-left: 14px;
    }
    
    .plx-title-block h1 {
        font-size: 24px;
    }
    
    .plx-title-block p {
        font-size: 13px;
    }
    
    .plx-mini-tag,
    .plx-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .plx-top-points span {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .plx-section {
        padding: 24px 0;
    }
    
    .plx-section-head h2 {
        font-size: 22px;
    }
    
    .plx-section-head p {
        font-size: 13px;
    }
    
    .plx-box,
    .plx-form-box,
    .plx-offer-card,
    .plx-card,
    .plx-emi-box,
    .plx-process-card {
        padding: 16px;
    }
    
    .plx-mini-card h3,
    .plx-offer-card h3,
    .plx-card h3,
    .plx-process-card h3 {
        font-size: 16px;
    }
    
    .plx-mini-card p,
    .plx-card p,
    .plx-process-card p {
        font-size: 13px;
    }
    
    .plx-form-head h3 {
        font-size: 20px;
    }
    
    .plx-form-group input,
    .plx-form-group select,
    .plx-form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .plx-btn {
        min-height: 40px;
        padding: 0 18px;
        font-size: 13px;
    }
    
    .plx-form-actions {
        margin-top: 20px;
    }
}

/* Small Mobile Screens (up to 374px) */
@media (max-width: 374px) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 220px;
    }
    
    .plx-page .container-fluid {
        padding-right: 12px;
        padding-left: 12px;
    }
    
    .plx-title-block h1 {
        font-size: 20px;
    }
    
    .plx-title-block p {
        font-size: 12px;
    }
    
    .plx-section-head h2 {
        font-size: 18px;
    }
    
    .plx-box,
    .plx-form-box,
    .plx-offer-card,
    .plx-card,
    .plx-emi-box,
    .plx-process-card {
        padding: 14px;
    }
    
    .plx-btn {
        min-height: 38px;
        padding: 0 16px;
        font-size: 12px;
    }
    
    .plx-form-actions {
        flex-direction: column;
    }
    
    .plx-form-actions .plx-btn {
        width: 100%;
    }
    
    .plx-form-actions.right {
        justify-content: stretch;
    }
    
    .plx-option-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .plx-step-pill {
        padding: 5px 12px;
        font-size: 10px;
    }
    
    .plx-range-top label,
    .plx-range-top span {
        font-size: 12px;
    }
    
    .plx-result-card strong {
        font-size: 16px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .plx-hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        max-height: 250px;
    }
    
    .plx-section {
        padding: 20px 0;
    }
    
    .plx-form-box {
        margin-top: 20px;
    }
}

/* Loading Spinner */
.spinner-border {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .plx-anchor-wrap,
    .plx-form-box,
    .plx-btn,
    .owl-dots,
    .owl-nav {
        display: none !important;
    }
    
    .plx-page {
        background: white;
    }
    
    .plx-box,
    .plx-card,
    .plx-offer-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --green: #004d00;
        --gold: #b8860b;
        --border: #000000;
    }
    
    .plx-btn-primary,
    .plx-anchor-link.active {
        border: 2px solid #000;
    }
}