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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Header & Navigation - Black Gold Theme */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

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

.logo {
    height: 150px;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

nav {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 0;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: block;
    padding: 15px 20px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-links li a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.nav-links li.active-item a {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    font-weight: 700;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid #d4af37;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 12px 20px;
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
}

.dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 8px 8px;
        border-top: 2px solid #d4af37;
    }

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

    .nav-links li a {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: rgba(212, 175, 55, 0.1);
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    header .container {
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
        order: 3;
    }
}

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

/* Global Theme - Black & Gold */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #e0e0e0;
}

h1, h2, h3, h4, h5, h6 {
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Slider Section */
.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000000;
    border-bottom: 3px solid #d4af37;
    height: 600px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    filter: brightness(0.7);
}

.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 50px;
    right: 50px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #d4af37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.slide-caption h2 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 36px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.slide-caption p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000000;
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 28px;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
}

.slider-nav:hover {
    background: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #d4af37;
}

.dot.active,
.dot:hover {
    background: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
    transform: scale(1.2);
}

/* Category Section */
.category-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.category-section .section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.category-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #333333;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

.category-card i {
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: block;
}

.category-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px #d4af37);
}

.category-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 24px;
}

.category-card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.category-card .card-link {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid #d4af37;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card:hover .card-link {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #333333;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.card i {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card:hover i {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 0 20px #d4af37);
}

.card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 22px;
}

.card p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
    border-color: #f4d03f;
}

/* Main Container Section */
.main-container {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.main-container h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card-container .card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 0;
    overflow: hidden;
}

.card-container .card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #000000;
    transition: all 0.4s ease;
    padding: 20px;
}

.card-container .card:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.card-container .card h2 {
    padding: 20px;
    color: #d4af37;
    font-size: 24px;
}

.card-container .card ul {
    list-style: none;
    padding: 0 30px;
    color: #b0b0b0;
}

.card-container .card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.card-container .card ul li:hover {
    color: #d4af37;
    padding-left: 10px;
    border-color: #d4af37;
}

.card-container .card p {
    padding: 20px 30px 30px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.service-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #333333;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.service-card .icon {
    margin-bottom: 20px;
}

.service-card .icon img {
    width: 80px;
    height: 80px;
    transition: all 0.4s ease;
    filter: brightness(0) saturate(100%) invert(71%) sepia(47%) saturate(562%) hue-rotate(3deg) brightness(92%) contrast(92%);
}

