/* ========================================
   PLASTICORP - HOME PAGE STYLES
   Blue + White Theme | Fully Responsive
   ======================================== */

/* ========== SECTION PADDING ========== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-light);
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 74, 138, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 74, 138, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}



/* ========================================
   HERO SECTION – VIDEO BACKGROUND (NO EXTRA SPACE)
======================================== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a4a8a;
}
.hero-content .highlight {
    color: #e67e22;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.btn-primary {
    background: #1a4a8a;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: #2c6e9e;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid #1a4a8a;
    background: transparent;
    color: #1a4a8a;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
}
.btn-outline:hover {
    background: #1a4a8a;
    color: white;
}
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   INTRO SECTION – COMPACT & CLEAN
======================================== */
.intro-section {
    width: 100%;
    padding: 60px 5%;  /* reduced from 100px */
    background: #ffffff;
}
.intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.intro-content {
    flex: 1;
}
.intro-tag {
    background: #ffefe7;
    color: #ff6600;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
.intro-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}
.intro-content h1 span {
    color: #080589;
}
.intro-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.intro-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-box i {
    width: 50px;
    height: 50px;
    background: #080589;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}
.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.feature-box p {
    font-size: 0.8rem;
    margin: 0;
}
.intro-btns {
    display: flex;
    gap: 15px;
}
.intro-btn {
    background: #080589;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.intro-btn:hover {
    background: #111;
}
.intro-btn2 {
    border: 2px solid #080589;
    color: #080589;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}
.intro-btn2:hover {
    background: #080589;
    color: #fff;
}
.intro-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.intro-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
@media (max-width: 992px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
    }
    .intro-content h1 {
        font-size: 2rem;
    }
    .intro-features {
        grid-template-columns: 1fr;
    }
    .intro-btns {
        justify-content: center;
    }
    .intro-img {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .intro-section {
        padding: 40px 5%;
    }
    .intro-content h1 {
        font-size: 1.6rem;
    }
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
}




/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== FULL RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .intro-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    
    
    .intro-text h2,
    .featured h2,
    .cta-enquiry h2 {
        font-size: 2rem;
    }
    
    .stats-box {
        padding: 10px 20px;
        gap: 20px;
    }
    
    .stats-box h3 {
        font-size: 18px;
    }
    
    .cta-enquiry form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .intro-text h2,
    .featured h2,
    .cta-enquiry h2 {
        font-size: 1.8rem;
    }
    
    .stats-box {
        flex-direction: column;
        gap: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }
    
    .stats-box > div {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
}

/* ========== WHY CHOOSE US SECTION - ENHANCED ========== */

.why-choose {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(26,74,138,0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Feature Card - 3D Flip Style */
.feature-card {
    background: transparent;
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
}

.feature-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.feature-card:hover .feature-inner {
    transform: rotateY(180deg);
}

/* Front Side */
.feature-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-front:hover {
    box-shadow: 0 15px 40px rgba(26,74,138,0.15);
}

/* Back Side */
.feature-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(135deg, #1a4a8a, #2c6e9e);
    border-radius: 20px;
    padding: 30px 20px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a4a8a, #2c6e9e);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.feature-front i {
    font-size: 2.5rem;
    color: #1a4a8a;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-front i {
    transform: scale(1.1);
    color: #e67e22;
}

.feature-front h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-front h3 {
    color: #1a4a8a;
}

.feature-front p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Back Side Styles */
.feature-back i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.feature-back h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.feature-back p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 15px;
}

.feature-link {
    display: inline-block;
    font-size: 0.75rem;
    color: #ffd700;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-link:hover {
    transform: translateX(5px);
    color: white;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    background: #1a4a8a;
    color: white;
}

.trust-item:hover i {
    color: #ffd700;
}

.trust-item i {
    font-size: 1.2rem;
    color: #1a4a8a;
    transition: all 0.3s ease;
}

.trust-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: inherit;
}
/* =========================
   WHY CHOOSE US MOBILE
========================= */

@media (max-width:768px){

    .why-choose{
        padding:60px 15px;
    }

    .features-grid{
        grid-template-columns:1fr;
        gap:25px;
        margin-top:25px;
        margin-bottom:35px;
    }

    .feature-card{
        height:260px;
    }

    .feature-front,
    .feature-back{
        padding:25px 18px;
        border-radius:18px;
    }

    .feature-icon-wrapper{
        width:70px;
        height:70px;
        margin-bottom:18px;
    }

    .feature-front i,
    .feature-back i{
        font-size:2rem;
    }

    .feature-front h3,
    .feature-back h4{
        font-size:1.1rem;
    }

    .feature-front p,
    .feature-back p{
        font-size:0.8rem;
        line-height:1.6;
    }

    .feature-link{
        font-size:0.75rem;
    }

    .trust-badges{
        gap:15px;
        padding-top:25px;
        justify-content:center;
    }

    .trust-item{
        width:100%;
        max-width:320px;
        justify-content:center;
        padding:12px 15px;
    }

    .trust-item span{
        font-size:0.8rem;
        text-align:center;
    }

}

/* EXTRA SMALL DEVICES */

@media (max-width:480px){

    .feature-card{
        height:240px;
    }

    .feature-front,
    .feature-back{
        padding:20px 15px;
    }

    .feature-front h3,
    .feature-back h4{
        font-size:1rem;
    }

    .feature-front p,
    .feature-back p{
        font-size:0.75rem;
    }

    .trust-item{
        border-radius:15px;
    }

}








/* ========== ANKUSH PATEL - CTA + ENQUIRY SECTION (FIXED) ========== */

/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
}

/* ========== SECTION STYLES ========== */
.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ========== LEFT SIDE - CTA CONTENT ========== */
.cta-content-block {
    flex: 1;
    min-width: 280px;
}

.cta-badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.15);
    color: #e67e22;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cta-content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    line-height: 1.2;
}

