/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
body {
    inline-size: 100%;
    overflow-x: clip; /* hidden की जगह clip इस्तेमाल करें, इससे sticky menu नहीं बिगड़ता */
    margin: 0;
}

/* अगर कोई चीज़ जबरदस्ती बाहर भाग रही है तो उसे रोकने के लिए */
.main-container, main, section { 
    max-width: 100vw;
    overflow-x: hidden;
}



/* पूरे पेज पर टेक्स्ट सिलेक्शन बंद */
body {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard */
}

/* इमेज को ड्रैग या सेव करने से रोकना */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* इमेज पर क्लिक भी नहीं होगा */
}



/* ================================
   PRODUCTS PAGE V3 - FINAL
   PAYSARAL - NEW LAYOUT
   ================================ */

:root {
    --primary-teal: #009688;       
    --primary-deep: #004d40;       
    --primary-light-teal: #00796b; 
    --accent-green: #67C949;      
    --accent-dark-green: #57b443; 
    --text-body: #4a4a4a;
    --text-heading: #00796b;
    --light-bg: #f7fafb;           
    --light-gray: #f9fbfa;
    --accent-yellow: #ffc107;
    --yellow-glow: rgba(255, 193, 7, 0.4);
    --white: #ffffff;
    --dark: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-body);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
}

/* ================================
   HERO BANNER
   ================================ */

.hero-banner {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 50%, var(--accent-green) 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(103, 201, 73, 0.2), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.4);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.text-highlight {
    color: var(--accent-yellow);
    position: relative;
}

.hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-green);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(103, 201, 73, 0.4);
}

.btn-hero-primary:hover {
    background: var(--accent-dark-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(103, 201, 73, 0.6);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateY(-5px);
    border-color: var(--white);
}

/* ================================
   PRODUCTS SECTION
   ================================ */

.products-section {
    padding: 70px 0;
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 150, 136, 0.1);
    color: var(--primary-teal);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   PRODUCT ROW
   ================================ */

.product-row {
    margin-bottom: 120px;
    position: relative;
    padding: 40px 0;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 136, 0.2), transparent);
}

/* ================================
   LEFT SECTION: IMAGE + FEATURES
   ================================ */

.product-left-section {
    position: sticky;
    top: 100px;
    padding-right: 30px;
}

.product-row.reverse .product-left-section {
    padding-right: 0;
    padding-left: 30px;
}

.product-image-box {
    position: relative;
    margin-bottom: 30px;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.product-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
}

.product-badge.premium {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.product-badge.trending {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4);
}

.product-badge.new {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
}

.image-wrapper {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.05), rgba(103, 201, 73, 0.05));
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-row:hover .image-wrapper::before {
    opacity: 1;
}

.product-row:hover .image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.product-img {
    width: 100%;
    max-width: 370px;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    object-fit: contain;
}

.product-row:hover .product-img {
    transform: scale(1.06);
}

/* ================================
   KEY FEATURES - 3x3 GRID
   ================================ */

.key-features-side {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.05), rgba(103, 201, 73, 0.05));
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(0, 150, 136, 0.1);
}

.key-features-side h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-features-side h4 i {
    color: var(--accent-yellow);
    font-size: 22px;
}

