:root {
    /* Primary Colors */
    --clr-primary: #ffc107; 
    --clr-secondary: #0a5c3d; 
    --clr-dark: #333;
    --clr-dark-alt: #272727;
    --clr-light: #fff;
    --clr-light-alt: #f5f5f5;
    --clr-text-main: rgb(63, 63, 63); 
    --clr-text-scrolled: rgb(0, 0, 0); 
    --clr-text-secondary: #666;
    --clr-bg-section: #f9f9f9;

    --ff-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --fs-base: 14px;

    /* Spacing */
    --padding-header-top: 8px 0;
    --padding-header: 10px 0;
    --gap-nav: 35px;
    --gap-cta: 15px;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;

    /* Borders & Radius */
    --border-radius-sm: 5px;
    --border-radius-md: 8px;
    --border-radius-full: 25px;
    --border-light: 1px var(--clr-light-alt) solid;
    --border-input: 2px solid #e0e0e0;

    /* Transitions & Shadows */
    --transition-fast: all 0.3s ease;
    --transition-color: color 0.3s ease;
    --shadow-header-scrolled: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-btn-primary: 0 3px 10px rgba(255, 193, 7, 0.3);
    --shadow-btn-primary-hover: 0 5px 15px rgba(255, 193, 7, 0.4);
    --shadow-box: 0 4px 15px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: var(--ff-body);
    overflow-x: hidden;
}


     
.btn-submit {
    position: relative;
    min-width: 120px;
}

.btn-spinner {
    margin-left: 8px;
}


/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    overflow: hidden;
    color: var(--clr-light);
    padding: 100px 0 120px;

    background: url("img/homepage-cover.png") center center / cover no-repeat;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Content should be on top */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;

}

.hero h1 {
    font-size: 55px;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    animation: fadeInUp 1s;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #e7ad00; /* brand gold */
    margin: 10px 0 15px;
    letter-spacing: 0.3px;
}


.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 1.2s;
}

.hero-cta {
    display: flex;
    gap: var(--gap-cta);
    animation: fadeInUp 1.4s;
}

.btn-primary {
    background: var(--clr-primary) !important;
    color: var(--clr-dark) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: none !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: transparent !important;
    color: var(--clr-light) !important;
    border: 2px solid var(--clr-light) !important;
}

.btn-secondary:hover {
    background: var(--clr-light) !important;
    color: var(--clr-secondary) !important;
}

/****Brand Section****/
.featured-brands {
    background: #fbbc28;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.featured-brands h2 {
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--clr-dark);
    font-weight: 700;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.brands-scroll-list {
    display: flex;
    flex-wrap: nowrap;
    width: 200%;
    gap: 20px;
}

/* Top Row - Scroll to LEFT */
.brands-scroll-list.scroll-left {
    animation: scroll-left 10s linear infinite;
}

/* Bottom Row - Scroll to RIGHT */
.brands-scroll-list.scroll-right {
    animation: scroll-right 10s linear infinite;
}

.carousel-wrapper:hover .brands-scroll-list {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    height: 120px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    display: block;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Animation for LEFT Scroll */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Animation for RIGHT Scroll */
@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .featured-brands h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .brand-item {
        width: 140px;
        height: 100px;
        padding: 10px 15px;
    }
    
    .brand-item img {
        max-height: 60px;
    }
    
    .brands-scroll-list.scroll-left {
        animation: scroll-left 20s linear infinite;
    }
    
    .brands-scroll-list.scroll-right {
        animation: scroll-right 20s linear infinite;
    }
}

/* Cookie Consent Banner */
#cookieConsent {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#cookieConsent button {
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
}

#cookieConsent button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
        