.cta-content-block h2 .highlight {
    color: #e67e22;
}

.cta-content-block > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* CTA Features */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cta-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(26, 74, 138, 0.1);
}

.cta-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a4a8a, #2c6e9e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;  /* Icon color white */
    transition: all 0.3s ease;
}

.cta-feature:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #e67e22, #f39c12);  /* Orange on hover */
}

.cta-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.cta-feature p {
    font-size: 0.85rem;
    color: #888;
}

/* ========== RIGHT SIDE - ENQUIRY FORM ========== */
.enquiry-form-block {
    flex: 1;
    min-width: 350px;
}

.enquiry-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.enquiry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.enquiry-card h3 {
    font-size: 1.8rem;
    color: #1a4a8a;
    margin-bottom: 10px;
}

.enquiry-card > p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Form Styles */
.quick-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-message {
    display: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-message.is-visible {
    display: block;
}

.form-message.success {
    background: #eafaf0;
    border: 1px solid #9ad8ad;
    color: #1f6f3f;
}

.form-message.error {
    background: #fdeceb;
    border: 1px solid #f0b6b2;
    color: #a32929;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-row .input-group {
    flex: 1;
    min-width: 200px;
}

.input-group {
    position: relative;
    width: 100%;
}

.error-text {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #c0392b;
    min-height: 18px;
}

.input-group.has-error input,
.input-group.has-error select,
.input-group.has-error textarea {
    border-color: #dc3545;
    background: #fff7f8;
    animation: fieldPulse 0.24s ease-out;
}

.cta-enquiry .input-group {
    position: relative;
}



/* TEXTAREA FIX */
.cta-enquiry .input-group .textarea-icon {
    top: 18px;
    transform: none;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    height: 50px;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-group textarea {
    padding: 14px 15px 14px 45px;
    resize: vertical;
    min-height: 100px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #1a4a8a;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 74, 138, 0.1);
}

/* Submit Button */
.submit-enquiry {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a4a8a, #2c6e9e);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-enquiry:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 74, 138, 0.3);
    gap: 15px;
}

.submit-enquiry:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-enquiry.is-loading {
    gap: 8px;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
}

/* ========== TOAST NOTIFICATIONS ========== */
#toastContainer {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
}

.toast-notification {
    background: white;
    padding: 12px 24px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: toastIn 0.28s ease-out;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-icon {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.toast-text {
    flex: 1;
}

.toast-close {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 4px;
}

.toast-close:hover {
    opacity: 1;
}

.toast-notification.is-leaving {
    animation: toastOut 0.26s ease-in forwards;
}

.toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.toast-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.feedback-enter {
    animation: feedbackIn 0.25s ease-out;
}

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

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

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .cta-content-block h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-enquiry-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .enquiry-card {
        padding: 25px;
    }
    
    .enquiry-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-content-block {
        text-align: center;
    }
    
    .cta-feature {
        justify-content: center;
    }
    
    #toastContainer {
        top: 20px;
        right: 20px;
        left: 20px;
    }
    
    .toast-notification {
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .enquiry-card {
        padding: 20px;
    }
    
    .submit-enquiry {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .cta-feature {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* ========== ADD THESE AT THE END OF YOUR home.css ========== */

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Form disabled state */
.submit-enquiry:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success/Error message animations */
.toast-notification {
    animation: toastIn 0.28s ease-out;
}

/* Full width input group */
.full-width {
    width: 100%;
}

.input-group.full-width i {
    top: 20px;
    transform: none;
}

@keyframes btnSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

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

@keyframes fieldPulse {
    from {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px);
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-spinner,
    .toast-notification,
    .toast-notification.is-leaving,
    .feedback-enter,
    .input-group.has-error input,
    .input-group.has-error select,
    .input-group.has-error textarea {
        animation: none !important;
    }
}

/* =========================
   Enquiry Form UI Polish
   Targeted overrides only
   ========================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.cta-enquiry .enquiry-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.cta-enquiry .input-group {
    position: relative;
}



.cta-enquiry .input-group .textarea-icon {
    top: 20px;
    transform: none;
}

.cta-enquiry .input-group input,
.cta-enquiry .input-group select,
.cta-enquiry .input-group textarea {
    min-height: 50px;
    padding-left: 46px;
    border-radius: 14px;
    border: 1.5px solid #d8dee9;
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
    padding: 14px 14px 14px 46px;
}

.cta-enquiry .input-group textarea {
    min-height: 108px;
    padding-top: 12px;
}

.cta-enquiry .input-group:hover input,
.cta-enquiry .input-group:hover select,
.cta-enquiry .input-group:hover textarea {
    border-color: #c4cfdd;
    background: #ffffff;
}

.cta-enquiry .input-group:focus-within input,
.cta-enquiry .input-group:focus-within select,
.cta-enquiry .input-group:focus-within textarea {
    border-color: #1a4a8a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(26, 74, 138, 0.16), 0 8px 22px rgba(26, 74, 138, 0.08);
    transform: translateY(-1px);
}

.cta-enquiry .input-group:focus-within .input-icon {
    color: #1a4a8a;
    transform: translateY(-50%) scale(1.06);
    transition: all 0.25s ease;
}

.cta-enquiry .input-group:focus-within .textarea-icon {
    transform: scale(1.06);
}

.cta-enquiry .input-group.has-error input,
.cta-enquiry .input-group.has-error select,
.cta-enquiry .input-group.has-error textarea {
    border-color: #dc3545;
    background: #fff7f8;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
    animation: errorShake 0.28s ease;
}

.cta-enquiry .form-message.success.is-visible {
    animation: successPop 0.28s ease-out;
}

.cta-enquiry .submit-enquiry {
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-enquiry .submit-enquiry:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26, 74, 138, 0.28);
    filter: saturate(1.05);
}

.cta-enquiry .submit-enquiry:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(26, 74, 138, 0.2);
}

.cta-enquiry .submit-enquiry:focus-visible,
.cta-enquiry .input-group input:focus-visible,
.cta-enquiry .input-group select:focus-visible,
.cta-enquiry .input-group textarea:focus-visible,
.cta-enquiry .toast-close:focus-visible {
    outline: 2px solid #1a4a8a;
    outline-offset: 2px;
}

.cta-enquiry .toast-notification {
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@keyframes errorShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: translateY(-4px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    

    .cta-enquiry .input-group input,
    .cta-enquiry .input-group select,
    .cta-enquiry .input-group textarea {
        min-height: 48px;
        padding-left: 44px;
    }
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus::placeholder {
    opacity: 0.5;
}

.input-group:hover input {
    border-color: #bbb;
}

.input-group.success input {
    border-color: #28a745;
}

.submit-enquiry:hover {
    transform: translateY(-2px) scale(1.01);
}

/* ===== FINAL ICON FIX ===== */

.input-group {
    position: relative;
}


/* TEXTAREA ICON FIX */
.input-group .textarea-icon {
    top: 18px;
    transform: none;
}




/* ===== CLEAN INPUT + ICON FIX ===== */

.input-group {
    position: relative;
}

/* ICON PERFECT CENTER */
.input-group .input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #6b7280;
    pointer-events: none;
    z-index: 2;
}

/* INPUT FIELD */
.input-group input,
.input-group select {
    width: 100%;
    height: 52px;
    padding: 0 14px 0 46px;
    border: 1.5px solid #d8dee9;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

/* TEXTAREA */
.input-group textarea {
    width: 100%;
    padding: 14px 14px 14px 46px;
    min-height: 110px;
    border: 1.5px solid #d8dee9;
    border-radius: 12px;
    background: #f8fafc;
}

/* TEXTAREA ICON FIX */
.input-group .textarea-icon {
    top: 20px;
    transform: none;
}

/* FOCUS */
.input-group:focus-within input,
.input-group:focus-within select,
.input-group:focus-within textarea {
    border-color: #1a4a8a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 74, 138, 0.15);
}

/* ERROR */
.input-group.has-error input,
.input-group.has-error select,
.input-group.has-error textarea {
    border-color: #dc3545;
    background: #fff7f8;
}
.submit-enquiry {
    transition: all 0.25s ease;
}

.submit-enquiry:hover {
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .cta-enquiry-wrapper {
        flex-direction: column;
    }

    .input-group input,
    .input-group select {
        height: 48px;
    }
}


/* FORCE ICON PERFECT CENTER FIX */
.input-group {
    display: flex;
    align-items: center;
}

.input-group .input-icon {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
}



   /* Khushi Pal... */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.highlight {
    color: #2563eb;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

/* ---------- INTRO SECTION ---------- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.intro-features {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    font-weight: 500;
    color: #2563eb;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ---------- PRODUCTS SECTION ---------- */
.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--home-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.product-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.product-content p {
    color: #666;
    margin-bottom: 20px;
}

.product-content .btn {
    width: 100%;
    text-align: center;
}





.cta-enquiry input:focus,
.cta-enquiry textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cta-enquiry textarea {
    min-height: 120px;
    resize: vertical;
}

.cta-enquiry .btn {
    width: 100%;
    background: #2563eb;
}


/* WHATSAPP BUTTON FINAL */

.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 55px;
    height: 55px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    text-decoration: none;

    z-index: 999;

    box-shadow: none !important;
    animation: none !important;
}

/* REMOVE ALL EXTRA EFFECTS */

.whatsapp-float::before,
.whatsapp-float::after{
    content: none !important;
    display: none !important;
}

.whatsapp-float:hover{
    transform: scale(1.08);
    background: #1ebe5d;
}





/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-features {
        justify-content: center;
    }
    
    .intro-text h2,
    .featured h2,
    .cta-enquiry h2 {
        font-size: 2rem;
    }
    
    .cta-enquiry form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}


   
/* ========================================
   ORDER FORM - ENHANCED & ANIMATED
   ======================================== */


/* ========================================
   PREMIUM ORDER FORM UI
======================================== */

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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
}

/* Main Wrapper */
.order-page-wrapper {
    min-height: 100vh;
    padding: 50px 20px;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Card */
.order-container {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    animation: fadeUp 0.8s ease;
}

/* Left Side */
.order-left {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.left-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.left-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.feature-box {
    display: grid;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255,255,255,0.18);
}

.feature-item i {
    font-size: 20px;
}

/* Right Side */
.order-right {
    padding: 50px;
}

.order-header {
    margin-bottom: 35px;
}

.order-header h2 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 700;
}

.order-header p {
    color: #6b7280;
    font-size: 15px;
}

/* Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.full-width {
    grid-column: span 2;
}

/* Form Group */
.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    top: 18px;
    left: 18px;
    color: #2563eb;
    font-size: 16px;
    z-index: 2;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 1.5px solid #dbe2ea;
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
    transition: 0.3s ease;
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
    box-shadow: 0 12px 25px rgba(37,99,235,0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(37,99,235,0.28);
}

.btn-submit i {
    transition: 0.3s;
}

.btn-submit:hover i {
    transform: translateX(6px);
}

/* Footer */
.form-footer {
    margin-top: 25px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Validation */
.errorlist {
    color: #dc2626;
    font-size: 13px;
    list-style: none;
    margin-top: 8px;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .order-container {
        grid-template-columns: 1fr;
    }

    .order-left {
        display: none;
    }

    .order-right {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .order-header h2 {
        font-size: 28px;
    }

    .order-right {
        padding: 28px;
    }
}



/* ===== LEFT SIDE TEXT VISIBILITY FIX ===== */

.order-left {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #ffffff;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Optional overlay for better visibility */
.order-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    z-index: 0;
}

.left-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.left-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.left-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
}

/* Feature cards better visible */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    transition: 0.3s;
    color: #ffffff;
}

.feature-item span {
    color: #0c50b6;
    font-weight: 500;
}

.feature-item i {
    font-size: 20px;
    color: #ffffff;
}

/* ===== PLACEHOLDER FIX FOR RIGHT SIDE ===== */

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

/* Better textarea spacing */
.form-group textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 18px;
}

/* Better input look */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 1.5px solid #dbe2ea;
    border-radius: 14px;
    font-size: 15px;
    background: #ffffff;
    transition: 0.3s ease;
    outline: none;
    color: #111827;
}

/* Better focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

/* Message box style */
.form-message {
    display: none;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    animation: fadeUp 0.4s ease;
}





/* VERY IMPORTANT PLACEHOLDER FIX */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
    font-size: 14px;
    font-weight: 400;
}

