/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress Child Theme for Akarsh Computers
Version: 1.0.0
*/

/* ========== CONTAINER STYLES ========== */
.grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   AKARSH COMPUTERS - HOME PAGE STYLES
   ============================================ */

.akerp-home-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.akerp-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.akerp-hero {
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.akerp-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.akerp-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.akerp-highlight {
    background: linear-gradient(135deg, #00a8ff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.akerp-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.akerp-hero-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.akerp-feature-badge {
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
}

/* Trust Section */
.akerp-trust {
    padding: 70px 0;
    background: #f8fafc;
}

.akerp-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0f2b3d;
}

.akerp-section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.akerp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.akerp-trust-card {
    background: white;
    text-align: center;
    padding: 35px 20px;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.akerp-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.akerp-trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.akerp-trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 8px;
}

.akerp-trust-card p {
    font-size: 14px;
    font-weight: 600;
    color: #00a8ff;
    margin-bottom: 5px;
}

.akerp-trust-card small {
    font-size: 12px;
    color: #64748b;
}

/* Services Section */
.akerp-services {
    padding: 70px 0;
    background: white;
}

.akerp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.akerp-service-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.akerp-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.akerp-service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.akerp-service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f2b3d;
}

.akerp-service-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.akerp-service-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.akerp-service-tags span {
    background: linear-gradient(135deg, #1a4a6f 0%, #2c6e9e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
}

/* Products Section */
.akerp-products {
    padding: 70px 0;
    background: #f8fafc;
}

.akerp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.akerp-product-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s;
}

.akerp-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.akerp-product-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.akerp-product-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-left: 3px solid #00a8ff;
    padding-left: 12px;
    color: #0f2b3d;
}

.akerp-product-card ul {
    list-style: none;
    padding: 0;
}

.akerp-product-card li {
    font-size: 13px;
    color: #64748b;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.akerp-product-card li:last-child {
    border-bottom: none;
}

/* Why Choose Section */
.akerp-why-choose {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    color: white;
}

.akerp-why-choose .akerp-section-title {
    color: white;
}

.akerp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.akerp-feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.3s;
}

.akerp-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.akerp-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    color: #00a8ff;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.akerp-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.akerp-feature-card p {
    font-size: 13px;
    opacity: 0.85;
}

/* Contact Section */
.akerp-contact {
    padding: 70px 0;
    background: white;
}

.akerp-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.akerp-contact-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s;
}

.akerp-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.akerp-contact-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.akerp-contact-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #00a8ff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.akerp-contact-card p {
    font-size: 16px;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 5px;
}

.akerp-contact-card small {
    font-size: 11px;
    color: #64748b;
}

/* Home Page Responsive */
@media (max-width: 1024px) {
    .akerp-container { padding: 0 20px; }
    .akerp-hero-title { font-size: 2.5rem; }
    .akerp-section-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .akerp-hero { padding: 60px 0; }
    .akerp-hero-title { font-size: 1.8rem; }
    .akerp-hero-subtitle { font-size: 1rem; }
    .akerp-hero-features { flex-direction: column; align-items: center; }
    .akerp-feature-badge { width: 90%; }
    .akerp-trust-grid, .akerp-services-grid, .akerp-products-grid,
    .akerp-features-grid, .akerp-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .akerp-section-title { font-size: 1.5rem; }
    .akerp-trust, .akerp-services, .akerp-products,
    .akerp-why-choose, .akerp-contact { padding: 50px 0; }
}

@media (max-width: 480px) {
    .akerp-container { padding: 0 15px; }
    .akerp-hero-title { font-size: 1.5rem; }
    .akerp-trust-grid, .akerp-services-grid, .akerp-products-grid,
    .akerp-features-grid, .akerp-contact-grid {
        grid-template-columns: 1fr;
    }
    .akerp-trust-card, .akerp-service-card, .akerp-product-card,
    .akerp-feature-card, .akerp-contact-card { padding: 20px; }
    .akerp-service-icon { font-size: 40px; }
}

/* ============================================
   MODERN PROFESSIONAL HEADER STYLES
   ============================================ */

