/* ========================
   AKI ELECTRONICS - STYLES
   ======================== */

/* Root Variables - Brand Colors */
:root {
    --teal: #1FD4C8;
    --blue-mid: #1394CE;
    --blue-deep: #246BCE;
    --dark-brown: #1E1410;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --mid-grey: #888888;
    --text-dark: #1a1a2e;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
}

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

/* ========================
   NAVIGATION
   ======================== */
.navbar {
    background-color: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.logo-highlight {
    background: linear-gradient(90deg, var(--teal), var(--blue-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

/* Hamburger - Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    background: linear-gradient(135deg, #e8f8f7 0%, #eaf4fb 50%, #e8effc 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--blue-mid);
    margin-bottom: 35px;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
    background: linear-gradient(90deg, var(--teal), var(--blue-deep));
    color: var(--white);
    padding: 14px 35px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    border: 2px solid var(--blue-deep);
    color: var(--blue-deep);
    padding: 10px 25px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--blue-deep);
    color: var(--white);
}

/* ========================
   FEATURED PRODUCTS
   ======================== */
.featured {
    padding: 80px 0;
    background-color: var(--light-grey);
    text-align: center;
}

.featured h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-info h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.5;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--teal), var(--blue-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================
   WHY CHOOSE US
   ======================== */
.why-us {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.why-us h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 35px 25px;
    border-radius: 10px;
    background-color: var(--light-grey);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: linear-gradient(135deg, var(--blue-deep), var(--teal));
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

/* ========================
   MOBILE RESPONSIVE
   ======================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
/* ========================
   PAGE HEADER
   ======================== */
.page-header {
    background: linear-gradient(135deg, #e8f8f7 0%, #eaf4fb 50%, #e8effc 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--blue-mid);
}

/* ========================
   ABOUT PAGE
   ======================== */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-card {
    background-color: var(--light-grey);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-stat h3 {
    font-size: 1.8rem;
    min-width: 45px;
}

.about-stat p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.5;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f8f7 0%, #eaf4fb 50%, #e8effc 100%);
    text-align: center;
}

.mission-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1.05rem;
    color: var(--mid-grey);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.motto-block {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--teal), var(--blue-deep));
}

.motto {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.trust-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.trust-card {
    padding: 30px 25px;
    border-radius: 10px;
    background-color: var(--light-grey);
    text-align: left;
    border-top: 3px solid var(--teal);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.6;
}

/* ========================
   CTA SECTION
   ======================== */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--blue-deep), var(--teal));
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* How To Order */
.how-to-order h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.order-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(135deg, var(--teal), var(--blue-deep));
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-text p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.5;
}

/* Contact Details */
.contact-details h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.contact-card {
    background-color: var(--light-grey);
    border-radius: 12px;
    padding: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 5px 0;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 45px;
}

.contact-info h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.5;
    margin-bottom: 12px;
}

.contact-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.btn-whatsapp:hover {
    opacity: 0.85;
}

.contact-link {
    color: var(--blue-deep);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--teal);
}

.location-note {
    font-size: 0.85rem !important;
    color: var(--teal) !important;
}

/* ========================
   MOBILE RESPONSIVE - NEW PAGES
   ======================== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .mission-content p {
        font-size: 0.95rem;
    }

    .motto {
        font-size: 1rem;
    }
}
/* ========================
   NAVBAR LOGO
   ======================== */
.nav-logo-img {
    height: 35px;
    width: auto;
    display: block;
}

/* ========================
   FOOTER LOGO
   ======================== */
.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}
/* ========================
   NAVBAR LOGO
   ======================== */
.nav-logo-img {
    height: 35px;
    width: auto;
    display: block;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: linear-gradient(135deg, #0f1724, #1a2a3a);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--teal);
    margin-bottom: 10px;
}

.footer-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links ul a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul a:hover {
    color: var(--teal);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact-link {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    display: block;
}

.footer-contact-link:hover {
    color: var(--teal);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--teal), var(--blue-deep));
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ========================
   FLOATING WHATSAPP BUTTON
   ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    fill: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ========================
   FOOTER MOBILE
   ======================== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

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

/* ========================
   HERO SLIDESHOW
   ======================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.slide-1 { background-color: #c0392b; }
.slide-2 { background-color: #2471a3; }
.slide-3 { background-color: #1e8449; }
.slide-4 { background-color: #d4ac0d; }
.slide-5 { background-color: #7d3c98; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

/* ========================
   STOCK INDICATOR
   ======================== */
.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.in-stock {
    color: #1e8449;
}

.in-stock .stock-dot {
    background-color: #1e8449;
}

.out-of-stock {
    color: #c0392b;
}

.out-of-stock .stock-dot {
    background-color: #c0392b;
}

/* ========================
   PRODUCT CARD LINK
   ======================== */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link .product-card {
    cursor: pointer;
}

/* ========================
   PRODUCTS PAGE LAYOUT
   ======================== */
.products-page {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.category-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}

/* ========================
   PRODUCT DETAIL PAGE
   ======================== */
.product-detail {
    padding: 60px 0;
    background-color: var(--white);
}

.back-link {
    display: inline-block;
    color: var(--blue-mid);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--teal);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-detail-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--teal), var(--blue-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.product-detail-desc {
    font-size: 0.95rem;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
}

.specs-table td:first-child {
    color: var(--mid-grey);
    font-weight: 500;
    width: 40%;
}

.specs-table td:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========================
   PRODUCT DETAIL MOBILE
   ======================== */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-detail-info h1 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}