/* Django form-control override fix */
.form-control::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

/* Textarea placeholder fix */
textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}



/* ========== CTA + ENQUIRY SECTION ========== */
.cta-enquiry {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Rotating Background Animation */
.cta-enquiry::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 74, 138, 0.05) 0%, transparent 70%);
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure content stays above animation */
.cta-enquiry-wrapper,
.cta-content-block,
.enquiry-form-block {
    position: relative;
    z-index: 1;
}


/* ========== EXTRA ANIMATIONS FOR ENQUIRY SECTION ========== */

/* Fade In Up Animation for Cards */
.cta-content-block,
.enquiry-form-block {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.cta-content-block {
    animation-delay: 0.1s;
}

.enquiry-form-block {
    animation-delay: 0.3s;
}

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

/* Hover Animation for Feature Items */
.cta-feature {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(26, 74, 138, 0.15);
}

/* Pulse Animation for Badge */
.cta-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

/* Button Hover Effect */
.submit-enquiry {
    position: relative;
    overflow: hidden;
}

.submit-enquiry::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.submit-enquiry:hover::before {
    width: 300px;
    height: 300px;
}

/* Glow Effect on Focus */
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(26, 74, 138, 0.2);
    border-color: #1a4a8a;
}


/* ========== CTA ENQUIRY WRAPPER - LAYOUT FIX ========== */
.cta-enquiry-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   HOME PAGE FINAL RESPONSIVE + DARK MODE FIXES
   ======================================== */
