.aekart-custom-page {
    width: 100%;
    overflow: hidden;
}

/* ==========================================================================
   1. GLOBAL STYLES & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    --primary-color: #ff5722;
    --primary-dark: #e04816;
    --bg-dark: #0f172a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   
    --aekart-product-banner: url("../images/Product-Banner-image.png");

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

/* ==========================================================================
   2. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background-color: var(--bg-dark);
    color: #94a3b8;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span,
.top-links a {
    margin-right: 20px;
    color: #cbd5e1;
    text-decoration: none !important;
    transition: var(--transition);
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social-links a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.top-offer {
    font-weight: 600;
    color: var(--white);
}

/* ==========================================================================
   3. MAIN HEADER & SEARCH BAR
   ========================================================================== */
.main-header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-logo span {
    color: var(--primary-color);
}

.brand-logo small {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.site-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-search {
    flex: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.15);
}

.search-category {
    border: none;
    outline: none;
    padding: 12px 16px;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
    cursor: pointer;
}

.search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-size: 14px;
    color: var(--text-dark);
}

.search-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.action-btn i {
    font-size: 22px;
}

.action-text {
    font-size: 14px;
    font-weight: 600;
}

.badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.cart-icon-wrap {
    position: relative;
}

.cart-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cart-info small {
    font-size: 11px;
    color: var(--text-muted);
}

.cart-info strong {
    font-size: 13px;
    color: var(--bg-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ==========================================================================
   4. NAVIGATION BAR & MEGA MENU
   ========================================================================== */
.nav-bar {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-item:hover>a,
.nav-item.active>a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-link a {
    color: #fbbf24 !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown-menu li a {
    color: var(--text-dark);
    padding: 12px 18px;
    border-bottom: 1px solid var(--bg-light);
    font-size: 13px;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 22px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   5. HERO SLIDER SECTION
   ========================================================================== */
.hero-slider-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.75) 30%, rgba(15, 23, 42, 0.25) 100%), var(--aekart-banner-1);
}

.slide-2 {
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.75) 30%, rgba(15, 23, 42, 0.25) 100%), var(--aekart-banner-2);
}

.slide-3 {
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.75) 30%, rgba(15, 23, 42, 0.25) 100%), var(--aekart-banner-3);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 80px;
    align-items: center;
}

/* Dynamic Slide Text System */
.hero-text-container {
    position: relative;
    min-height: 280px;
}

.hero-text-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-text-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, 0.2);
    color: #ff7043;
    border: 1px solid rgba(255, 87, 34, 0.5);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 95%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Form Styling */
.hero-form-card {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.4);
    border-top: 4px solid var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 22px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.form-header p {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.hero-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.15);
}

.phone-group {
    display: flex;
}

.phone-group .country-code {
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    border-right: none;
    padding: 12px 14px;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
}

.phone-group input {
    border-radius: 0 10px 10px 0;
}

.submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
    margin-top: 6px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.45);
}

.submit-btn:active {
    background: #d84315;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 12px;
}

/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {

    .top-offer,
    .top-links,
    .action-text,
    .cart-info {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .nav-bar {
        display: none;
    }

    .nav-bar.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1e293b;
    }

    .dropdown-menu li a {
        color: #cbd5e1;
    }

    /* Hero Section Mobile Responsiveness */
    .hero-slider-section {
        padding: 40px 0 60px 0;
        min-height: 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-text-container {
        position: relative;
        min-height: 0;
    }

    .hero-text-content {
        position: relative;
        opacity: 0;
        display: none;
    }

    .hero-text-content.active {
        display: block;
        opacity: 1;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-form-card {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 11px;
    }

    .brand-logo {
        font-size: 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-tagline {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-form-card {
        padding: 20px 14px;
    }
}

/* ==========================================================================
   FLOATING CONTACT BUTTONS STYLES
   ========================================================================== */
.floating-contact-wrap {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* WhatsApp Button Style */
.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Call Button Style */
.call-btn {
    background-color: var(--primary-color);
}

.call-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Subtle Pulse Effect for WhatsApp Icon */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.6;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Screen Adjustments */
@media (max-width: 576px) {
    .floating-contact-wrap {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON STYLES
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 46px;
    height: 46px;
    background-color: var(--bg-dark);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Mobile Screen Adjustments */
@media (max-width: 576px) {
    .back-to-top-btn {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ==========================================================================
   7. FEATURED PRODUCTS SECTION STYLES
   ========================================================================== */
.featured-products-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/* Header Alignment */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.sub-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--bg-dark);
    letter-spacing: -0.5px;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.view-all-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

/* Cards Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 87, 34, 0.3);
}

/* Card Image Area */
.card-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0f172a;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Card Content Area */
.card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Card Button */
.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .main-title {
        font-size: 26px;
    }

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

/* Buy Now Button Style */
.card-btn.buy-now-btn {
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-btn.buy-now-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.card-btn.buy-now-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.35);
}

.card-btn.buy-now-btn:hover i {
    transform: scale(1.15);
}

/* ==========================================================================
   PRODUCTS PAGE STYLES
   Page Banner with Background Image 
   ========================================================================== */

.page-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
        var(--aekart-product-banner) center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-banner h1 {
        color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-banner p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.products-catalog-section {
    padding: 60px 0 80px 0;
    background: #f8fafc;
}

/* Category Filter Styling */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid #cbd5e1;
    background: var(--white);
    color: var(--bg-dark);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* ==========================================================================
   FOOTER SECTION STYLES
   ========================================================================== */
.main-footer {
    background-color: #0b1120;
    color: #94a3b8;
    padding: 70px 0 0 0;
    border-top: 3px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    color: var(--white) !important;
    display: inline-block;
    margin-bottom: 15px;
}

/* Footer Logo Styling */
.footer-site-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-site-logo {
    filter: brightness(0) invert(1);
    /* Logo ko pure white karne ke liye */
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.elementor.elementor-3100 {
    display: none;
}