.key-features-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.key-features-side ul li {
    padding: 15px 12px;
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    line-height: 1.4;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.key-features-side ul li:hover {
    background: var(--white);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.key-features-side ul li i {
    color: var(--accent-green);
    font-size: 24px;
    flex-shrink: 0;
}

/* ================================
   RIGHT SECTION: CONTENT
   ================================ */

.product-content-box {
    padding: 0 40px 0 60px;
}

.product-row.reverse .product-content-box {
    padding: 0 60px 0 40px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-teal);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-category i {
    font-size: 18px;
}

.product-title {
    font-size: 30px;
    font-weight: 900;
    color: #67C949;
    margin-bottom: 25px;
    line-height: 1.4;
}

.product-description {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* ================================
   SPECIFICATIONS
   ================================ */

.specifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.spec-item {
    background: var(--white);
    padding: 18px 20px;
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 136, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.spec-item i {
    font-size: 24px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.spec-item div {
    display: flex;
    flex-direction: column;
}

.spec-item strong {
    color: var(--text-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
}

.spec-item span {
    color: var(--text-body);
    font-size: 13px;
}

/* ================================
   PRODUCT FOOTER - PERFECT TIRCHA CUT
   ================================ */

.product-footer-compact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid rgba(0, 150, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-original {
    font-size: 22px;
    font-weight: 700;
    color: #ff4757;
    line-height: 1;
    opacity: 0.85;
    position: relative;
    display: inline-block;
    width: fit-content;
}

/* Tircha Cut - Sirf Text Par */
.price-original::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4757;
    transform: translateY(-50%) rotate(-6deg);
}

.price-amount {
    font-size: 37px;
    font-weight: 900;
    color: var(--primary-teal);
    line-height: 1;
    margin: 5px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-amount span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-body);
}

.price-note {
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.savings-text {
    color: var(--accent-green);
    font-weight: 700;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-order-now {
    background: var(--accent-green);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(103, 201, 73, 0.3);
    cursor: pointer;
    white-space: nowrap;
}

.btn-order-now:hover {
    background: var(--accent-dark-green);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
}

/* ================================
   RESPONSIVE - PRICE SECTION
   ================================ */

@media (max-width: 768px) {
    .product-footer-compact {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 25px;
    }
    
    .price-info {
        align-items: center;
    }
    
    .price-original {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 42px;
        justify-content: center;
    }
    
    .price-note {
        justify-content: center;
    }
    
    .btn-order-now {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .price-original {
        font-size: 18px;
    }
    
    .price-original::before {
        height: 2px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-amount span {
        font-size: 16px;
    }
    
    .price-note {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .btn-order-now {
        padding: 16px 40px;
        font-size: 16px;
    }
}



/* Select Dropdown Styling */
.form-control select,
select.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 150, 136, 0.2);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-body);
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(103, 201, 73, 0.1);
}

select.form-control option {
    padding: 10px;
}



/* ================================
   ORDER MODAL
   ================================ */

.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-modal.active {
    display: flex;
}

.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;
    background: var(--white);
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    z-index: 10;
    animation: modalSlideIn 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--dark);
    z-index: 11;
}

.modal-close:hover {
    background: rgba(255,0,0,0.1);
    color: #ff4757;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.modal-header h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.order-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ff4757;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 150, 136, 0.2);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-body);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(103, 201, 73, 0.1);
}

.form-control[readonly] {
    background: var(--light-bg);
    cursor: not-allowed;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-order {
    width: 100%;
    background: var(--accent-green);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(103, 201, 73, 0.3);
    cursor: pointer;
    margin-top: 15px;
}

.btn-submit-order:hover {
    background: var(--accent-dark-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
}




/* ================================
   SUCCESS OVERLAY
   ================================ */

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-box {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   ANIMATED CHECKMARK
   ================================ */

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--white);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--accent-green);
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--accent-green);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--accent-green);
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 60px var(--accent-green);
    }
}

/* ================================
   SUCCESS OVERLAY - SIMPLE NO SCROLL
   ================================ */

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-box {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 35px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   ANIMATED CHECKMARK
   ================================ */

.success-checkmark {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--white);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--accent-green);
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--accent-green);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--accent-green);
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 60px var(--accent-green); }
}

/* ================================
   SUCCESS OVERLAY
   ================================ */

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-box {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 35px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   ANIMATED CHECKMARK - FIXED
   ================================ */

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #67C949;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #67C949;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    stroke: #fff;
    stroke-width: 3;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #67C949;
    }
}

/* ================================
   SUCCESS CONTENT
   ================================ */

.success-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 15px;
    line-height: 1.3;
}

.success-description {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ================================
   SUCCESS OVERLAY
   ================================ */

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

.success-box {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 35px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   ANIMATED CHECKMARK - NO WHITE CIRCLE
   ================================ */

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #67C949;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #67C949;
    fill: #67C949;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    stroke: #fff;
    stroke-width: 3;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #67C949;
    }
}



/* ================================
   CONFIRMATION OVERLAY
   ================================ */

.confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    overflow-y: auto;
}

.confirmation-overlay.active {
    display: flex;
}

.confirmation-box {
    background: var(--white);
    border-radius: 25px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: slideUpBounce 0.5s ease;
}

@keyframes slideUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    70% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header */
.confirmation-header {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    color: var(--white);
    padding: 35px 30px;
    border-radius: 25px 25px 0 0;
    text-align: center;
}

.confirm-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.confirmation-header h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
	color: var(--white);
}

.confirmation-header p {
    font-size: 15px;
    opacity: 0.95;
}

/* Details */
.confirmation-details {
    padding: 30px;
}

.confirm-section {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.03), rgba(103, 201, 73, 0.03));
    border: 2px solid rgba(0, 150, 136, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.confirm-section:last-child {
    margin-bottom: 0;
}

.confirm-section h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirm-section h4 i {
    color: var(--accent-green);
}

.confirm-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 150, 136, 0.1);
}

.confirm-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.confirm-item.full-width {
    flex-direction: column;
    gap: 8px;
}

.confirm-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
}

.confirm-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    text-align: right;
    max-width: 60%;
}

