:root {
    --primary-color: #ffc107;
    --primary-dark: #ff9800;
    --secondary-color: #111827;
    --light-bg: #f8fafc;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(17, 24, 39, 0.96) !important;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    letter-spacing: 0.2rem;
    font-size: 1.3rem;
}

.nav-link {
    color: #f3f4f6 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 24px;
    color: white;
}

.hero-card li {
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 70px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.stat-card,
.checkout-card,
.contact-card,
.card-item {
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 1.7rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.service-card,
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14);
}

.service-image,
.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body,
.product-body {
    padding: 20px;
}

.product-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff7d6;
    color: #a16207;
    margin-bottom: 10px;
}

.price-pill {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-warning {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #111827;
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #111827;
}

.btn-outline-dark:hover {
    background: #111827;
    color: white;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cart-item-info {
    flex: 1;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    font-weight: 700;
}

.qty-btn:hover {
    background: #e5e7eb;
}

.order-summary {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
}

.empty-state {
    padding: 20px;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
    color: var(--text-muted);
    text-align: center;
}

.offcanvas {
    background: #111827;
    color: white;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas .form-control {
    border-radius: 12px;
}

.contact-card a {
    color: white;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    padding: 12px 14px;
    border-radius: 12px;
    color: white;
    box-shadow: var(--shadow);
    min-width: 220px;
}

.toast-success {
    background: #16a34a;
}

.toast-error {
    background: #dc2626;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 86vh;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonial-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card h6 {
    color: var(--primary-color);
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card h4 {
    font-weight: 700;
    color: var(--text-dark);
}

.contact-card p {
    color: #666;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-control {
    border-radius: 8px;
    border: 2px solid #eee;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-control::placeholder {
    color: #999;
}

/* ========================
   BUTTONS
   ======================== */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

/* ========================
   FOOTER
   ======================== */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}


.footer-section{
    background:#0d0d0d;
    border-top:4px solid #f59e0b;
}

.footer-section h5{
    color:#fff;
}

.footer-section p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-links{
    padding-left:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f59e0b;
    padding-left:8px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#1d1d1d;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.35s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#f59e0b;
    color:#000;
    transform:translateY(-5px);
}

.footer-section hr{
    opacity:.2;
}

.text-light-emphasis{
    color:#9b9b9b !important;
}

@media(max-width:768px){

.footer-section{
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .contact-card {
        margin-bottom: 30px;
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .cert-badge {
        margin-bottom: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 40px;
    }

    .service-body {
        padding: 15px;
    }

    .service-body h5 {
        font-size: 1rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}


#whatsappWidget{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    z-index:99999;
    cursor:grab;
    user-select:none;
}

#whatsappWidget a{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-size:38px;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    transition:.35s;
}

#whatsappWidget a:hover{
    transform:scale(1.08);
    background:#20bd5a;
}

.notification{
    position:absolute;
    top:6px;
    right:8px;
    width:14px;
    height:14px;
    background:red;
    border-radius:50%;
    border:2px solid white;
}

#whatsappWidget::before{

    content:"Chat with us";

    position:absolute;

    right:85px;

    top:50%;

    transform:translateY(-50%);

    background:#222;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    white-space:nowrap;

    opacity:0;

    transition:.3s;

    font-size:14px;

}

#whatsappWidget:hover::before{

    opacity:1;

}

@media(max-width:768px){

#whatsappWidget{

    width:60px;

    height:60px;

}

#whatsappWidget a{

    font-size:32px;

}

}