/* =========================
   ULTRA PREMIUM UI CSS
========================= */

/* GLOBAL SAFE FIX */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
overflow-x:hidden;
}

/* =========================
   HERO SLIDER UPGRADE
========================= */

.slide{
width:100%;
height:100%;
flex-shrink:0;
background-size:contain;
background-position:center;
background-repeat:no-repeat;
background-color:#dfe7ea;
position:relative;
transition:transform 1.0s ease;
}

.slide.active{
transform:scale(1.08);
}

/* =========================
   PRODUCT CARDS UPGRADE
========================= */

.product-card{
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
padding:22px;
border-radius:26px;

background:rgba(255,255,255,0.7);
backdrop-filter: blur(14px);
border:1px solid rgba(255,255,255,0.4);

box-shadow:
0 10px 30px rgba(0,0,0,0.08),
0 6px 20px rgba(37,99,235,0.08);

transition:0.4s ease;
overflow:hidden;
}

/* FLOATING HOVER */
.product-card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:
0 20px 50px rgba(0,0,0,0.15),
0 10px 25px rgba(37,99,235,0.2);
}

/* =========================
   GLASS LIGHT OVERLAY
========================= */

.product-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(255,255,255,0.85),
rgba(255,255,255,0.4)
);
z-index:0;
}

/* =========================
   ANIMATED GLOW BORDER
========================= */

.product-card::after{
content:"";
position:absolute;
inset:-2px;
border-radius:28px;
background:linear-gradient(
120deg,
#00f7ff81,
#3b83f667,
#9233ea5b,
#00f7ff65
);
background-size:300% 300%;
z-index:-1;
opacity:0;
transition:0.4s ease;
animation:glowMove 6s linear infinite;
}

.product-card:hover::after{
opacity:1;
}

@keyframes glowMove{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

/* =========================
   CONTENT LAYER FIX
========================= */

.product-card > *{
position:relative;
z-index:1;
}

/* =========================
   IMAGE INSIDE CARD
========================= */

.product-left img{
transition:0.3s ease;
}

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

/* =========================
   BUTTON PREMIUM STYLE
========================= */

.product-btn{
padding:14px 26px;
border-radius:50px;
background:linear-gradient(135deg,#0ea5e9,#6366f1);
color:#fff;
font-weight:700;
text-decoration:none;

box-shadow:0 8px 20px rgba(99,102,241,0.35);
transition:0.3s ease;
display:flex;
align-items:center;
justify-content:center;
}

.product-btn:hover{
transform:translateY(-3px) scale(1.02);
box-shadow:0 12px 30px rgba(32, 176, 238, 0.5);
}

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

@media(max-width:768px){

.product-card{
flex-direction:column;
text-align:center;
padding:18px;
}

.product-left{
width:100%;
justify-content:center;
}

.product-left img{
width:75px;
height:75px;
}

.product-btn{
width:100%;
}

.hero-content h1{
font-size:26px;
}

.hero-sub{
font-size:14px;
}

}

#products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
padding:30px;
}

#products .card{
background:#fff;
padding:15px;
border-radius:15px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
text-align:center;
}

#products img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
}

#products h3{
margin:10px 0;
font-size:20px;
}

#products p{
margin:5px 0;
}

/* =========================
   FEEDBACK FORM STYLES
========================= */

#feedback-form{
padding:60px 20px;
text-align:center;
background:linear-gradient(135deg,rgba(255,255,255,0.9),rgba(240,249,255,0.9));
margin:40px 0;
}

#feedback-form .title{
font-size:32px;
font-weight:700;
margin-bottom:10px;
color:#1e293b;
}

#feedback-form .section-subtitle{
font-size:16px;
color:black;
margin-bottom:30px;
background-color: rgb(250, 247, 247);
}

.feedback-trigger-btn{
padding:16px 32px;
background:linear-gradient(135deg,#6366f1,#8b5cf6);
color:#fff;
border:none;
border-radius:12px;
font-size:16px;
font-weight:600;
font-family:'Poppins',sans-serif;
cursor:pointer;
transition:0.3s ease;
box-shadow:0 8px 20px rgba(99,102,241,0.3);
}

.feedback-trigger-btn:hover{
transform:translateY(-2px);
box-shadow:0 12px 28px rgba(99,102,241,0.4);
}

/* =========================
   FEEDBACK MODAL STYLES
========================= */

.feedback-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:1000;
justify-content:center;
align-items:center;
padding:20px;
}

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