.confirm-item.full-width .confirm-value {
    max-width: 100%;
    text-align: left;
}

.confirm-item.total-price {
    background: linear-gradient(135deg, rgba(103, 201, 73, 0.1), rgba(0, 150, 136, 0.1));
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    border: none;
}

.confirm-item.total-price .confirm-label {
    font-size: 16px;
    color: var(--primary-teal);
}

.confirm-item.total-price .confirm-value {
    font-size: 20px;
    color: var(--accent-green);
}

/* Actions */
.confirmation-actions {
    display: flex;
    gap: 15px;
    padding: 0 30px 30px;
}

.btn-confirm-back,
.btn-confirm-submit {
    flex: 1;
    padding: 16px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm-back {
    background: var(--white);
    color: var(--text-heading);
    border: 2px solid rgba(0, 150, 136, 0.2);
}

.btn-confirm-back:hover {
    background: rgba(0, 150, 136, 0.05);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
}

.btn-confirm-submit {
    background: var(--accent-green);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(103, 201, 73, 0.3);
}

.btn-confirm-submit:hover {
    background: var(--accent-dark-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
}

/* Responsive */
@media (max-width: 576px) {
    .confirmation-box {
        max-height: 95vh;
    }
    
    .confirmation-header {
        padding: 30px 20px;
    }
    
    .confirm-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .confirmation-header h3 {
        font-size: 24px;
    }
    
    .confirmation-details {
        padding: 20px;
    }
    
    .confirm-section {
        padding: 15px;
    }
    
    .confirm-section h4 {
        font-size: 16px;
    }
    
    .confirm-item {
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
    }
    
    .confirm-value {
        max-width: 100%;
        text-align: left;
    }
    
    .confirmation-actions {
        flex-direction: column;
        padding: 0 20px 20px;
    }
    
    .btn-confirm-back,
    .btn-confirm-submit {
        width: 100%;
    }
}




/* ================================
   SUCCESS CONTENT
   ================================ */

.success-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 15px;
    line-height: 1.3;
}

.success-description {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* -------SUCCESS INFO BOX  -------*/

.success-info-box {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.05), rgba(103, 201, 73, 0.05));
    border: 2px solid rgba(103, 201, 73, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 150, 136, 0.1);
}

/* Device Model Row - Hidden by default */
.info-item#deviceModelRow {
    display: none;
}

/* Show when active */
.info-item#deviceModelRow.show {
    display: flex;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:first-child {
    padding-top: 0;
}

.info-label {
    font-size: 14px;
    color: var(--text-body);
    font-weight: 600;
}

.info-value {
    font-size: 14px;
    color: var(--primary-teal);
    font-weight: 700;
}

/* ================================
   BUTTON
   ================================ */

.btn-close-success {
    background: var(--accent-green);
    color: var(--white);
    padding: 16px 50px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(103, 201, 73, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-close-success:hover {
    background: var(--accent-dark-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 576px) {
    .success-box {
        padding: 35px 25px;
        width: 95%;
    }
    
    .success-checkmark {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .checkmark {
        width: 80px;
        height: 80px;
    }
    
    .success-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .success-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .success-info-box {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .info-item {
        padding: 8px 0;
    }
    
    .info-label,
    .info-value {
        font-size: 13px;
    }
    
    .btn-close-success {
        padding: 14px 40px;
        font-size: 16px;
    }
}



/* ================================
   WHY CHOOSE US - COMPACT VERSION
   ================================ */

.why-choose {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.feature-box {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid rgba(0, 150, 136, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.feature-box:hover {
    background: var(--white);
    border-color: var(--accent-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.25);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 35px rgba(0, 150, 136, 0.35);
}

.feature-box h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .feature-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feature-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-box p {
        font-size: 13px;
    }
}


/* ================================
   CTA SECTION - MINIMALIST
   ================================ */

.cta-section {
    padding: 80px 0;
    background: #004d40;
    position: relative;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 150, 136, 0.2);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle Elements */
.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-box::before {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -80px;
}

.cta-box::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-box {
        padding: 70px 50px;
    }
    
    .cta-box h2 {
        font-size: 42px;
    }
    
    .cta-box p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 60px 40px;
        border-radius: 25px;
    }
    
    .cta-box h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .cta-box p {
        font-size: 16px;
    }
    
    .cta-box::before {
        width: 250px;
        height: 250px;
        top: -70px;
        right: -60px;
    }
    
    .cta-box::after {
        width: 180px;
        height: 180px;
        bottom: -60px;
        left: -40px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-box {
        padding: 45px 30px;
        border-radius: 20px;
    }
    
    .cta-box h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .cta-box p {
        font-size: 15px;
    }
}