.service-card:hover .icon img {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(0) saturate(100%) invert(71%) sepia(47%) saturate(562%) hue-rotate(3deg) brightness(120%) contrast(92%) drop-shadow(0 0 20px #d4af37);
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #b0b0b0;
    padding: 60px 0 30px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section ul li {
    color: #b0b0b0;
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 15px;
}

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-section i {
    color: #d4af37;
    margin-right: 10px;
}

.footer-section.about {
    text-align: center;
}

.footer-section.about p {
    max-width: 350px;
    margin: 0 auto 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    transition: all 0.4s ease;
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 50%;
    border: 2px solid #333333;
}

.social-links a:hover {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 0 20px #d4af37);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
}

.social-links a img {
    width: 32px !important;
    height: 32px !important;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #333333;
    color: #808080;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* PlayStation Page Styles */
.hero-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 3px solid #d4af37;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.playstation-banner {
    background: linear-gradient(135deg, #003087 0%, #001a4d 50%, #000000 100%);
    position: relative;
}

.playstation-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="80" font-size="90" fill="%23d4af37" opacity="0.1">PS</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

.banner-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.main-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.content-flex-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.main-text-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #333333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.main-text-content h2 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.main-text-content h3 {
    font-size: 26px;
    color: #d4af37;
    margin: 35px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #333333;
}

.main-text-content p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.problem-list li {
    padding: 18px;
    margin-bottom: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    color: #e0e0e0;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
}

.problem-list li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.problem-list li i {
    color: #d4af37;
    margin-right: 12px;
    font-size: 18px;
    min-width: 25px;
    display: inline-block;
}

.problem-list li strong {
    color: #d4af37;
    font-weight: 600;
}

.image-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.image-sidebar a {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333333;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.image-sidebar a:hover {
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.image-sidebar img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    object-fit: contain;
    background: #000000;
    padding: 20px;
}

.image-sidebar a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Xbox Page Styles */
.xbox-banner {
    background: linear-gradient(135deg, #107c10 0%, #064d04 50%, #000000 100%);
    position: relative;
}

.xbox-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="80" font-size="80" fill="%23d4af37" opacity="0.1">XBOX</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Services Page Styles */
.services-banner {
    background: linear-gradient(135deg, #d4af37 0%, #8b7355 50%, #000000 100%);
}

.services-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-detail-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333333;
    transition: all 0.4s ease;
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.service-detail-card .service-icon {
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    filter: drop-shadow(0 0 25px #d4af37);
}

.service-detail-card h3 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-detail-card p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.service-detail-card .service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-detail-card .service-features li {
    padding: 10px 0;
    color: #e0e0e0;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.service-detail-card .service-features li:hover {
    color: #d4af37;
    padding-left: 10px;
    border-color: #d4af37;
}

.service-detail-card .service-features li i {
    color: #d4af37;
    margin-right: 10px;
}

/* Contact Page Styles */
.contact-banner {
    background: linear-gradient(135deg, #4a148c 0%, #1a0033 50%, #000000 100%);
}

.contact-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #333333;
}

.contact-info-box h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #d4af37;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.contact-item i {
    font-size: 28px;
    color: #d4af37;
    margin-right: 20px;
    min-width: 40px;
}

.contact-item-content h3 {
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 8px;
}

.contact-item-content p,
.contact-item-content a {
    color: #e0e0e0;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-content a:hover {
    color: #d4af37;
}

.contact-form-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #333333;
}

.contact-form-box h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #333333;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

/* Shop Page Styles */
.shop-banner {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
}

.shop-content-section {
    padding: 60px 20px;
    background: #0a0a0a;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 50px 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-title:first-of-type {
    margin-top: 20px;
}

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

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #2d2d2d;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.best-seller {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #0a0a0a;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.product-info > p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.product-features span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.product-features span i {
    font-size: 0.75rem;
}

.product-card:hover .product-features span {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 10px 0;
}

.product-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a0a;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.product-btn:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.product-btn i {
    font-size: 1.2rem;
}

/* Payment Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    margin: 5% auto;
    padding: 40px;
    border: 2px solid #d4af37;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #d4af37;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: #f4d03f;
    transform: rotate(90deg);
}

.modal-content h2 {
    color: #d4af37;
    margin: 0 0 30px 0;
    font-size: 2rem;
    text-align: center;
}

.order-summary {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #0a0a0a;
    border-radius: 10px;
    padding: 10px;
}

.summary-details h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.modal-price {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.payment-options h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method-btn {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border: 2px solid #333;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-method-btn:hover {
    background: linear-gradient(145deg, #3d3d3d, #2a2a2a);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.payment-method-btn i {
    font-size: 2rem;
    color: #d4af37;
}

.payment-method-btn.whatsapp-order {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    grid-column: 1 / -1;
}

.payment-method-btn.whatsapp-order:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.payment-method-btn.whatsapp-order i {
    color: #fff;
}

.order-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.order-note i {
    color: #d4af37;
    margin: 0 5px;
}

/* Text Highlighting for All Pages */
strong {
    color: #d4af37;
    font-weight: 600;
}

em {
    color: #f4d03f;
    font-style: normal;
}

mark {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: #d4af37;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .image-slider {
        height: 500px;
    }

    .slide-caption {
        bottom: 30px;
        left: 20px;
        right: 20px;
        padding: 25px;
        max-width: 100%;
    }

    .slide-caption h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .slide-caption p {
        font-size: 14px;
        line-height: 1.6;
    }

    .slider-nav {
        padding: 15px 18px;
        font-size: 20px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-controls {
        bottom: 15px;
    }

    .dot {
        width: 14px;
        height: 14px;
    }

    .category-container,
    .cards,
    .card-container,
    .services-grid .container {
        grid-template-columns: 1fr;
    }

    .services-section h2,
    .main-container h1 {
        font-size: 30px;
    }

    .logo {
        height: 80px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .content-flex-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-text-content {
        padding: 30px;
    }

    .main-text-content h2 {
        font-size: 28px;
    }

    .main-text-content h3 {
        font-size: 22px;
    }

    .image-sidebar {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
    }

    .image-sidebar a {
        min-width: 200px;
    }

    .problem-list li {
        padding: 15px;
        font-size: 14px;
    }

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

    .contact-info-box,
    .contact-form-box {
        padding: 30px;
    }

    .services-detail-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        padding: 80px 0;
    }

    .hero-banner::after {
        width: 200px;
        height: 200px;
        right: 5%;
    }

    /* Shop page mobile responsive */
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .product-card {
        margin: 0 10px;
    }

    .product-image {
        height: 220px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .product-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }

    /* Payment Modal Mobile */
    .modal-content {
        width: 95%;
        padding: 25px;
        margin: 10% auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .summary-item {
        flex-direction: column;
        text-align: center;
    }

    .summary-item img {
        width: 80px;
        height: 80px;
    }

    .modal-price {
        font-size: 1.4rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .payment-method-btn {
        padding: 15px;
    }

    .payment-method-btn i {
        font-size: 1.5rem;
    }
}