:root {
    --home-primary: #1e3a8a;
    --home-accent: #f4a261;
    --home-surface: #ffffff;
    --home-surface-soft: #f8fafc;
    --home-text: #1e293b;
    --home-muted: #64748b;
    --home-border: #e2e8f0;
}

main {
    background: var(--home-surface);
    color: var(--home-text);
    transition: background 0.25s ease, color 0.25s ease;
}

.section-padding {
    padding: 64px 0;
}

.hero {
    height: auto;
    min-height: clamp(380px, 58vh, 560px);
    padding: clamp(56px, 8vw, 90px) 20px;
    margin: 0;
    isolation: isolate;
}

.hero-video {
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: none;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(30, 58, 138, 0.42));
}

.hero-content {
    padding: 0;
    color: #ffffff;
}

.hero-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.12;
    margin-bottom: 14px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.98rem, 2vw, 1.18rem);
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.hero .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.hero .btn-outline:hover {
    background: #ffffff;
    color: var(--home-primary);
}

.intro-section,
.featured,
.why-choose,
.cta-enquiry {
    background: var(--home-surface);
}

.featured.bg-light {
    background: var(--home-surface-soft);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-tag,
.intro-tag,
.cta-badge {
    color: var(--home-primary);
}

.intro-grid {
    gap: clamp(28px, 5vw, 54px);
}

.intro-text p,
.section-header p,
.product-content p,
.cta-content-block > p,
.cta-feature p {
    color: var(--home-muted);
}

.intro-section .intro-features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 30px;
}

