/* HWX Brand-Specific Styles */

/* Header Enhancements */
.navi-bar {
    background: var(--hwx-orange);
    color: var(--hwx-white);
    padding: 8px 0;
}

.head-sec {
    background: var(--hwx-white);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
}

/* Navigation Links */
.nav-links > li > a {
    color: var(--hwx-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links > li > a:hover {
    color: var(--hwx-orange);
    transform: translateY(-1px);
}

/* Submenu Enhancements */
.nav-links .sub-menu li a {
    color: var(--hwx-blue);
    transition: all 0.3s ease;
}

.nav-links .sub-menu li a:hover {
    color: var(--hwx-orange);
    background-color: rgba(255, 107, 53, 0.1);
    padding-left: 20px;
}

/* Section Headers */
h1, h2, h3, h4, h5, h6 {
    color: var(--hwx-blue);
}

h1::after, h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--hwx-orange), var(--hwx-green));
    margin-top: 10px;
    border-radius: 2px;
}

/* Card Enhancements */
.card, .plugin-card {
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--hwx-white);
}

.card:hover, .plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-color: var(--hwx-orange);
}

/* Button Variations */
.btn-primary {
    background: var(--hwx-orange);
    border-color: var(--hwx-orange);
    color: var(--hwx-white);
}

.btn-secondary {
    background: var(--hwx-green);
    border-color: var(--hwx-green);
    color: var(--hwx-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--hwx-orange);
    color: var(--hwx-orange);
}

.btn-outline:hover {
    background: var(--hwx-orange);
    color: var(--hwx-white);
}

/* Form Elements */
input[type="text"], input[type="email"], input[type="url"], textarea, select {
    border: 2px solid rgba(44, 62, 80, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, textarea:focus, select:focus {
    border-color: var(--hwx-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

/* Footer Enhancements */
footer {
    background: var(--hwx-blue);
    color: var(--hwx-white);
}

footer h4 {
    color: var(--hwx-orange);
}

footer a {
    color: var(--hwx-white);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--hwx-orange);
}

/* Social Icons */
.nav-icon a {
    color: var(--hwx-white);
    transition: all 0.3s ease;
}

.nav-icon a:hover {
    color: var(--hwx-orange);
    transform: scale(1.1);
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--hwx-orange);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--hwx-orange);
    transform: translateY(-5px);
}

/* Testimonials */
.testimonial-card {
    background: var(--hwx-white);
    border-left: 4px solid var(--hwx-orange);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

/* Call-to-Action Sections */
.cta-section {
    background: var(--hwx-orange);
    color: var(--hwx-white);
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--hwx-white);
}

.cta-section .b_btn {
    background: var(--hwx-white);
    color: var(--hwx-orange);
    border-color: var(--hwx-white);
}

.cta-section .b_btn:hover {
    background: transparent;
    color: var(--hwx-white);
    border-color: var(--hwx-white);
}

/* Loading Animations */
@keyframes hwx-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.loading {
    animation: hwx-pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links .sub-menu {
        background: var(--hwx-white);
        border: 1px solid var(--hwx-orange);
    }
    
    .b_btn, .b_btn2 {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Statistics Bar - Matching your website */
.stats-section {
    background: var(--hwx-teal);
    color: var(--hwx-white);
    padding: 40px 0;
}

.stats-section .prefix-1,
.stats-section .prefix-2,
.stats-section .prefix-3,
.stats-section .prefix-4 {
    color: var(--hwx-orange);
    font-size: 36px;
    font-weight: bold;
}

.stats-section .fa-star,
.stats-section .fa-laptop,
.stats-section .fa-cloud-download-alt,
.stats-section .fa-play {
    color: var(--hwx-orange);
    font-size: 24px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--hwx-green);
    color: var(--hwx-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Print Styles */
@media print {
    .b_btn, .b_btn2 {
        border: 1px solid var(--hwx-blue);
        color: var(--hwx-blue);
        background: transparent;
    }
}