/* Savings Calculator */
.savings-calculator {
     background: var(--clr-primary);
     padding: 20px 0;
     text-align: center;
}
 .calculator-box {
     background: var(--clr-light);
     padding: 50px 40px;
     border-radius: var(--spacing-md);
     box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.savings-calculator h1, .savings-calculator h2 {
     text-align: center;
     color: var(--clr-dark);
     margin-bottom: var(--spacing-sm);
     font-size: 32px;
     font-weight: 700;
}
.savings-icon {
    width: 80px;
    height: 80px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--clr-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

 .calculator-box > p {
     text-align: center;
     color: var(--clr-text-main);
     margin-bottom: 40px;
     font-size: 16px;
}
 .input-group-custom {
     text-align: center;
}
 .input-group-custom input {
     width: 100%;
     padding: var(--spacing-md);
     font-size: 24px;
     border: var(--border-input);
     border-radius: var(--border-radius-md);
     text-align: center;
     font-weight: 700;
     color: var(--clr-dark);
     transition: border-color 0.3s;
     margin: 0 auto;
}
 .input-group-custom input:focus {
     outline: none;
     border-color: var(--clr-primary);
}
 .input-group-custom p {
     margin-top: var(--spacing-sm);
     margin-bottom: 0;
     font-size: var(--fs-base);
     color: var(--clr-text-secondary);
}
 .calculate-btn {
     background: var(--clr-primary);
     color: var(--clr-dark);
     border: none;
     padding: var(--spacing-md) 50px;
     font-size: 16px;
     font-weight: 700;
     border-radius: var(--border-radius-full);
     cursor: pointer;
     text-transform: uppercase;
     transition: var(--transition-fast);
     box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
 .calculate-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
 .calculate-btn:active {
     transform: translateY(0);
}
 .results {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: var(--spacing-lg);
     margin-top: var(--spacing-xl);
     opacity: 0;
     transition: opacity 0.5s;
}
 .results.show {
     opacity: 1;
}
 .result-card {
     color: var(--clr-primary);
     border-radius: var(--spacing-md);
     text-align: center;
     transition: transform 0.3s;
}
 .result-card:hover {
     transform: translateY(-5px);
}
 .result-value {
     font-size: 32px;
     font-weight: bold;
     margin: 10px 0;
}
 .result-label {
     font-size: 14px;
     color: var(--clr-dark-alt  );
     opacity: 0.9;
}
 .error-message {
     color: #e74c3c;
     text-align: center;
     margin-top: var(--spacing-md);
     font-weight: 500;
     min-height: var(--spacing-lg);
}

/* Services Section */
 .services-section {
     padding: 80px 0;
     background: var(--clr-light);
}
 .services-section h2 {
     font-size: 36px;
     color: var(--clr-dark);
     text-align: center;
     margin-bottom: 20px;
     font-weight: 700;
}
 .services-section .section-subtitle {
     text-align: center;
     color: var(--clr-text-secondary);
     font-size: 18px;
     margin-bottom: 60px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
}
 .service-card {
     background: var(--clr-light);
     padding: 40px 30px;
     box-shadow: var(--shadow-box);
     height: 100%;
     border: 2px solid transparent;
}
 .service-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d7a51 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 35px;
     color: var(--clr-light);
}
 .service-card h3 {
     font-size: 24px;
     color: var(--clr-dark);
     margin-bottom: 15px;
     font-weight: 700;
     text-align: center;
}
 .service-card p {
     font-size: 15px;
     color: var(--clr-text-secondary);
     line-height: 1.8;
     text-align: center;
     margin-bottom: 0;
 }

/* ========== 6 REASONS SECTION ========== */
.solar-reasons-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.solar-reasons-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solar-reasons-section h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== 6 REASONS SECTION ========== */
.solar-reasons-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.solar-reasons-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solar-reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ========== LEFT SIDE - ILLUSTRATION ========== */
.reasons-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 16px;
}

.reasons-title .light-text {
    font-weight: 600;
    color: #374151;
}

.reasons-title .brand-text {
    color: #198754;
}

.reasons-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
}

.illustration-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.illustration-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* ========== RIGHT SIDE - ACCORDION ========== */
.reasons-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========== ACCORDION ITEM ========== */
.accordion-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9fafb;
}

.accordion-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #155b2f 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 16px;
    transition: transform 0.3s ease;
}

.accordion-item:hover .accordion-icon-wrapper {
    transform: scale(1.05);
}

.accordion-title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.accordion-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.accordion-content-inner {
    padding-top: 4px;
}

.accordion-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.reason-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .solar-reasons-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .reasons-illustration h2 {
        font-size: 40px;
    }
    
    .illustration-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .solar-reasons-section {
        padding: 60px 0;
    }
    
    .reasons-illustration h2 {
        font-size: 32px;
    }
    
    .accordion-header {
        padding: 16px 18px;
    }
    
    .accordion-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-right: 12px;
    }
    
    .accordion-title {
        font-size: 15px;
    }
    
    .accordion-content p {
        font-size: 14px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 18px 16px 18px;
    }
}

/* ========== TEXT CONTENT ========== */
.reason-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
    line-height: 1.4;
}

.reason-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ========== BADGE ========== */
.reason-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ========== SOLAR SYSTEM TIPS SECTION ========== */
.solar-tips-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.solar-tips-section h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f2937;
    position: relative;
}