.intro-section .intro-features .feature-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    background: #eef6ff;
    border: 1px solid #cfe4ff;
    border-radius: 999px;
    color: var(--home-primary);
    font-weight: 700;
    box-shadow: none;
    backdrop-filter: none;
}

.intro-section .intro-features .feature-item i {
    color: #16a34a;
    font-size: 1rem;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--home-surface-soft);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.55));
    pointer-events: none;
}

.stats-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-item {
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.stat-number {
    display: block;
    color: var(--home-primary);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    display: block;
    color: var(--home-muted);
    font-size: 0.78rem;
    margin-top: 4px;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card,
.feature-front,
.enquiry-card,
.cta-feature {
    border: 1px solid var(--home-border);
}

.feature-card {
    min-height: 260px;
}

.feature-back p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-enquiry-wrapper {
    align-items: center;
}

.enquiry-form-block {
    min-width: min(100%, 340px);
}

.quick-enquiry-form .input-group {
    display: block;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.home-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode main {
    --home-surface: #0f172a;
    --home-surface-soft: #111827;
    --home-text: #e5e7eb;
    --home-muted: #cbd5e1;
    --home-border: #334155;
    background: var(--home-surface);
    color: var(--home-text);
}

body.dark-mode .intro-section,
body.dark-mode .featured,
body.dark-mode .why-choose,
body.dark-mode .cta-enquiry,
body.dark-mode .featured.bg-light {
    background: var(--home-surface);
}

body.dark-mode .why-choose {
    background: linear-gradient(135deg, #0f172a, #111827);
}

body.dark-mode .cta-enquiry {
    background: linear-gradient(135deg, #0f172a, #111827);
}

body.dark-mode .product-card,
body.dark-mode .feature-front,
body.dark-mode .enquiry-card,
body.dark-mode .cta-feature,
body.dark-mode .stat-item {
    background: #111827;
    border-color: var(--home-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

body.dark-mode .intro-text h2,
body.dark-mode .featured h2,
body.dark-mode .section-header h2,
body.dark-mode .product-content h3,
body.dark-mode .feature-front h3,
body.dark-mode .cta-content-block h2,
body.dark-mode .cta-feature h4,
body.dark-mode .enquiry-card h3 {
    color: var(--home-text);
}

body.dark-mode .intro-text p,
body.dark-mode .section-header p,
body.dark-mode .product-content p,
body.dark-mode .feature-front p,
body.dark-mode .cta-content-block > p,
body.dark-mode .cta-feature p,
body.dark-mode .enquiry-card > p,
body.dark-mode .stat-label {
    color: var(--home-muted);
}

body.dark-mode .input-group input,
body.dark-mode .input-group select,
body.dark-mode .input-group textarea {
    background: #0f172a;
    border-color: var(--home-border);
    color: var(--home-text);
}

body.dark-mode .input-group input:focus,
body.dark-mode .input-group select:focus,
body.dark-mode .input-group textarea:focus,
body.dark-mode .input-group:focus-within input,
body.dark-mode .input-group:focus-within select,
body.dark-mode .input-group:focus-within textarea {
    background: #111827;
    border-color: #60a5fa;
}

body.dark-mode .input-group .input-icon {
    color: #94a3b8;
}

body.dark-mode .intro-section .intro-features .feature-item {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.32);
    color: #dbeafe;
}

body.dark-mode .intro-section .intro-features .feature-item i {
    color: #86efac;
}

body.dark-mode .form-message.success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.45);
    color: #bbf7d0;
}

body.dark-mode .form-message.error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.45);
    color: #fecaca;
}

@media (max-width: 992px) {
    .section-padding {
        padding: 54px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 44px 0;
    }

    .hero {
        min-height: 360px;
        padding: 48px 18px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .intro-grid,
    .cta-enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-enquiry form {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 330px;
        padding: 42px 16px;
    }

    .hero .btn {
        width: 100%;
        max-width: 260px;
    }

    .stats-overlay {
        position: static;
        grid-template-columns: 1fr;
        margin-top: 12px;
    }

    .image-overlay {
        display: none;
    }

    .product-img-wrapper {
        height: 220px;
    }

    .enquiry-card {
        padding: 24px 18px;
    }
}

/* ========================================
   ORDER PAGE FINAL POLISH
   ======================================== */
.order-page-wrapper {
    min-height: calc(100vh - 120px);
    padding: clamp(34px, 6vw, 70px) 20px;
    background:
        linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(244, 162, 97, 0.10)),
        var(--home-surface-soft);
}

.order-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    overflow: hidden;
    border-radius: 24px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.order-left {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.18), rgba(30, 58, 138, 0.10)),
        linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
}