.feedback-modal-content{
background:#fff;
border-radius:16px;
max-width:500px;
width:100%;
max-height:90vh;
overflow-y:auto;
box-shadow:0 25px 50px rgba(0,0,0,0.25);
animation:modalSlideIn 0.3s ease;
}

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

.feedback-modal-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 24px;
border-bottom:1px solid #e2e8f0;
}

.feedback-modal-header h3{
font-size:20px;
font-weight:600;
color:#1e293b;
margin:0;
}

.close-modal-btn{
background:none;
border:none;
font-size:28px;
color:#64748b;
cursor:pointer;
padding:0;
width:32px;
height:32px;
display:flex;
align-items:center;
justify-content:center;
border-radius:8px;
transition:0.2s ease;
}

.close-modal-btn:hover{
background:#f1f5f9;
color:#1e293b;
}

.feedback-modal-body{
padding:24px;
}

.feedback-modal-body #feedbackForm{
display:flex;
flex-direction:column;
gap:15px;
}

.feedback-modal-body #feedbackForm input,
.feedback-modal-body #feedbackForm select,
.feedback-modal-body #feedbackForm textarea{
padding:14px 18px;
border:2px solid #e2e8f0;
border-radius:12px;
font-size:15px;
font-family:'Poppins',sans-serif;
transition:0.3s ease;
background:#fff;
}

.feedback-modal-body #feedbackForm input:focus,
.feedback-modal-body #feedbackForm select:focus,
.feedback-modal-body #feedbackForm textarea:focus{
outline:none;
border-color:#6366f1;
box-shadow:0 0 0 3px rgba(99,102,241,0.1);
}

.feedback-modal-body #feedbackForm textarea{
min-height:120px;
resize:vertical;
}

.feedback-modal-body #feedbackForm button{
padding:14px 28px;
background:linear-gradient(135deg,#6366f1,#8b5cf6);
color:#fff;
border:none;
border-radius:12px;
font-size:16px;
font-weight:600;
font-family:'Poppins',sans-serif;
cursor:pointer;
transition:0.3s ease;
box-shadow:0 8px 20px rgba(99,102,241,0.3);
}

.feedback-modal-body #feedbackForm button:hover{
transform:translateY(-2px);
box-shadow:0 12px 28px rgba(99,102,241,0.4);
}

.google-login-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 24px;
background:#fff;
color:#333;
border:1px solid #dadce0;
border-radius:8px;
font-size:14px;
font-weight:500;
font-family:'Poppins',sans-serif;
cursor:pointer;
transition:0.3s ease;
box-shadow:0 2px 4px rgba(0,0,0,0.1);
}

.google-login-btn:hover{
background:#f8f9fa;
box-shadow:0 4px 8px rgba(0,0,0,0.15);
}

.feedback-suggestions{
margin-top:10px;
}

.suggestions-label{
font-size:13px;
color:#64748b;
margin-bottom:8px;
font-weight:500;
}

.suggestions-list{
display:flex;
flex-wrap:wrap;
gap:8px;
}

.suggestion-btn{
padding:8px 12px;
background:#f1f5f9;
color:#475569;
border:1px solid #e2e8f0;
border-radius:8px;
font-size:12px;
font-weight:500;
font-family:'Poppins',sans-serif;
cursor:pointer;
transition:0.2s ease;
}

.suggestion-btn:hover{
background:#e2e8f0;
border-color:#cbd5e1;
color:#1e293b;
}

/* =========================
   FEEDBACK SUCCESS POPUP
========================= */

.feedback-success-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:2000;
justify-content:center;
align-items:center;
padding:20px;
}

.feedback-success-popup.active{
display:flex;
}