/* Main Header with Gradient Background */
.gp-child-main-header {
    background: linear-gradient(135deg, #d4eaf7 0%, #e8f4f8 30%, #f0f7fa 60%, #ffffff 100%);
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 168, 255, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Animated Top Border */
.gp-child-main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a8ff, #ff6b35, #00a8ff, #ff6b35);
    background-size: 300% 100%;
    animation: headerGradientMove 6s ease infinite;
    z-index: 1;
}

@keyframes headerGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sticky Header - Fixed Working */
.gp-child-main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 50%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid #00a8ff;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation wrapper adjustment */
.gp-child-nav-wrapper {
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    position: relative;
    z-index: 1000;
    transition: margin-top 0.3s ease;
}

.main-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo Area */
.logo-area-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link-modern {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link-modern:hover {
    transform: scale(1.02);
}

.logo-img-modern {
    max-height: 55px;
    width: auto;
}

.logo-placeholder-modern {
    background: linear-gradient(135deg, #c5e3f5 0%, #d4eaf7 100%);
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-animated {
    color: #0284c7;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text-modern .site-title-modern {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-text-modern .site-title-modern a {
    background: linear-gradient(135deg, #0a2a3a 0%, #1a4a6f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    transition: all 0.3s;
}

.logo-text-modern .site-title-modern a:hover {
    background: linear-gradient(135deg, #00a8ff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.site-tagline-modern {
    font-size: 11px;
    color: #5a6e8a;
    margin: 4px 0 0;
    font-weight: 500;
}

/* Header Info Cards */
.header-info-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    border-color: #00a8ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.12);
    background: #ffffff;
}

.info-icon-modern {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4eaf7 0%, #e8f4f8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00a8ff;
}

.info-value {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* Modern Navigation */
.gp-child-nav-wrapper {
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    position: relative;
    z-index: 1000;
}

.nav-container-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 55px;
}

.gp-child-nav-menu-modern {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.gp-child-nav-menu-modern > li {
    position: relative;
}

.gp-child-nav-menu-modern > li > a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 10px;
    position: relative;
    letter-spacing: 0.3px;
}

.gp-child-nav-menu-modern > li > a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a8ff, #ff6b35);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.gp-child-nav-menu-modern > li > a:hover::before,
.gp-child-nav-menu-modern > li.current-menu-item > a::before {
    width: 60%;
}

.gp-child-nav-menu-modern > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gp-child-nav-menu-modern .current-menu-item > a,
.gp-child-nav-menu-modern .current_page_item > a {
    background: rgba(0, 168, 255, 0.2);
}

/* Dropdown Menu */
.gp-child-nav-menu-modern .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    min-width: 240px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-child-nav-menu-modern li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gp-child-nav-menu-modern .sub-menu li {
    position: relative;
}

.gp-child-nav-menu-modern .sub-menu a {
    display: block;
    padding: 10px 22px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.gp-child-nav-menu-modern .sub-menu a:hover {
    background: rgba(0, 168, 255, 0.2);
    color: #00a8ff;
    padding-left: 28px;
}

.gp-child-nav-menu-modern .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle-modern {
    display: none;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.mobile-menu-toggle-modern:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle-modern.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle-modern.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-modern.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Panel */
.gp-child-mobile-menu-modern {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.gp-child-mobile-menu-modern.active {
    right: 0;
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gp-child-mobile-nav-modern {
    list-style: none;
    margin: 0;
    padding: 20px;
}

.gp-child-mobile-nav-modern li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gp-child-mobile-nav-modern a {
    display: block;
    padding: 14px 0;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.gp-child-mobile-nav-modern a:hover {
    color: #00a8ff;
    padding-left: 12px;
}

.gp-child-mobile-nav-modern .sub-menu {
    padding-left: 20px;
    display: none;
}

.gp-child-mobile-nav-modern .menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-call-btn,
.mobile-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.mobile-call-btn {
    background: #00a8ff;
    color: #fff;
}

.mobile-wa-btn {
    background: #25D366;
    color: #fff;
}

.mobile-call-btn:hover,
.mobile-wa-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

/* Responsive Header */
@media (max-width: 1200px) {
    .header-info-modern {
        gap: 10px;
    }
    
    .info-card {
        padding: 5px 12px;
    }
    
    .info-value {
        font-size: 10px;
        white-space: normal;
    }
    
    .info-label {
        font-size: 8px;
    }
}

@media (max-width: 1050px) {
    .header-info-modern {
        display: none;
    }
}

@media (max-width: 768px) {
    .gp-child-nav-menu-modern {
        display: none;
    }
    
    .mobile-menu-toggle-modern {
        display: flex;
    }
    
    .logo-text-modern .site-title-modern {
        font-size: 1.1rem;
    }
    
    .site-tagline-modern {
        font-size: 9px;
    }
    
    .logo-img-modern {
        max-height: 45px;
    }
    
    .logo-area-modern {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-area-modern {
        gap: 8px;
    }
    
    .logo-text-modern .site-title-modern {
        font-size: 0.95rem;
    }
    
    .site-tagline-modern {
        font-size: 8px;
    }
}