.order-left::before {
    content: "";
    position: absolute;
    inset: auto -20% -35% -20%;
    height: 55%;
    background: rgba(255, 255, 255, 0.10);
    transform: rotate(-8deg);
}

.left-content {
    position: relative;
    z-index: 1;
}

.order-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-left h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.order-left p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

.order-left .feature-box {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.order-left .feature-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.order-left .feature-item i,
.order-left .feature-item span {
    color: #ffffff;
}

.order-right {
    padding: clamp(28px, 5vw, 52px);
    background: var(--home-surface);
}

.order-header {
    margin-bottom: 26px;
}

.order-header h2 {
    margin: 0 0 8px;
    color: var(--home-text);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.order-header p {
    color: var(--home-muted);
}

.order-error-box,
.errorlist {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    color: #dc2626;
    font-size: 0.82rem;
}

.order-error-box {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.order-page-wrapper .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.order-page-wrapper .form-group {
    position: relative;
}

.order-page-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--home-text);
    font-size: 0.84rem;
    font-weight: 800;
}

.order-page-wrapper .form-group i {
    position: absolute;
    left: 16px;
    top: 45px;
    color: var(--home-primary);
    font-size: 0.96rem;
    z-index: 2;
}

.order-page-wrapper .form-control,
.order-page-wrapper .form-group input,
.order-page-wrapper .form-group textarea,
.order-page-wrapper .form-group select {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px 13px 46px;
    border: 1.5px solid var(--home-border);
    border-radius: 13px;
    background: var(--home-surface-soft);
    color: var(--home-text);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.order-page-wrapper textarea.form-control {
    min-height: 108px;
    resize: vertical;
}

.order-page-wrapper .form-control:focus,
.order-page-wrapper .form-group input:focus,
.order-page-wrapper .form-group textarea:focus,
.order-page-wrapper .form-group select:focus {
    outline: none;
    border-color: var(--home-primary);
    background: var(--home-surface);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.order-form-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #ecfdf5;
    color: #166534;
    font-size: 0.9rem;
    font-weight: 700;
}

.order-form-note i {
    color: #16a34a;
}

.btn-submit {
    width: 100%;
    margin-top: 18px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--home-primary), #2563eb);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.form-footer {
    margin-top: 18px;
    text-align: center;
    color: var(--home-muted);
    font-size: 0.86rem;
}

body.dark-mode .order-page-wrapper {
    background:
        linear-gradient(135deg, rgba(96, 165, 250, 0.08), rgba(244, 162, 97, 0.08)),
        #0b1120;
}

body.dark-mode .order-container,
body.dark-mode .order-right {
    background: #111827;
    border-color: var(--home-border);
}

body.dark-mode .order-form-note {
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
}

body.dark-mode .order-error-box {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
}

@media (max-width: 900px) {
    .order-container {
        grid-template-columns: 1fr;
    }

    .order-left {
        padding-bottom: 38px;
    }
}

@media (max-width: 640px) {
    .order-page-wrapper {
        padding: 24px 14px;
    }

    .order-page-wrapper .form-grid {
        grid-template-columns: 1fr;
    }

    .order-right {
        padding: 24px 18px;
    }
}