.feedback-success-content{
background:#fff;
border-radius:20px;
max-width:400px;
width:100%;
padding:40px 30px;
text-align:center;
box-shadow:0 25px 50px rgba(0,0,0,0.25);
animation:popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn{
from{
opacity:0;
transform:scale(0.8) translateY(20px);
}
to{
opacity:1;
transform:scale(1) translateY(0);
}
}

.feedback-success-emoji{
font-size:64px;
margin-bottom:20px;
}

.feedback-success-content h3{
font-size:24px;
font-weight:600;
color:#1e293b;
margin-bottom:12px;
}

.feedback-success-content p{
font-size:15px;
color:#64748b;
line-height:1.6;
margin-bottom:24px;
}

.feedback-success-btn{
padding:14px 32px;
background:linear-gradient(135deg,#6366f1,#8b5cf6);
color:#fff;
border:none;
border-radius:12px;
font-size:16px;
font-weight:600;
font-family:'Poppins',sans-serif;
cursor:pointer;
transition:0.3s ease;
box-shadow:0 8px 20px rgba(99,102,241,0.3);
}

.feedback-success-btn:hover{
transform:translateY(-2px);
box-shadow:0 12px 28px rgba(99,102,241,0.4);
}

/* =========================
   OUR SERVICES CARDS
========================= */

#our-services{
padding:60px 20px;
background:#f8fafc;
text-align:center;
}

#our-services .title{
font-size:32px;
font-weight:700;
color:#1e293b;
margin-bottom:10px;
}

#our-services .section-subtitle{
font-size:16px;
color:#f4f6f8;
margin-bottom:40px;
}

.our-services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1200px;
margin:0 auto;
}

.service-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s ease;
cursor:pointer;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 24px rgba(0,0,0,0.15);
}

.service-card-image{
width:100%;
height:180px;
object-fit:cover;
background:#f1f5f9;
}

.service-card-content{
padding:20px;
}

.service-card-content h3{
font-size:18px;
font-weight:600;
color:#1e293b;
margin-bottom:8px;
}

.service-card-content p{
    font-size:14px;
    color:#64748b;
    line-height:1.6;
    margin:0;
}

.service-card-price{
    font-size:16px;
    font-weight:700;
    color:#10b981;
    margin-top:8px;
}

.service-card-price-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
    flex-wrap:wrap;
}

.service-card-offer-price{
    font-size:16px;
    font-weight:700;
    color:#10b981;
}

.service-card-old-price{
    font-size:13px;
    color:#9ca3af;
    text-decoration:line-through;
}

.service-card-discount{
    background:#dcfce7;
    color:#16a34a;
    padding:2px 8px;
    border-radius:4px;
    font-size:11px;
    font-weight:700;
}

/* Mobile responsive for service cards */
@media(max-width:640px){
    .our-services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .service-card-image{
        height:120px;
    }

    .service-card-content{
        padding:12px;
    }

    .service-card-content h3{
        font-size:14px;
    }

    .service-card-content p{
        font-size:11px;
    }

    .service-card-price-row{
        gap:4px;
        margin-top:6px;
    }

    .service-card-offer-price{
        font-size:13px;
    }

    .service-card-old-price{
        font-size:11px;
    }

    .service-card-discount{
        font-size:10px;
        padding:1px 6px;
    }
}

/* =========================
   LOAD MORE BUTTON
========================= */

.load-more-container{
text-align:center;
margin-top:30px;
}

.load-more-btn{
padding:12px 32px;
background:#6366f1;
color:#fff;
border:none;
border-radius:8px;
font-size:16px;
font-weight:600;
font-family:'Poppins',sans-serif;
cursor:pointer;
transition:0.3s ease;
box-shadow:0 4px 12px rgba(99,102,241,0.3);
}

.load-more-btn:hover{
background:#4f46e5;
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(99,102,241,0.4);
}

.load-more-btn:active{
transform:translateY(0);
}

@media(max-width:768px){
#feedback-form{
padding:40px 15px;
}

#feedback-form .title{
font-size:24px;
}

.feedback-modal-content{
border-radius:12px;
margin:10px;
}

.feedback-modal-header{
padding:16px 20px;
}

.feedback-modal-header h3{
font-size:18px;
}

.feedback-modal-body{
padding:20px;
}

.feedback-modal-body #feedbackForm{
gap:12px;
}

.feedback-modal-body #feedbackForm input,
.feedback-modal-body #feedbackForm select,
.feedback-modal-body #feedbackForm textarea{
padding:12px 14px;
font-size:14px;
}

.feedback-modal-body #feedbackForm button{
padding:12px 20px;
font-size:14px;
}
}