.solar-tips-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 10px;
}

/* ========== VIDEO TIP CARD ========== */
.solar-tip-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

.solar-tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ========== VIDEO WRAPPER ========== */
.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-placeholder video,
.video-placeholder iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Optional overlay gradient */
.video-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    pointer-events: none;
}

/* ========== TEXT TIP CARD ========== */
.tip-info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.tip-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
    border-color: #dfa702;
}

/* Icon */
.tip-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #dfa702);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var();
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(197, 145, 34, 0.35);
}

/* Title */
.tip-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

/* Description */
.tip-info-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #6b7280;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .solar-reasons-section h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .reason-card {
        padding: 28px 22px;
    }

    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .reason-card h4 {
        font-size: 18px;
    }

    .reason-card p {
        font-size: 14px;
    }

    .solar-tip-card {
        height: 220px;
    }

    .solar-tips-section h2 {
        font-size: 26px;
    }
}


/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background: var(--clr-light-alt);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: var(--spacing-xl);
    color: var(--clr-dark);
    font-weight: 700;
}

/* Visit Us Section */
.visit-us-section {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-xl);
}

.visit-us-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--spacing-md);
}

.visit-us-section p {
    color: var(--clr-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: #2a5b3c;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.whatsapp-btn:hover {
    background: #128c26;
    color: white;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 20px;
}

/* Company Info */
.company-info {
    margin-bottom: var(--spacing-xl);
}

.company-info strong {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--clr-dark);
    font-size: 18px;
}

.company-info p {
    color: var(--clr-text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--spacing-sm) 0;
}

.company-info .phone-number {
    font-weight: 600;
    color: var(--clr-dark   );
}

/* Hours Section */
.hours-section {
    margin-top: var(--spacing-xl);
}

.hours-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.hours-toggle:hover {
    background: #f8f9fa;
}

.hours-toggle i {
    transition: transform 0.3s ease;
}

.hours-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.hour-item:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.hour-item span:first-child {
    font-weight: 600;
    color: var(--clr-dark);
}

.hour-item span:last-child {
    color: var(--clr-text-secondary);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
}

.contact-detail i {
    color: var(--clr-primary);
    font-size: var(--spacing-lg);
    margin-top: 3px;
    min-width: var(--spacing-lg);
}

.contact-detail strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--clr-dark);
    font-size: 16px;
}

.contact-detail p,
.contact-detail span {
    color: var(--clr-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    padding: 40px;
    border: 1px solid #d7d7d7;
}

.contact-form .form-control {
    padding: var(--spacing-md);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-md);
    font-size: var(--fs-base);
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--clr-primary);
    box-shadow: none;
}

.contact-form textarea.form-control {
    resize: vertical;
}

.btn-submit {
    background: var(--clr-secondary);
    color: var(--clr-light);
    padding: var(--spacing-md) 40px;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #085231;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .visit-us-section {
        padding: var(--spacing-md);
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Subscription Section */
.subscription-section {
    background-color: var(--clr-secondary);
    color: var(--clr-light);
    padding: 40px 0;
}

.subscription-bar {
    text-align: center;
}

.subscription-bar h3 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
}

#subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

#subscribe-form input {
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: var(--fs-base);
}

.btn-subscribe {
    background-color: var(--clr-primary);
    color: var(--clr-dark);
    padding: var(--spacing-md) 35px;
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    animation: fadeIn 0.4s ease;
}

