/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00CCF5;    /* Bright blue - for key buttons and CTAs */
    --secondary: #6EFAFB;  /* Light aqua - for backgrounds and hover effects */
    --white: #FFFFFF;      /* White - for backgrounds and spacing */
    --gray: #666666;       /* Medium gray - for secondary text */
    --dark: #0A0A0A;       /* Near black - for main text and footer */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--dark);
}

/* Header styles */
header {
    padding: 0.3rem 2rem;
    background-color: var(--dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

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

.logo {
    width: 180px;
    height: auto;
}

/* Navigation and header right section */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 0.8rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 0.3rem 0.7rem;
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

nav ul li a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Login icon styles */
.login-icon {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
    margin-left: 0.8rem;
}

.login-icon:hover {
    color: var(--white);
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Navigation container with account icon */
.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between account icon and navigation */
}

/* Account icon styles */
.account-link {
    display: flex;
    align-items: center;
}

.account-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    filter: brightness(0) invert(1); /* Makes the icon white */
    transition: opacity 0.3s ease;
}

.account-icon:hover {
    opacity: 0.8;
}

/* Mobile menu button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.3rem;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

/* Modern Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-cta .btn {
    z-index: 10;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    z-index: 10;
}

/* Main content styles */
main {
    width: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.highlight {
    background-color: var(--secondary);
    padding: 2rem;
    border-radius: px;
    margin: rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark);
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        z-index: 100;
        padding-top: 60px;
        flex-direction: column;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 0;
        width: 100%;
    }

    nav ul li a {
        width: 100%;
        padding: 1rem;
        border: none;
        border-bottom: 1px solid var(--primary);
        border-radius: 0;
        text-align: center;
    }

    /* Keep login icon visible in mobile */
    nav ul li:last-child {
        position: absolute;
        top: 0.8rem;
        right: 4rem;
        width: auto;
    }

    /* Position cart icon for mobile */
    nav ul li.cart-icon {
        position: absolute;
        top: 0.8rem;
        right: 1.5rem;
        width: auto;
        margin: 0;
    }

    nav ul li.cart-icon .cart-dropdown {
        right: 0;
        width: 280px;
    }

    nav ul li:last-child .login-icon {
        border: none;
        padding: 0.5rem;
        margin: 0;
        font-size: 1.2rem;
    }

    .logo {
        width: 160px;
    }

    /* Hamburger animation */
    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        margin: 4px auto;
        background-color: var(--white);
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 2rem;
        padding: 0 15px;
        margin-bottom: 3rem;
        position: relative;
        z-index: 10;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        display: block;
        z-index: 10;
    }
    
    .btn-secondary {
        background-color: rgba(10, 10, 10, 0.6);
        color: var(--white);
        border: 2px solid var(--white);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    header {
        padding: 0.3rem 1rem;
    }
    
    .logo {
        width: 140px;
    }

    nav ul li:last-child {
        right: 3.5rem; /* Adjust position for smaller screens */
    }
    
    nav ul li.cart-icon {
        right: 1.2rem; /* Adjust position for smaller screens */
    }
    
    nav ul li:last-child .login-icon {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    main {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .featured-builds, 
    .pc-background, 
    .featured-section {
        width: 100%;
    }
    
    .highlight {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .hero-cta {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        display: block;
        text-align: center;
    }
    
    .banner-title {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Featured PC Build Section */
.featured-build {
    width: 100%;
    padding: 4rem 0;
    background-color: var(--white);
}

.featured-build.alternate {
    background-color: var(--secondary);
    position: relative;
}

.featured-build.alternate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.build-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.build-showcase.reverse {
    flex-direction: row-reverse;
}

.build-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.build-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.build-card:hover .build-image img {
    transform: scale(1.05);
}

.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

.image-placeholder i {
    font-size: 3rem;
    color: rgba(0, 204, 245, 0.8); /* Primary color with opacity */
}

.alternate .image-placeholder {
    background-color: var(--white);
}

.image-placeholder:hover {
    transform: translateY(-5px);
}

.build-details {
    flex: 1;
    min-width: 300px;
}

.build-details h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.build-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.specs-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.specs-list li {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.specs-list i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
}

.build-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive styles for featured section */
@media (max-width: 968px) {
    .build-showcase, .build-showcase.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .build-image, .build-details {
        width: 100%;
    }

    .build-details h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .featured-build {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .build-details h3 {
        font-size: 1.75rem;
        text-align: center;
    }

    .specs-list {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .featured-build {
        padding: 2rem 0;
    }

    .featured-container {
        padding: 0 1rem;
    }

    .build-details h3 {
        font-size: 1.5rem;
    }
}

/* Reviews Section */
.reviews {
    width: 100%;
    padding: 4rem 0;
    background-color: var(--white);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-right: 1rem;
}

.reviewer-info h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFD700;
}

.review-card p {
    color: var(--gray);
    line-height: 1.6;
    font-style: italic;
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    color: var(--gray);
    margin: 0;
}

/* Responsive styles for reviews and footer */
@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews {
        padding: 2rem 0;
    }

    .review-card {
        padding: 1.5rem;
    }
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background: #FFFFFF;
    color: var(--dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-card {
    text-align: center;
    padding: 2rem;
    background: #0A0A0A;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.featured-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.featured-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Container class */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 204, 245, 0.2);
}

.form-group button {
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var (--dark);
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h3::before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.faq-item p {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

/* Responsive styles for the form and FAQ */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group button {
        width: 100%;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }
}

/* PC Tiers Section Styles */
.pc-tiers {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.tier-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tier-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 4px;
    color: var(--dark);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tier-btn.active, .tier-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tier-content {
    max-width: 900px;
    margin: 0 auto;
}

.tier-description {
    display: none;
    margin-top: 2rem;
}

.tier-description.active {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.tier-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    background-color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    height: 250px;
}

.tier-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.tier-details {
    flex: 2;
    padding: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tier-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var (--dark);
}

.tier-details p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.tier-price {
    font-size: 1.3rem !important;
    font-weight: bold;
    color: var(--primary) !important;
    margin-bottom: 1.5rem !important;
}

/* Specifications Section Styles */
.specs-section {
    padding: 4rem 0;
    background-color: var(--white);
    width: 100%;
}

.specs-container {
    max-width: 900px;
    margin: 0 auto;
}

.spec-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    flex: 0 0 80px;
    font-size: 2rem;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.spec-details {
    flex: 1;
}

.spec-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.spec-comparison {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-tier {
    flex: 1;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.spec-tier p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray);
}

@media (max-width: 768px) {
    .specs-section {
        padding: 3rem 0;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .spec-icon {
        margin-bottom: 1rem;
    }
    
    .spec-details {
        width: 100%;
    }
    
    .spec-details h3 {
        text-align: center;
    }
    
    .spec-comparison {
        flex-direction: column;
        width: 100%;
    }
    
    .spec-tier {
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .specs-section {
        padding: 2rem 0;
    }
    
    .section-description {
        padding: 0 1rem;
    }
    
    .spec-icon {
        font-size: 1.8rem;
    }
    
    .spec-details h3 {
        font-size: 1.3rem;
    }
    
    .spec-tier p {
        font-size: 0.9rem;
    }
}

.custom-request {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.custom-request h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.custom-request p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* Enhanced Hero Banner for Custom PC Page */
.custom-pc-hero {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    height: 500px;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 204, 245, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 2;
}

.custom-pc-hero .banner-content {
    position: relative;
    z-index: 5;
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(0, 204, 245, 0.2);
    font-size: 2rem;
    animation: float 6s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    top: 60%;
    left: 70%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glowing Button */
.btn-glow {
    background: var(--primary);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-glow:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-glow:hover:before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-3px);
}

/* Enhanced PC Tiers Section */
.tier-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tier-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    background-color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    height: 250px;
}

.tier-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.tier-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 204, 245, 0.3);
    z-index: 1;
}

.tier-details {
    flex: 2;
    padding: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tier-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var (--dark);
}

.tier-details p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.tier-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.feature {
    background: #f8f8f8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.feature i {
    color: var(--primary);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .tier-card {
        flex-direction: column;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .tier-image {
        min-width: unset;
        width: 100%;
        height: 220px;
        padding: 1rem;
        margin: 0 auto;
    }
    
    .tier-image img {
        max-width: 90%;
        object-fit: contain;
    }
    
    .tier-details {
        padding: 1.5rem;
        text-align: center;
        font-size: 0.95rem;
    }
    
    .tier-details h3 {
        font-size: 1.3rem;
    }
    
    .tier-features {
        justify-content: center;
    }
    
    .feature {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .simple-carousel-slide {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tier-card {
        max-width: 100%;
    }
    
    .tier-image {
        height: 180px;
        padding: 0.5rem;
    }
    
    .tier-image img {
        max-width: 85%;
        max-height: 85%;
    }
    
    .tier-details {
        padding: 1.2rem;
    }
    
    .tier-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 90%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .tier-details h3 {
        font-size: 1.4rem;
    }
    
    .tier-price {
        font-size: 1.2rem !important;
    }
}

/* Update Spec Comparison Styles */
.spec-comparison {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.spec-tier {
    flex: 1;
    background-color: var(--light);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.spec-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-tier.entry {
    border-left: 4px solid #4CAF50;
}

.spec-tier.mid {
    border-left: 4px solid #2196F3;
}

.spec-tier.high {
    border-left: 4px solid #9C27B0;
}

.spec-tier-label {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.entry .spec-tier-label {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.mid .spec-tier-label {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.high .spec-tier-label {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.spec-tier p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.custom-request {
    position: relative;
    overflow: hidden;
}

.glow-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary), #6EFAFB, var(--primary));
    background-size: 200% 200%;
    animation: glowingBorder 3s ease infinite;
    border-radius: 10px;
}

@keyframes glowingBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Contact Form */
.contact-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.form-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 204, 245, 0.1) 0%, rgba(110, 250, 251, 0.1) 100%);
}

.decoration-line {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 204, 245, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 2.5rem;
}

.textarea-icon i {
    top: 1.2rem;
    transform: none;
}

.textarea-icon textarea {
    padding-left: 2.5rem;
}

.submit-group {
    text-align: center;
    margin-top: 2rem;
}

/* Highlight Text */
.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Responsive Styles for Enhanced Elements */
@media (max-width: 768px) {
    .custom-pc-hero {
        height: 400px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .tier-card {
        flex-direction: column;
    }
    
    .tier-image {
        min-height: 200px;
    }
    
    .spec-comparison {
        flex-direction: column;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .custom-pc-hero {
        height: 350px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .tier-badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.2rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .tier-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* PC Carousel Styles */
.pc-carousel {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
}

/* Simple Carousel Styles */
.simple-carousel {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
}

.simple-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.simple-carousel-slide {
    display: none;
    animation: fadeEffect 1s;
    padding: 1rem;
    overflow: hidden;
}

.simple-carousel-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0.7;}
    to {opacity: 1;}
}

.simple-carousel-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.simple-carousel-button:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.simple-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.simple-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Responsive styles for simple carousel */
@media (max-width: 768px) {
    .simple-carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tier-card {
        flex-direction: column;
    }
    
    .tier-image {
        width: 100%;
        height: 200px;
    }
    
    .tier-details {
        width: 100%;
        padding: 1.5rem;
    }
    
    .spec-comparison {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .specs-container {
        padding: 0 1rem;
    }
    
    .spec-details {
        width: 100%;
    }
    
    .spec-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .spec-icon {
        margin: 0 auto 1rem;
    }
    
    .spec-tier {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .simple-carousel-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }
    
    .simple-indicator {
        width: 10px;
        height: 10px;
    }
    
    .tier-features {
        display: block;
        text-align: center;
    }
    
    .feature {
        margin-bottom: 0.5rem;
        display: inline-block;
    }
    
    .tier-details h3 {
        text-align: center;
    }
    
    .tier-price {
        text-align: center;
    }
    
    .tier-details .btn {
        display: block;
        width: 100%;
    }
    
    /* Fix specs section centering */
    .specs-section .section-title {
        text-align: center;
    }
    
    .spec-comparison {
        width: 100%;
    }
    
    .spec-tier {
        margin-bottom: 1rem;
    }
}

/* Repair Services Page Styles */
.repair-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/repair-bg.jpg');
    background-size: cover;
    background-position: center;
}

.repair-header {
    padding: 3rem 0;
    text-align: center;
}

.section-description {
    max-width: 800px;
    margin: 1rem auto;
    text-align: center;
    color: var(--gray);
    line-height: 1.6;
}

.repair-categories {
    padding: 2rem 0 4rem;
    background-color: var(--light);
}

.repair-category {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary);
    color: var(--white);
}

.category-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-content {
    padding: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--dark);
}

.service-list li i {
    color: var(--primary);
    margin-right: 0.8rem;
}

.service-action {
    margin-top: 1.5rem;
    text-align: center;
}

.booking-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.booking-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-us {
    padding: 4rem 0;
    background-color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Shop Page Styles */
.shop-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/shop-bg.jpg');
    background-size: cover;
    background-position: center;
}

.shop-header {
    padding: 3rem 0;
    text-align: center;
}

.product-categories {
    padding: 2rem 0 4rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--light);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0A0A0A;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 100%;
    display: block;
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: var(--dark);
}

.product-description {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.product-old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--gray);
    margin-left: 0.3rem;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.component-filters {
    padding: 4rem 0;
    background-color: var(--light);
}

.filter-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--dark);
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-option input {
    margin-right: 0.5rem;
}

.price-slider {
    padding: 0 1rem;
}

.slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.filter-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.featured-products {
    padding: 4rem 0;
}

.featured-slider {
    margin: 2rem 0;
    position: relative;
}

.featured-product {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-product .product-image {
    flex: 1;
    height: 300px;
}

.featured-product .product-details {
    flex: 2;
    padding: 2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-prev, .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Responsive Styles for Repair and Shop Pages */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .featured-product {
        flex-direction: column;
    }
    
    .featured-product .product-image {
        height: 200px;
    }
    
    .filter-options {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* About Page Styles */
.about-header, .contact-header {
    padding: 60px 0 30px;
    text-align: center;
    background-color: var(--dark-bg);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.company-info {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.info-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-section {
    padding: 60px 0;
    background-color: var(--darker-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

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

.team-member h3 {
    padding: 15px 20px 5px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.member-role {
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.member-bio {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.faq-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: var(--darker-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.toggle-icon {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 60px 0;
    background-color: var(--darker-bg);
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

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

.detail-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.contact-form form {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for About and Contact Pages */
@media (max-width: 768px) {
    .info-content, .contact-content {
        flex-direction: column;
    }
    
    .info-image {
        margin-top: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

/* Featured Builds Section */
.featured-builds {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.builds-scroll {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;  /* Firefox */
}

.builds-scroll::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Edge */
}

.build-card {
    min-width: 300px;
    background: #0A0A0A;
    border-radius: 15px;
    padding: 1.5rem;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.build-card:hover {
    transform: translateY(-5px);
    border-color: #00CCF5;
}

.build-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.build-tag {
    background: #00CCF5;
    color: #0A0A0A;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.build-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.price-tag {
    color: #6EFAFB;
    font-size: 1.25rem;
    font-weight: bold;
}

.build-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item i {
    color: #00CCF5;
    width: 20px;
    text-align: center;
}

.build-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary {
    background: #00CCF5;
    color: #0A0A0A;
    padding: 0.75rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.btn-outline {
    border: 2px solid #00CCF5;
    color: #00CCF5;
    padding: 0.75rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

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

.btn-outline:hover {
    background: #00CCF5;
    color: #0A0A0A;
}

@media (max-width: 768px) {
    .build-card {
        min-width: 280px;
    }
}

/* PC Background Section */
.pc-background {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #FFFFFF;
}

.pc-background .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.pc-background .full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pc-background .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.pc-background .image-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.pc-background .image-overlay p {
    font-size: 1.2rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .pc-background {
        height: 300px;
    }
    
    .pc-background .image-overlay h2 {
        font-size: 2rem;
    }
    
    .pc-background .image-overlay p {
        font-size: 1rem;
    }
}

/* PC Showcase Cards */
.builds-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    background-color: #FFFFFF;
    padding: 30px 20px;
}

.pc-showcase-card {
    background: #0A0A0A;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

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

.pc-showcase-card .pc-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.pc-showcase-card .pc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pc-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00CCF5;
    color: #0A0A0A;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.pc-info {
    padding: 1.5rem;
    text-align: center;
}

.pc-info h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.pc-info p {
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    opacity: 1;
}

.pc-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #6EFAFB;
    margin-bottom: 1.2rem;
}

@media (max-width: 992px) {
    .builds-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .builds-showcase {
        grid-template-columns: 1fr;
    }
}

/* Global image styles */
img {
    max-width: 100%;
    height: auto;
}

/* Image container styles - ensures proper aspect ratio */
.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Specific image fitting styles */
.product-image img, 
.pc-image img, 
.tier-image img,
.member-image img,
.info-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 100%;
    display: block;
}

/* Full-width images */
.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image placeholder adjustments */
.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

.image-placeholder i {
    font-size: 3rem;
    color: rgba(0, 204, 245, 0.8); /* Primary color with opacity */
}

/* PC showcase card image improvements */
.pc-showcase-card .pc-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

/* Product card image improvements */
.product-card .product-image {
    height: 200px;
    overflow: hidden;
}

/* Simple Carousel Styles */
.simple-carousel {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
}

.simple-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.simple-carousel-slide {
    display: none;
    animation: fadeEffect 1s;
    padding: 1rem;
    overflow: hidden;
}

.simple-carousel-slide.active {
    display: block;
}

@media (max-width: 768px) {
    .simple-carousel {
        margin: 1rem auto;
    }
    
    .simple-carousel-slide {
        padding: 0.75rem;
    }
    
    .tier-details p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .tier-card {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .simple-carousel {
        margin: 0.5rem auto;
    }
    
    .simple-carousel-slide {
        padding: 0.5rem;
    }
    
    .tier-card {
        max-width: 100%;
        box-shadow: none;
    }
    
    .tier-details {
        padding: 1rem;
    }
    
    .tier-details p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .tier-details h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .tier-features {
        margin: 1rem 0;
        gap: 0.5rem;
    }
}

/* Shopping Cart Styles */
.cart-icon, .nav-cart-icon {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
    display: inline-block; /* Ensure it's always visible */
}

.cart-icon i, .nav-cart-icon i {
    font-size: 24px;
    color: #fff;
}

/* Ensure cart icon visibility in navigation */
nav ul li.cart-icon {
    display: inline-block !important;
    vertical-align: middle;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    width: 320px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 15px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.cart-dropdown.show {
    display: block;
}

.cart-items {
    max-height: 320px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
}

.cart-item-price {
    font-size: 13px;
    color: #6c7ae0;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.quantity-btn {
    width: 20px;
    height: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.quantity-input {
    width: 30px;
    height: 20px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}

.cart-item-remove {
    color: #e74c3c;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: 600;
    border-top: 1px solid #eee;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.empty-cart {
    text-align: center;
    padding: 15px 0;
    color: #6c757d;
}

/* Alert styles */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 10px rgba(0, 128, 0, 0.1);
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.1);
}

/* PC Builder Form Styles */
.pc-builder-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.pc-builder-form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.builder-component {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.builder-component:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.component-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.component-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.component-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark);
}

.component-selection select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 0.95rem;
    color: var(--dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-info {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.customer-info h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.full-width {
    grid-column: 1 / -1;
}

.price-estimate {
    background-color: var(--primary);
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.price-estimate h3 {
    margin: 0;
    font-size: 1.5rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.form-submit {
    text-align: center;
}

.compatibility-warning {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .builder-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .pc-builder-form {
        padding: 1.5rem;
    }
    
    .component-header {
        flex-direction: column;
        text-align: center;
    }
    
    .price-estimate h3 {
        font-size: 1.3rem;
    }
}

/* Position cart dropdown when nav is active */
nav.active ul li.cart-icon .cart-dropdown {
    position: fixed;
    top: 3.5rem;
    right: 1.5rem;
    z-index: 102;
}