.notification.success { background-color: #28a745; }
.notification.error { background-color: #dc3545; }

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}



/* ========== CATALOG SECTION ========== */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.catalogs-section { 
    padding: 60px 0; 
    background: #fafafa; 
}

.catalog-header { 
    text-align: center; 
    margin-bottom: 40px; 
}

.catalog-header h2 { 
    font-size: 32px; 
    font-weight: 600; 
    color: #1a1a1a; 
    margin-bottom: 8px; 
    letter-spacing: -0.5px; 
}

.catalog-subtitle { 
    font-size: 15px; 
    color: #666; 
    font-weight: 400; 
}

/* ========== FILTER BAR ========== */
.filter-bar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 30px; 
    padding: 20px; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.filter-buttons { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap; 
    flex: 1;
    min-width: 0;
}

.filter-btn { 
    padding: 10px 20px; 
    background: #f5f5f5; 
    border: 2px solid transparent; 
    border-radius: 25px; 
    font-size: 14px; 
    font-weight: 500; 
    color: #666; 
    cursor: pointer; 
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover { 
    background: #e8e8e8; 
    color: #1a1a1a;
    transform: translateY(-2px);
}

.filter-btn.active { 
    background: #e7ad00; 
    color: white;
    border-color: #d39d00;
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.filter-btn i { 
    font-size: 12px; 
    margin-right: 6px; 
}

.sort-container { 
    display: flex; 
    align-items: center; 
    gap: 10px;
    min-width: fit-content;
}

.sort-label { 
    font-size: 14px; 
    color: #666; 
    font-weight: 500; 
    white-space: nowrap; 
}

.sort-select { 
    padding: 10px 16px; 
    border: 2px solid #e0e0e0; 
    border-radius: 8px; 
    font-size: 14px; 
    color: #1a1a1a; 
    background: white; 
    cursor: pointer; 
    outline: none; 
    min-width: 180px; 
    transition: all 0.2s ease;
    font-weight: 500;
}

.sort-select:hover { 
    border-color: #e7ad00; 
}

.sort-select:focus { 
    border-color: #e7ad00; 
    box-shadow: 0 0 0 3px rgba(231, 173, 0, 0.1); 
}

/* ========== PRODUCTS GRID ========== */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 24px; 
}

.product-card { 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    border: 2px solid #e5e7eb;
    display: flex; 
    flex-direction: column;
    position: relative;
}

.product-card:hover { 
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
    transform: translateY(-8px); 
    border-color: #e7ad00; 
}

.product-image { 
    position: relative; 
    width: 100%; 
    height: 310px; 
    background: #fafafa; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 30px; 
}

.product-image img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
    transition: transform 0.3s ease; 
}

.product-card:hover .product-image img { 
    transform: scale(1.05); 
}

.product-badge { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: #e7ad00; 
    color: white; 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-info { 
    padding: 20px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.product-brand { 
    font-size: 11px; 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 6px; 
    font-weight: 600; 
}

.product-name { 
    font-size: 16px; 
    font-weight: 600; 
    color: #1a1a1a; 
    line-height: 1.4; 
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}

.product-price { 
    font-size: 32px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin-bottom: 16px; 
    margin-top: auto; 
}

.preview-stock {
    font-size: 14px;
    color: #6b7280;
}

.product-actions { 
    display: flex; 
    gap: 8px;
    position: relative;
    z-index: 10;
    padding: 15px;
}

.btn-add-cart { 
    flex: 0 0 44px; 
    height: 44px; 
    background: #f5f5f5; 
    border: 2px solid #e0e0e0; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-size: 16px; 
    color: #1a1a1a; 
}

.btn-add-cart:hover { 
    background: #e7ad00; 
    color: white;
    border-color: #e7ad00;
    transform: scale(1.05);
}

.btn-buy-now { 
    flex: 1; 
    height: 44px; 
    background: #e7ad00; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600; 
    font-size: 14px; 
    color: white; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: none;
    cursor: pointer;
}

.btn-buy-now:hover { 
    background: #d39d00; 
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

/* ========== VIEW MORE BUTTON ========== */
.view-more-container { 
    text-align: center; 
    margin-top: 40px; 
}

.btn-view-more { 
    padding: 14px 36px; 
    background: white; 
    color: #1a1a1a; 
    border: 2px solid #e0e0e0; 
    border-radius: 25px; 
    font-size: 14px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
}

.btn-view-more:hover { 
    background: #e7ad00; 
    color: white;
    border-color: #e7ad00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.btn-view-more i { 
    font-size: 12px; 
    transition: transform 0.3s ease; 
}

.btn-view-more.expanded i { 
    transform: rotate(180deg); 
}

/* ========== VISIBILITY CONTROLS ========== */
.product-card.hidden-product { 
    display: none; 
}

.product-card.show-product { 
    display: flex; 
}

.no-products { 
    text-align: center; 
    padding: 60px 20px; 
    color: #999; 
    grid-column: 1 / -1; 
}

.no-products i { 
    font-size: 48px; 
    margin-bottom: 16px; 
    opacity: 0.3; 
}

.no-products p { 
    font-size: 16px; 
    margin: 0; 
}

/* ========== CART NOTIFICATION ========== */
.cart-notification { 
    position: fixed; 
    top: 20px; 
    right: 20px; 
    background: #1a1a1a; 
    color: white; 
    padding: 16px 24px; 
    border-radius: 8px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.2); 
    z-index: 10000; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 500; 
    font-size: 14px; 
    animation: slideInRight 0.3s ease; 
}

@keyframes slideInRight { 
    from { 
        transform: translateX(400px); 
        opacity: 0; 
    } 
    to { 
        transform: translateX(0); 
        opacity: 1; 
    } 
}

@keyframes slideOutRight { 
    from { 
        transform: translateX(0); 
        opacity: 1; 
    } 
    to { 
        transform: translateX(400px); 
        opacity: 0; 
    } 
}

/* ========== PACKAGE OFFERS SECTION ========== */
.package-offers-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #e5e7eb;
}

.package-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* CARD */
.package-card {
    text-decoration: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    display: block;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* IMAGE WRAPPER */
.package-image-wrapper {
    position: relative;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image {
    transform: scale(1.08);
}

/* DARK OVERLAY + CTA */
.package-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    flex-direction: column;
}

.package-overlay h5{
    color: #fff;
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.package-overlay span {
    background: #e7ad00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}



/* ========== CHECKOUT STYLES ========== */
#checkoutSection {
    display: none;
    padding: 40px 0;
    background: #fafafa;
}

.checkout-shell {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 20px;
}

.checkout-main {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.checkout-steps .step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.checkout-steps .step span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.checkout-steps .step p {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.checkout-steps .step.active span {
    background: #e7ad00;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.checkout-steps .step.active p {
    color: #e7ad00;
    font-weight: 600;
}

.checkout-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.checkout-card {
    margin-bottom: 25px;
}

.checkout-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: #e7ad00;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d39d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 12px 28px;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.payment-option {
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #e7ad00;
    background: #fffbf0;
}

.payment-option.selected-payment {
    border-color: #e7ad00;
    background: #fff8e1;
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.2);
}

.payment-option h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.payment-option p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

#paymentDetails {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.total-row {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid #e0e0e0;
    margin-top: 10px;
    padding-top: 12px;
}

/* Payment Options Styling */
.payment-options {
    padding: 10px 0;
}

.payment-option {
    border: 2px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--clr-primary);
    background-color: #f8f9fa;
}

.payment-option input[type="radio"]:checked + label {
    font-weight: bold;
}

.payment-option input[type="radio"]:checked ~ * {
    color: var(--clr-primary);
}

.form-check-input:checked {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.total-row {
    font-weight: bold;
    padding-top: 10px;
}

.checkout-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.summary-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.summary-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.confirmation-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 15px;
}

.confirmation-details {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .checkout-shell {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .filter-bar { 
        flex-direction: column; 
        align-items: stretch; 
        padding: 15px;
    }
    
    .filter-buttons { 
        justify-content: center; 
    }
    
    .sort-container { 
        justify-content: space-between; 
        width: 100%; 
    }
    
    .sort-select { 
        flex: 1; 
    }
    
    .products-grid { 
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
        gap: 16px; 
    }
    
    .product-image { 
        height: 250px;
        padding: 20px;
    }

    .package-offers-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .package-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-image {
        height: 220px;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .checkout-steps::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid { 
        grid-template-columns: 1fr; 
    }
    
    .filter-btn { 
        font-size: 13px; 
        padding: 8px 16px; 
    }
    
    .product-image {
        height: 220px;
        padding: 15px;
    }
}

/* Floating Messenger Button */
.messenger-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: #0084ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.messenger-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* Custom Form Styling */
.inspection-form .form-control, 
.inspection-form .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.inspection-form .form-control:focus, 
.inspection-form .form-select:focus {
    background-color: #fff !important;
    border-color: #f39c12;
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.1);
}

.input-group-text {
    border: 1px solid #e0e0e0;
}

#inspectionBtn:hover {
    background: #e67e22 !important;
    transform: translateY(-2px);
    transition: 0.3s;
}

.book-section .rounded-4 {
    border-radius: 20px !important;
}

.modal-content {
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-runner {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;

    width: 260px;
    padding: 22px 24px;
    text-decoration: none;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    color: #fff;

    border-left: 4px solid var(--clr-primary);
    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transition: var(--transition-fast);
}

.hero-runner:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) translateX(-6px);
}

/* Small label */
.runner-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--clr-dark);
    background: var(--clr-primary);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Title */
.hero-runner h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Description */
.hero-runner p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 14px;
}

/* CTA (hidden until hover) */
.runner-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.hero-runner:hover .runner-cta {
    opacity: 1;
    transform: translateX(0);
}

/* Media Queries (Original values retained, but the use of root variables elsewhere still cleans them up) */
@media (max-width: 991px) {
    .header-container {
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: var(--spacing-md);
    }

    nav ul {
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .services h2 {
        font-size: 28px;
    }

    .btn {
        width: 100%;
    }
}