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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --dark-bg: #0f172a;
    --light-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --accent: #22d3ee;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

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

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    color: var(--text-primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-try-now {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-try-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

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

/* User Avatar and Dropdown */
.user-profile-wrapper {
    position: relative;
    margin-left: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.user-avatar.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: var(--light-bg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(99, 102, 241, 0.1);
}

.user-dropdown-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.user-dropdown-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.user-dropdown-menu {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.user-dropdown-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.user-dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
}

.user-dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.user-dropdown-item.logout {
    color: #ef4444;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.user-dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.search-modal-content {
    position: relative;
    margin: 10% auto;
    width: 90%;
    max-width: 600px;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.search-input {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--text-primary);
}

.search-results {
    margin-top: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.nav-menu.mobile-active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-menu.mobile-active li {
    margin-bottom: 1rem;
}

.nav-menu.mobile-active a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-try-now,
    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-large {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

#codeBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    z-index: 10;
    position: relative;
    padding-left: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Diagonal Slider */
.diagonal-slider {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-25deg);
    width: 600px;
    height: 800px;
    overflow: hidden;
    z-index: 1;
}

.slider-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideUp 30s linear infinite;
}

.slide {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.slide:hover img {
    transform: scale(1.1);
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Features Section */
.features {
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.features-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.features-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    animation: featuresFloat 8s infinite ease-in-out;
}

.features-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.features-particle:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.features-particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.features-particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.features-particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

.features-particle:nth-child(6) {
    top: 70%;
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 8.5s;
}

.features-particle:nth-child(7) {
    top: 30%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 9.5s;
}

.features-particle:nth-child(8) {
    top: 50%;
    left: 60%;
    animation-delay: 1.8s;
    animation-duration: 7.8s;
}

.features-circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: featuresPulse 4s infinite ease-in-out;
}

.features-circle:nth-child(9) {
    top: 15%;
    left: 40%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.features-circle:nth-child(10) {
    top: 50%;
    left: 75%;
    width: 150px;
    height: 150px;
    animation-delay: 1s;
}

.features-circle:nth-child(11) {
    top: 70%;
    left: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

.features-circle:nth-child(12) {
    top: 35%;
    left: 85%;
    width: 80px;
    height: 80px;
    animation-delay: 1.5s;
}

.features-wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    animation: featuresWave 6s infinite linear;
}

.features-wave:nth-child(13) {
    top: 25%;
    animation-delay: 0s;
}

.features-wave:nth-child(14) {
    top: 55%;
    animation-delay: 2s;
}

.features-wave:nth-child(15) {
    top: 85%;
    animation-delay: 4s;
}

@keyframes featuresFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(-40px, -40px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes featuresPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

@keyframes featuresWave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--light-bg), rgba(99, 102, 241, 0.05));
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

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

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 20px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.about .container {
    position: relative;
    z-index: 10;
}

.about .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    animation: containerGlow 10s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes containerGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Animated Background Elements */
.about::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2), transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    animation: megaPulse 6s ease-in-out infinite;
    filter: blur(40px);
}

.about::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), rgba(34, 211, 238, 0.2), transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: megaPulse 8s ease-in-out infinite 2s;
    filter: blur(40px);
}

@keyframes megaPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: scale(1.3) translate(40px, -40px) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: scale(0.9) translate(-30px, 30px) rotate(240deg);
        opacity: 0.7;
    }
}

.about-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    display: block !important;
}

.floating-shape-about {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(139, 92, 246, 0.5), rgba(34, 211, 238, 0.4));
    animation: morphFloat 20s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(99, 102, 241, 0.8), 0 0 150px rgba(139, 92, 246, 0.6);
    filter: blur(0px);
    z-index: 2;
}

.floating-shape-about:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 5%;
    left: 3%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.floating-shape-about:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 55%;
    left: 8%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.floating-shape-about:nth-child(4) {
    width: 220px;
    height: 220px;
    top: 25%;
    right: 5%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.floating-shape-about:nth-child(5) {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 12%;
    animation-delay: 6s;
    animation-duration: 14s;
}

@keyframes morphFloat {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg) scale(1);
        box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
    }
    20% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translate(50px, -50px) rotate(72deg) scale(1.1);
        box-shadow: 0 0 80px rgba(139, 92, 246, 0.6);
    }
    40% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translate(-30px, -80px) rotate(144deg) scale(0.95);
        box-shadow: 0 0 70px rgba(34, 211, 238, 0.5);
    }
    60% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translate(60px, -60px) rotate(216deg) scale(1.05);
        box-shadow: 0 0 90px rgba(99, 102, 241, 0.7);
    }
    80% {
        border-radius: 70% 30% 30% 70% / 40% 60% 40% 60%;
        transform: translate(-40px, -40px) rotate(288deg) scale(0.9);
        box-shadow: 0 0 75px rgba(139, 92, 246, 0.5);
    }
}

/* Glowing Particles */
.glowing-particle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, rgba(99, 102, 241, 1), rgba(139, 92, 246, 1));
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(99, 102, 241, 1), 0 0 80px rgba(139, 92, 246, 1), 0 0 120px rgba(34, 211, 238, 0.8);
    animation: particleFloat 15s ease-in-out infinite;
    z-index: 2;
}

.glowing-particle:nth-child(6) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.glowing-particle:nth-child(7) {
    top: 45%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.glowing-particle:nth-child(8) {
    top: 75%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.glowing-particle:nth-child(9) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.glowing-particle:nth-child(10) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.glowing-particle:nth-child(11) {
    top: 85%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -150px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translate(-80px, -250px) scale(1.2);
        opacity: 0.7;
    }
    75% {
        transform: translate(120px, -180px) scale(1.8);
        opacity: 0.9;
    }
}

/* Grid lines animation removed */

/* Wave line animation removed */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 5;
    gap: 3rem;
    align-items: center;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.6), rgba(139, 92, 246, 0.4), transparent 70%);
    border-radius: 50%;
    animation: aboutContentBlob1 8s ease-in-out infinite;
    z-index: -1;
    filter: blur(80px);
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), rgba(34, 211, 238, 0.4), transparent 70%);
    border-radius: 50%;
    animation: aboutContentBlob2 10s ease-in-out infinite;
    z-index: -1;
    filter: blur(80px);
}

@keyframes aboutContentBlob1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translate(100px, -100px) scale(1.3) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9) rotate(240deg);
        opacity: 0.9;
    }
}

@keyframes aboutContentBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translate(-100px, 100px) scale(1.4) rotate(-120deg);
        opacity: 1;
    }
    66% {
        transform: translate(50px, -50px) scale(0.95) rotate(-240deg);
        opacity: 0.9;
    }
}

.about-text {
    padding-left: 3rem;
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    border-radius: 50%;
    animation: textGlow 6s ease-in-out infinite;
    z-index: -1;
    filter: blur(40px);
}

@keyframes textGlow {
    0%, 100% {
        transform: translate(0, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -50%) scale(1.5);
        opacity: 0.8;
    }
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.about-image {
    max-width: 350px;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5), transparent 70%);
    border-radius: 50%;
    animation: videoGlow1 5s ease-in-out infinite;
    z-index: -1;
    filter: blur(30px);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent 70%);
    border-radius: 50%;
    animation: videoGlow2 7s ease-in-out infinite;
    z-index: -1;
    filter: blur(30px);
}

@keyframes videoGlow1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 20px) scale(1.3);
        opacity: 1;
    }
}

@keyframes videoGlow2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -20px) scale(1.4);
        opacity: 1;
    }
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    display: block !important;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-image video {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
}

/* Hero Grid Overlay Styles for AI Hero Banner */
.hero-grid-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 10 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

.hero-grid-overlay.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-grid-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr 1fr !important;
    gap: 15px !important;
    width: 90% !important;
    height: 90% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    grid-auto-flow: row !important;
}

.hero-grid-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    display: block !important;
    min-height: 100px !important;
    min-width: 100px !important;
}

.hero-grid-image:hover {
    transform: scale(1.05) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
}

/* AI Hero Banner specific grid styles */
.hero-grid-before {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr 1fr !important;
    gap: 15px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-grid-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.hero-grid-item .before-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

/* Hide discount badge and fullscreen button for AI Hero Banner before images */
.hero-grid-item .discount-badge,
.hero-grid-item .fullscreen-btn {
    display: none !important;
}

/* AI Services Section */
.ai-services {
    padding: 100px 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.service-image {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

/* Service image hover effect support */
.service-image .image-hover-effect {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image .img-default,
.service-image .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image .img-default {
    opacity: 1;
    filter: brightness(1) blur(0px);
    transform: scale(1);
}

.service-image .img-hover {
    opacity: 0;
    filter: brightness(1.3) blur(10px);
    transform: scale(1.1);
}

.service-card:hover .service-image .img-default {
    opacity: 0;
    filter: brightness(0.8) blur(10px);
    transform: scale(0.95);
}

.service-card:hover .service-image .img-hover {
    opacity: 1;
    filter: brightness(1) blur(0px);
    transform: scale(1);
}

/* Service image distortion overlay effect */
.service-image .image-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    z-index: 10;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-card:hover .service-image .image-hover-effect::before {
    left: 100%;
}

/* Disabled - using new hover effect for service images with image-hover-effect class
.service-card:hover .service-image img {
    transform: scale(1.1);
}
*/

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.popularity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.popularity-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.popularity-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.popularity-badge.gold:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.popularity-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #2F2F2F;
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.popularity-badge.silver:hover {
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.6);
}

.popularity-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: #FFFFFF;
    border-color: rgba(205, 127, 50, 0.5);
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

.popularity-badge.bronze:hover {
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.6);
}

.fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.fullscreen-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.fullscreen-btn svg {
    width: 20px;
    height: 20px;
}

/* Vertical Image Slider Modal */
.vertical-slider-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.vertical-slider-content {
    position: relative;
    width: 50%;
    max-width: 500px;
    height: 90%;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.slider-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.vertical-slider-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.vertical-slider-container::-webkit-scrollbar {
    width: 8px;
}

.vertical-slider-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.vertical-slider-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.vertical-slider-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.vertical-slider-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Dual Image Content Styles for AI E-commerce */
.dual-image-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.image-heading {
    color: #007cba;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 15px 20px;
    background: rgba(0, 124, 186, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(0, 124, 186, 0.3);
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.2);
    backdrop-filter: blur(5px);
}

.image-section .vertical-slider-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments for dual image layout */
@media (max-width: 768px) {
    .vertical-slider-content {
        width: 90%;
        height: 95%;
    }
    
    .image-heading {
        font-size: 20px;
        padding: 12px 15px;
    }
    
    .dual-image-content {
        gap: 30px;
        padding: 15px 0;
    }
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    display: flex;
    justify-content: center;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.btn-select {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.service-info {
    padding: 1rem 1rem 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background: var(--light-bg);
    margin-top: 0;
}

.service-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    line-height: 1.4;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.service-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.8;
    flex-grow: 1;
}

.service-price {
    margin-bottom: 0.5rem;
    margin-top: auto;
    flex-shrink: 0;
}

.price-range {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Price Display with Original and Current Price */
.price-display {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.original-price {
    color: #888;
    font-size: 0.85rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-range {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.service-price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.service-rating {
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Additional fixes to prevent content overlap */
.service-card .service-info > * {
    position: relative;
    z-index: 3;
}

.service-card .service-image {
    position: relative;
    z-index: 1;
}

/* Ensure proper spacing between image and content */
.service-card .service-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Slot Availability Styles */
.slot-availability-section {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
}

.slot-availability-badge {
    display: inline-block;
}

.slot-availability {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    animation: slotPulse 2s infinite ease-in-out;
}

.slot-availability.good-slots {
    color: white;
}

.slot-availability.low-slots {
    color: white;
    animation: slotUrgent 1.5s infinite ease-in-out;
}

.slot-availability.no-slots {
    color: white;
    animation: slotSoldOut 1s infinite ease-in-out;
}

@keyframes slotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes slotUrgent {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes slotSoldOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Update slot availability section background based on status */
.slot-availability-section.good-slots {
    background: var(--light-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

.slot-availability-section.low-slots {
    background: var(--light-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

.slot-availability-section.no-slots {
    background: var(--light-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive slot availability */
@media (max-width: 768px) {
    /* Force all service images to have same height in mobile - AGGRESSIVE APPROACH */
    .service-image,
    .services-grid .service-image,
    .service-card .service-image,
    .services-grid .service-card .service-image,
    .ai-services .service-image,
    .ai-services .service-card .service-image,
    .ai-services .services-grid .service-image,
    .ai-services .services-grid .service-card .service-image {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }
    
    /* Force all service image imgs to have consistent sizing */
    .service-image img,
    .services-grid .service-image img,
    .service-card .service-image img,
    .services-grid .service-card .service-image img,
    .ai-services .service-image img,
    .ai-services .service-card .service-image img,
    .ai-services .services-grid .service-image img,
    .ai-services .services-grid .service-card .service-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top !important;
        display: block !important;
    }
    
    .slot-availability-section {
        margin: 0.4rem 0;
        padding: 0.4rem;
    }
    
    .slot-availability {
        font-size: 0.65rem;
    }
}

/* Service slot availability styles removed - only used on product detail pages */

.view-more-container {
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation Improvements */
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-menu {
        gap: 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-right {
        gap: 0.4rem;
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-logo {
        width: 30px;
        height: 30px;
    }
    
    .btn-try-now,
    .btn-login {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Hide Try AI Now button on mobile */
    .btn-try-now {
        display: none !important;
    }
    
    /* Hero Section Improvements */
    .hero {
        padding: 40px 0 40px;
        min-height: 70vh;
    }
    
    .hero-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        max-width: 100%;
        text-align: left;
        margin-top: 10rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Content Sections */
    .container {
        padding: 0 8px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Services Grid Improvements - 2 columns for mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 5px;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0;
        min-height: 400px;
    }
    
    .service-image {
        height: 200px !important;
        margin: 0;
    }
    
    .service-image img {
        object-fit: cover;
        object-position: top;
    }
    
    .service-info {
        padding: 0.1rem 0.6rem 0.4rem 0.6rem;
        margin: 0;
    }
    
    .service-info h3 {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0 0 0.3rem 0;
        min-height: 2.2rem;
    }
    
    .service-description {
        font-size: 0.65rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }
    
    .service-description.short {
        min-height: 2.4rem;
    }
    
    .service-description-container {
        margin-bottom: 0.3rem;
    }
    
    .package-selection-home {
        margin: 0.1rem 0;
    }
    
    .service-price-rating-row {
        margin-bottom: 0.3rem;
    }
    
    .service-price {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .service-rating {
        font-size: 0.75rem;
    }
    
    .discount-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .popularity-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
        top: 10px;
        right: 10px;
    }
    
    .wishlist-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .show-more-btn {
        font-size: 0.6rem;
        padding: 2px 0;
        margin-top: 3px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .what-we-do-title {
        font-size: 1.3rem;
        line-height: 1.3;
        text-align: center;
    }
    
    /* Diagonal Slider Mobile */
    .diagonal-slider {
        width: 400px;
        height: 500px;
        right: -15%;
    }
    
    .slide {
        width: 250px;
        height: 180px;
    }
    
}

/* Product Detail Page */
.product-detail {
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Fix positioning for proper layout */
.product-detail .product-gallery {
    position: relative;
}

.breadcrumb {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-image img,
.main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.main-product-video {
    background: #000;
    height: 600px !important;
    min-height: 600px;
}

.product-extra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.extra-grid-item {
    aspect-ratio: 1 / 1.5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.extra-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AI Fashion Gallery Styles - Removed, using thumbnail-gallery styles instead */

/* Thumbnail gallery removed - only single product image needed */

.product-info-detail {
    padding: 1rem 0;
}

.product-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.product-price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-price-detail {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Product Detail Page Price Display */
.product-price-detail .price-display {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-price-detail .original-price {
    color: #888;
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.product-price-detail .price-amount {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.product-rating-detail {
    margin-bottom: 1.5rem;
}

.product-rating-detail .stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-options {
    margin-bottom: 1.5rem;
}

.product-options label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.option-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.qty-btn:hover {
    color: var(--primary-color);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
}

.add-to-cart {
    flex: 1;
    min-width: 150px;
}

.product-meta {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.product-meta p {
    margin-bottom: 0.5rem;
}

/* Product Tabs - Separate Section */
.product-tabs-section {
    margin-top: 4rem;
    width: 100%;
    background: var(--dark-bg);
    position: relative;
    z-index: 10;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Debug: Force content visibility */
#detailedDescription,
#productRequirements,
#productReviews {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
}

#detailedDescription h4,
#detailedDescription h5,
#productRequirements h4,
#productRequirements h5,
#productReviews h4,
#productReviews h5 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin: 1rem 0 0.5rem 0 !important;
    display: block !important;
}

#detailedDescription p,
#productRequirements p,
#productReviews p {
    color: #cccccc !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

#detailedDescription ul,
#productRequirements ul,
#productReviews ul {
    color: #cccccc !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

#detailedDescription li,
#productRequirements li,
#productReviews li {
    color: #cccccc !important;
    margin-bottom: 0.5rem !important;
    display: list-item !important;
}

/* Review boxes general styling */
#reviewsList > div {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#reviewsList > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Hide any services grid on product detail page */
.product-detail .services-grid,
.product-detail .shop-products,
.product-detail .services-section,
.product-detail .related-products,
.product-detail .thumbnail-gallery-extra,
.product-detail .product-gallery-extra {
    display: none !important;
}

/* Thumbnail Gallery Styles for AI Ecommerce */
.thumbnail-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.75rem !important;
    margin-top: 1rem !important;
    width: 100% !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.thumbnail-item {
    position: relative !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: var(--light-bg) !important;
    display: flex !important;
    flex-direction: column !important;
}

.thumbnail-item:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3) !important;
}

.thumbnail-item.active {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5) !important;
}

.thumbnail-image {
    width: 100% !important;
    height: 70% !important;
    object-fit: cover !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.thumbnail-title {
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
    color: var(--text-secondary) !important;
    text-align: center !important;
    background: var(--light-bg) !important;
    height: 30% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
}

.thumbnail-item.active .thumbnail-title {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

/* Thumbnail Star Burst Animation */
.thumbnail-star-burst {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.thumbnail-star-particle {
    position: absolute !important;
    color: var(--accent) !important;
    font-size: 12px !important;
    animation: thumbnailStarFloat 0.5s ease-out forwards !important;
    opacity: 0 !important;
}

@keyframes thumbnailStarFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(
            calc(cos(var(--angle)) * 30px),
            calc(sin(var(--angle)) * 30px)
        ) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(
            calc(cos(var(--angle)) * 50px),
            calc(sin(var(--angle)) * 50px)
        ) scale(0.8);
    }
}

/* Star Burst Animation for Main Image */
.star-burst-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
    z-index: 15 !important;
}

.star-particle {
    position: absolute !important;
    color: var(--accent) !important;
    font-size: var(--size, 20px) !important;
    animation: starBurstFloat 0.7s ease-out forwards !important;
    animation-delay: var(--delay, 0s) !important;
    opacity: 0 !important;
}

@keyframes starBurstFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3) rotate(0deg);
    }
    30% {
        opacity: 1;
        transform: translate(
            calc(cos(var(--angle)) * 40px),
            calc(sin(var(--angle)) * 40px)
        ) scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translate(
            calc(cos(var(--angle)) * 80px),
            calc(sin(var(--angle)) * 80px)
        ) scale(0.5) rotate(360deg);
    }
}

.image-transition-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3), transparent 70%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

.image-transition-overlay.active {
    opacity: 1 !important;
}

/* Mobile responsive for thumbnail gallery */
@media (max-width: 768px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
        max-width: 100% !important;
    }
    
    .thumbnail-title {
        font-size: 0.65rem !important;
        padding: 0.3rem !important;
    }
}

@media (max-width: 480px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.3rem !important;
    }
    
    .thumbnail-title {
        font-size: 0.6rem !important;
        padding: 0.25rem !important;
    }
}

/* Force clear any floating elements */
.product-tabs-section::before {
    content: "";
    display: table;
    clear: both;
}

/* Ensure product content doesn't overlap */
.product-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    gap: 0.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.tab-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    min-height: 300px;
    background: var(--dark-bg);
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

/* Force visibility of tab content */
.tab-content * {
    color: var(--text-primary) !important;
}

.tab-content h4, .tab-content h5 {
    color: white !important;
    margin: 1rem 0 0.5rem 0;
}

.tab-content p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tab-content ul {
    color: var(--text-secondary) !important;
    padding-left: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary) !important;
}

.tab-button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    min-height: 300px;
    background: var(--dark-bg);
    position: relative;
    z-index: 10;
}

.tab-pane {
    display: none !important;
}

.tab-pane.active {
    display: block !important;
}

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

.tab-content-inner {
    padding: 1rem 0;
    min-height: 200px;
    color: var(--text-primary);
}

.tab-content-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tab-content-inner p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tab-content-inner ul {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.tab-content-inner li {
    margin-bottom: 0.5rem;
}

/* Reviews Styling */
.review-item {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: auto;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail {
        padding: 85px 0 40px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        padding: 0 10px;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .main-image {
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .discount-badge {
        top: 10px;
        left: 10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .popularity-badge {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .product-info-detail {
        padding: 0.8rem;
    }
    
    .product-info-detail h1 {
        font-size: 1.15rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .product-price-rating-row {
        margin-bottom: 0.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .price-amount {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .product-rating-detail .stars {
        font-size: 1rem;
    }
    
    /* Queue and Delivery Info for 768px */
    .queue-delivery-info {
        margin: 3px 0 8px 0;
        padding: 2px 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .queue-count,
    .delivery-time {
        font-size: 0.7rem;
        padding: 3px 7px;
    }
    
    .product-description {
        margin: 1rem 0;
    }
    
    .product-description p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
    }
    
    /* Slot Availability for 768px */
    .slot-availability-section {
        margin: 0.8rem 0;
    }
    
    .slot-availability-badge {
        padding: 0.5rem 1rem;
    }
    
    .slot-availability {
        font-size: 0.8rem;
    }
    
    /* Product Options for 768px */
    .product-options {
        margin: 1.2rem 0;
    }
    
    .product-options label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .option-select {
        font-size: 0.85rem;
        padding: 0.7rem;
        min-height: 46px;
    }
    
    /* Product Actions for 768px */
    .product-actions {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .quantity-selector {
        align-self: flex-start;
    }
    
    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .quantity-selector input {
        width: 60px;
        height: 40px;
        font-size: 1rem;
    }
    
    .product-actions .btn {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    /* Product Meta for 768px */
    .product-meta {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .product-meta p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* Product Tabs for 768px */
    .product-tabs-section {
        margin-top: 2.5rem;
    }
    
    .product-tabs {
        padding: 0 10px;
        gap: 0.3rem;
        margin-bottom: 1.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        min-width: 100px;
        white-space: nowrap;
        border-right: none;
        border-left: none;
        border-top: none;
        margin: 0 0.15rem;
    }
    
    .tab-button.active {
        border-bottom: 2px solid var(--primary-color);
    }
    
    /* Tab Content for 768px */
    .tab-content {
        min-height: 250px;
    }
    
    .tab-pane {
        padding: 1.5rem 10px !important;
    }
    
    .tab-pane h3 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .tab-pane p,
    .tab-pane div {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: #cccccc !important;
    }
    
    .tab-pane ul {
        padding-left: 1.2rem;
    }
    
    .tab-pane li {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .product-rating-detail {
        margin-bottom: 1.5rem;
    }
    
    .product-description {
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
    }
    
    .product-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .product-options {
        margin-bottom: 1.5rem;
    }
    
    .option-select {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .quantity-selector {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .qty-btn {
        min-width: 44px;
        min-height: 44px;
        font-size: 1.2rem;
    }
    
    .product-actions .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .product-meta {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Product Tabs Mobile */
    .product-tabs-section {
        margin-top: 3rem;
    }
    
    .product-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.3rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0 1rem;
    }
    
    .tab-button {
        padding: 1rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: 110px;
        border-bottom: 2px solid transparent;
        border-right: none;
        border-left: none;
        border-top: none;
        margin: 0 0.1rem;
    }
    
    .tab-button.active {
        border-bottom: 2px solid var(--primary-color);
        color: var(--primary-color);
    }
    
    .tab-content {
        padding: 0 10px;
    }
    
    .tab-pane {
        padding: 1rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart Page */
.cart-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.cart-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 150px 1fr 50px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-bg);
    padding: 0.5rem;
    border-radius: 8px;
}

.cart-item-quantity button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

.cart-item-quantity button:hover {
    color: var(--primary-color);
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #ef4444;
}

.cart-summary {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

/* Checkout Page */
.checkout-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.checkout-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
}

.payment-label {
    display: flex;
    flex-direction: column;
}

.payment-label small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.payment-details {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 8px;
}

.order-summary {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

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

.item-name {
    flex: 1;
}

.item-quantity {
    color: var(--text-secondary);
    margin: 0 1rem;
}

.order-totals {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Success Page */
.success-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto 2rem;
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.order-details {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.order-info-box {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-info-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.order-info-box h3 {
    margin-bottom: 1rem;
}

.order-info-box p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.order-id-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.order-id-highlight h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.order-item-row.total-row {
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-page,
    .checkout-page {
        padding: 90px 0 50px;
    }
    
    .cart-page h1,
    .checkout-page h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    /* Cart Items Mobile */
    .cart-items {
        gap: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-info h3 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-package {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .quantity-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .quantity-controls button {
        min-width: 35px;
        min-height: 35px;
        font-size: 1rem;
    }
    
    .remove-btn {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Cart Summary Mobile */
    .cart-summary {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .cart-summary h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .summary-row {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .summary-total {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    /* Checkout Form Mobile */
    .checkout-form {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .checkout-form h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        min-height: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Order Summary Mobile */
    .order-summary {
        position: static;
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .order-summary h2 {
        font-size: 1.3rem;
    }
    
    .order-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .order-item:last-child {
        border-bottom: none;
    }
    
    /* Success Page Mobile */
    .success-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .success-actions .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .remove-btn {
        grid-column: 2;
        justify-self: end;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Removed WhatsApp pulse animation */

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Scrolling Text Marquee */
.scrolling-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow: hidden;
    z-index: 10;
}

.scroll-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.scroll-content span {
    display: inline-block;
    padding: 0 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.scroll-content span::after {
    content: '•';
    position: absolute;
    right: 1.5rem;
    color: var(--primary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

@media (max-width: 768px) {
    .scroll-content span {
        font-size: 0.9rem;
        padding: 0 2rem;
    }
}

/* AI Work Section */
.ai-work-section {
    padding: 100px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Large Scrolling Text */
.large-scrolling-text {
    width: 100%;
    overflow: hidden;
    margin-bottom: 4rem;
}

.large-scroll-content {
    display: flex;
    animation: scrollLarge 25s linear infinite;
    white-space: nowrap;
}

.large-scroll-content span {
    display: inline-block;
    font-size: 5rem;
    font-weight: 900;
    padding: 0 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
}

@keyframes scrollLarge {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ai-work-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.ai-feature-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.ai-feature-card:hover::before {
    opacity: 0.1;
}

.ai-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.feature-icon-large svg {
    width: 40px;
    height: 40px;
    color: white;
}

.ai-feature-card:hover .feature-icon-large {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.ai-feature-card:hover h3 {
    color: var(--primary-color);
}

.ai-feature-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(0, -100px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .large-scroll-content span {
        font-size: 3rem;
    }
    
    .ai-work-title {
        font-size: 1.8rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Showcase Section */
.ai-showcase-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.showcase-row {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.showcase-image-box {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.showcase-image-box-large {
    position: relative;
    width: 50%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-left: auto;
}

.image-hover-effect {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-default,
.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-default {
    opacity: 1;
    filter: brightness(1) blur(0px);
    transform: scale(1);
}

.img-hover {
    opacity: 0;
    filter: brightness(1.3) blur(10px);
    transform: scale(1.1);
}

.image-hover-effect:hover .img-default {
    opacity: 0;
    filter: brightness(0.8) blur(10px);
    transform: scale(0.95);
}

.image-hover-effect:hover .img-hover {
    opacity: 1;
    filter: brightness(1) blur(0px);
    transform: scale(1);
}

/* Distortion overlay effect */
.image-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    z-index: 10;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.image-hover-effect:hover::before {
    left: 100%;
}

.showcase-text-box {
    padding: 2rem;
}

.showcase-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.showcase-text-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.showcase-text-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.showcase-row-bottom {
    margin-top: 2rem;
}

/* Particles Background Animation */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    top: 15%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    top: 70%;
    left: 60%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    top: 35%;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 11s;
}

.particle:nth-child(9) {
    top: 50%;
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 19s;
}

.particle:nth-child(10) {
    top: 90%;
    left: 85%;
    animation-delay: 3.5s;
    animation-duration: 14s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50px, -200px) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translate(150px, -150px) scale(1.2);
        opacity: 0.4;
    }
    90% {
        opacity: 0.2;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .showcase-image-wrapper {
        height: 350px;
    }
    
    .showcase-content h3 {
        font-size: 2rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.portfolio-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.portfolio-label {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.portfolio-intro h2 {
    font-size: 3rem;
    color: var(--text-primary);
}

.portfolio-description p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.view-more-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.view-more-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

.portfolio-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-track {
    display: flex;
    gap: 2rem;
    animation: scrollPortfolio 40s linear infinite;
    width: fit-content;
}

.portfolio-track.paused {
    animation-play-state: paused;
}

@keyframes scrollPortfolio {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.portfolio-item {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.portfolio-item .hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s;
}

.portfolio-item.playing img {
    opacity: 0;
}

.portfolio-item.playing .hover-video {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-category {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.portfolio-item:hover .portfolio-media img.active,
.portfolio-item:hover .portfolio-media video.active {
    transform: scale(1.1);
    transition: transform 0.6s ease-out;
}

/* Portfolio Full Page */
.portfolio-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.portfolio-page h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

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

.portfolio-full-item {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.portfolio-full-item:hover {
    transform: translateY(-10px);
}

.portfolio-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-full-item:hover img {
    transform: scale(1.1);
}

.portfolio-full-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.portfolio-full-item:hover .portfolio-full-overlay {
    transform: translateY(0);
}

.portfolio-full-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .portfolio-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-full-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 1200px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

#modalVideo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 30px;
    }
}

/* How We Work Section */
.how-we-work-section {
    padding: 80px 0 60px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Animated Background for How We Work */
.how-we-work-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15), transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: rotatePulse 15s ease-in-out infinite;
    filter: blur(60px);
}

.how-we-work-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), rgba(99, 102, 241, 0.1), transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: rotatePulse 18s ease-in-out infinite 3s;
    filter: blur(60px);
}

@keyframes rotatePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: scale(1.2) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: scale(0.9) rotate(240deg);
        opacity: 0.7;
    }
}

.work-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.work-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 1), rgba(139, 92, 246, 0.8));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.8), 0 0 30px rgba(139, 92, 246, 0.6);
    animation: workParticleFloat 20s ease-in-out infinite;
}

.work-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.work-particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.work-particle:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.work-particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 17s;
}

.work-particle:nth-child(5) {
    top: 20%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.work-particle:nth-child(6) {
    top: 70%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.work-particle:nth-child(7) {
    top: 40%;
    left: 25%;
    animation-delay: 2.5s;
    animation-duration: 16.5s;
}

.work-particle:nth-child(8) {
    top: 50%;
    left: 85%;
    animation-delay: 4.5s;
    animation-duration: 15.5s;
}

@keyframes workParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(150px, -200px) scale(2);
        opacity: 1;
    }
    50% {
        transform: translate(-100px, -350px) scale(1.5);
        opacity: 0.8;
    }
    75% {
        transform: translate(180px, -250px) scale(2.2);
        opacity: 0.9;
    }
}

.work-ring {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: expandRing 8s ease-out infinite;
}

.work-ring:nth-child(9) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.work-ring:nth-child(10) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.work-ring:nth-child(11) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes expandRing {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.work-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.5), transparent);
    animation: lineMove 10s ease-in-out infinite;
}

.work-line:nth-child(12) {
    width: 300px;
    top: 25%;
    left: -300px;
    animation-delay: 0s;
}

.work-line:nth-child(13) {
    width: 400px;
    top: 55%;
    right: -400px;
    animation-delay: 3s;
}

.work-line:nth-child(14) {
    width: 350px;
    top: 75%;
    left: -350px;
    animation-delay: 6s;
}

@keyframes lineMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 400px));
        opacity: 0;
    }
}

.how-we-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.work-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.work-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.work-content {
    padding: 2rem 0;
}

.work-label {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.work-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.work-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.accordion-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.accordion-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    .how-we-work-container {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .work-content h2 {
        font-size: 2.2rem;
    }
}

@media (min-width: 969px) {
    .how-we-work-container {
        grid-template-columns: 45% 55% !important;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0 80px;
    background: var(--dark-bg);
    text-align: center;
}

.newsletter-icon {
    margin-bottom: 1.5rem;
}

.newsletter-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 1rem;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

.newsletter-terms {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.newsletter-terms a {
    color: var(--primary-color);
    text-decoration: none;
}

.newsletter-terms a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
}

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

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-section h2 {
        font-size: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* About Page Styles */
/* About Hero Image Section */
.about-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
}

.about-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: var(--dark-bg);
}

.about-main-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
    white-space: nowrap;
}

.about-intro-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-intro-text strong {
    color: var(--text-primary);
}

.about-intro-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-intro-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-intro-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* About Services Grid */
.about-services {
    padding: 40px 0;
    background: var(--dark-bg);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-service-card {
    background: var(--light-bg);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.about-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.service-icon-outline {
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.service-icon-outline svg {
    width: 50px;
    height: 50px;
}

.about-service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.about-service-card:hover .service-arrow {
    transform: translateX(10px);
}

/* About Slider Section */
.about-slider-section {
    padding: 0;
    background: var(--dark-bg);
}

.about-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* About Creatives Section */
.about-creatives {
    padding: 80px 0;
    background: var(--dark-bg);
}

.creatives-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creatives-header h2 {
    font-size: 3rem;
}

/* Responsive */
@media (max-width: 968px) {
    .about-hero-image {
        height: 300px;
        margin-top: 70px;
    }
    
    .about-hero-image img {
        object-fit: contain;
    }
    
    .about-main-title {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    /* Remove background animations in mobile to prevent green effect and extra space */
    .about .container::before {
        display: none;
    }
    
    .about::before,
    .about::after {
        display: none;
    }
    
    .about-animated-bg {
        display: none !important;
    }
    
    .floating-shape-about {
        display: none;
    }
    
    .glowing-particle {
        display: none;
    }
    
    .slider-caption {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .creativity-tagline p {
        font-size: 1.2rem;
    }
    
    .creativity-tagline {
        padding: 1.5rem;
    }
    
    /* Fix showcase section for mobile */
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .showcase-text-box {
        padding: 1rem;
        order: 2;
    }
    
    .showcase-text-box h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .showcase-text-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .showcase-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .showcase-image-box {
        height: 250px;
        order: 1;
    }
    
    .showcase-image-box-large {
        width: 80%;
        height: 280px;
        margin: 0 auto;
    }
    
    /* Make AI services products smaller on mobile */
    .service-card {
        min-height: auto;
    }
    
    .service-image {
        height: 200px !important;
    }
    
    .service-image img {
        object-fit: cover;
        object-position: top;
    }
    
    .service-info {
        padding: 0.8rem 0.8rem 0.6rem 0.8rem;
    }
    
    .service-info h3 {
        font-size: 0.95rem;
        min-height: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .service-description {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .price-range {
        font-size: 0.95rem;
    }
    
    .service-rating {
        font-size: 0.9rem;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-service-card {
        padding: 1.2rem 1rem;
    }
    
    .service-icon-outline {
        margin: 0 auto 1rem;
    }
    
    .service-icon-outline svg {
        width: 40px;
        height: 40px;
    }
    
    .about-service-card h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-arrow {
        font-size: 1.5rem;
    }
    
    .about-slider {
        height: 400px;
    }
    
    .creatives-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* About Creativity Section */
.about-creativity {
    padding: 80px 0;
    background: var(--dark-bg);
}

.creativity-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.creativity-images {
    position: relative;
}

.creativity-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.creativity-tagline {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 12px;
}

.creativity-tagline p {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.creativity-tagline span {
    color: var(--text-secondary);
}

.creativity-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.creativity-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.creativity-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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


/* AI Services Shop Page */
.shop-header {
    padding: 80px 0 20px !important;
    background: var(--dark-bg);
}

.shop-header h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.category-tab {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 4px 12px !important;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.category-tab:not(.active) {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.category-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.category-tab:not(.active):hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}



.shop-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-sort label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.shop-sort select {
    background: var(--light-bg);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
}

.shop-sort select:focus {
    border-color: var(--primary-color);
}

.shop-products {
    padding: 60px 0 80px;
    background: var(--dark-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .shop-header {
        padding: 60px 0 15px !important;
    }
    
    .shop-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .category-tabs {
        gap: 6px;
        margin: 8px 0;
        padding: 0 10px;
    }
    
    .category-tab {
        padding: 4px 8px;
        font-size: 0.65rem;
        border-radius: 4px;
        letter-spacing: 0.1px;
    }
    
    .service-description {
        font-size: 0.65rem;
    }
    
    .shop-info {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .shop-sort {
        width: 100%;
    }
    
    .shop-sort select {
        font-size: 0.7rem;
        padding: 0.4rem;
    }
    
    .results-count {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .shop-header {
        padding: 50px 0 10px !important;
    }
    
    .shop-header h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .category-tabs {
        gap: 4px;
        margin: 6px 0;
        padding: 0 5px;
    }
    
    .category-tab {
        padding: 3px 6px;
        font-size: 0.55rem;
        border-radius: 3px;
    }
    
    .shop-sort select {
        font-size: 0.6rem;
        padding: 0.3rem;
    }
    
    .results-count {
        font-size: 0.6rem;
    }
    
    .shop-sort select {
        flex: 1;
    }
}


/* FAQ Page */
.faq-hero {
    padding: 150px 0 60px;
    background: var(--dark-bg);
    text-align: center;
}

.faq-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.faq-section {
    padding: 60px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

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

.faq-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    animation: faqFloat 12s infinite ease-in-out;
}

.faq-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
    width: 15px;
    height: 15px;
}

.faq-particle:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 12s;
    width: 10px;
    height: 10px;
}

.faq-particle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
    width: 18px;
    height: 18px;
}

.faq-particle:nth-child(4) {
    top: 60%;
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 11s;
    width: 12px;
    height: 12px;
}

.faq-particle:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-delay: 1.5s;
    animation-duration: 13s;
    width: 14px;
    height: 14px;
}

.faq-particle:nth-child(6) {
    top: 15%;
    left: 50%;
    animation-delay: 2.5s;
    animation-duration: 10s;
    width: 16px;
    height: 16px;
}

.faq-particle:nth-child(7) {
    top: 70%;
    left: 60%;
    animation-delay: 1.2s;
    animation-duration: 11s;
    width: 11px;
    height: 11px;
}

.faq-particle:nth-child(8) {
    top: 35%;
    left: 90%;
    animation-delay: 2.2s;
    animation-duration: 13s;
    width: 13px;
    height: 13px;
}

.faq-particle:nth-child(9) {
    top: 50%;
    left: 15%;
    animation-delay: 0.8s;
    animation-duration: 12s;
    width: 17px;
    height: 17px;
}

.faq-particle:nth-child(10) {
    top: 90%;
    left: 85%;
    animation-delay: 1.8s;
    animation-duration: 10s;
    width: 14px;
    height: 14px;
}

.faq-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 30px var(--primary-color);
    animation: faqPulse 4s infinite ease-in-out;
}

.faq-ring:nth-child(11) {
    top: 20%;
    left: 25%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.faq-ring:nth-child(12) {
    top: 55%;
    left: 65%;
    width: 250px;
    height: 250px;
    animation-delay: 1.3s;
}

.faq-ring:nth-child(13) {
    top: 35%;
    left: 45%;
    width: 180px;
    height: 180px;
    animation-delay: 2.6s;
}

.faq-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
    box-shadow: 0 0 10px var(--primary-color);
    animation: faqSlide 8s infinite linear;
}

.faq-line:nth-child(14) {
    top: 25%;
    width: 400px;
    left: -400px;
    animation-delay: 0s;
}

.faq-line:nth-child(15) {
    top: 50%;
    width: 500px;
    left: -500px;
    animation-delay: 2s;
}

.faq-line:nth-child(16) {
    top: 75%;
    width: 450px;
    left: -450px;
    animation-delay: 4s;
}

.faq-line:nth-child(17) {
    top: 85%;
    width: 350px;
    left: -350px;
    animation-delay: 6s;
}

@keyframes faqFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(100px, -80px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50px, -150px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(-100px, -80px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes faqPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes faqSlide {
    0% {
        left: -500px;
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
    width: 30px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
    position: relative;
    background: var(--dark-bg);
}

.faq-cta-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.faq-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faq-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faq-cta-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-cta-overlay p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero p {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1rem 1.3rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.3rem 1rem;
    }
    
    .faq-cta-image {
        height: 400px;
    }
    
    .faq-cta-overlay h2 {
        font-size: 2rem;
    }
    
    .faq-cta-overlay p {
        font-size: 1rem;
    }
}


/* Contact Page */
.contact-main-section {
    padding: 120px 0 80px;
    background: var(--dark-bg);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.contact-header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.highlight-blue {
    color: var(--primary-color);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
}

.contact-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.contact-img.active {
    opacity: 1;
}

.contact-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.contact-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 15px var(--primary-color);
    animation: contactFloat 15s infinite ease-in-out;
}

.contact-particle:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.contact-particle:nth-child(2) {
    top: 30%;
    left: 75%;
    animation-delay: 2s;
}

.contact-particle:nth-child(3) {
    top: 60%;
    left: 25%;
    animation-delay: 4s;
}

.contact-particle:nth-child(4) {
    top: 80%;
    left: 65%;
    animation-delay: 1s;
}

.contact-particle:nth-child(5) {
    top: 45%;
    left: 85%;
    animation-delay: 3s;
}

.contact-particle:nth-child(6) {
    top: 70%;
    left: 45%;
    animation-delay: 5s;
}

.contact-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: contactPulse 6s infinite ease-in-out;
}

.contact-ring:nth-child(7) {
    top: 20%;
    left: 50%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.contact-ring:nth-child(8) {
    top: 60%;
    left: 30%;
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.contact-ring:nth-child(9) {
    top: 40%;
    left: 70%;
    width: 180px;
    height: 180px;
    animation-delay: 4s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -80px);
    }
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s;
}

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

.contact-form-wrapper {
    background: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
    min-height: 100px;
}

.recaptcha-wrapper {
    margin: 1.5rem 0;
}

.recaptcha-container {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 304px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.recaptcha-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.recaptcha-checkbox-input {
    display: none;
}

.recaptcha-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.recaptcha-checkbox-box {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}

.recaptcha-checkbox-box:hover {
    border-color: #4285f4;
}

.recaptcha-checkmark {
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s;
}

.recaptcha-checkbox-box.checked {
    background: #4285f4;
    border-color: #4285f4;
}

.recaptcha-checkbox-box.checked .recaptcha-checkmark {
    opacity: 1;
    transform: scale(1);
    stroke: white;
}

.recaptcha-text {
    color: #222;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.recaptcha-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.recaptcha-branding img {
    display: block;
}

.recaptcha-links {
    display: flex;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: #555;
}

.recaptcha-links a {
    color: #555;
    text-decoration: none;
}

.recaptcha-links a:hover {
    text-decoration: underline;
}

.recaptcha-links span {
    color: #999;
}

.btn-get-in-touch {
    background: #7ed321;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    opacity: 0.4;
    pointer-events: none;
}

.btn-get-in-touch.active {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.btn-get-in-touch.active:hover {
    background: #6bc218;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.3);
}

.btn-get-in-touch[disabled] {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Contact Info Boxes */
.contact-info-boxes {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.info-box {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.whatsapp-box {
    background: linear-gradient(135deg, #1e3a20 0%, #0d1f0f 100%);
}

.phone-box {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0f2e 100%);
}

.email-box {
    background: linear-gradient(135deg, #3a3a1e 0%, #1f1f0d 100%);
}

.info-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-box .info-icon {
    color: #25d366;
}

.phone-box .info-icon {
    color: var(--primary-color);
}

.email-box .info-icon {
    color: #ffd700;
}

.info-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-image-wrapper {
        height: 400px;
    }
    
    .info-boxes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-image-wrapper {
        height: 300px;
    }
    
    .btn-get-in-touch {
        width: 100%;
        justify-content: center;
    }
}


/* What We Do Section */
.what-we-do-section {
    padding: 80px 0 0 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.what-we-do-section .container {
    position: relative;
    z-index: 2;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.3), transparent 70%);
    border-radius: 50%;
    animation: whatWeDoBlob1 10s ease-in-out infinite;
    filter: blur(60px);
    z-index: 0;
}

.what-we-do-section::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5), rgba(34, 211, 238, 0.3), transparent 70%);
    border-radius: 50%;
    animation: whatWeDoBlob2 12s ease-in-out infinite;
    filter: blur(60px);
    z-index: 0;
}

@keyframes whatWeDoBlob1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(80px, -80px) scale(1.3);
        opacity: 1;
    }
}

@keyframes whatWeDoBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-80px, 80px) scale(1.4);
        opacity: 1;
    }
}



.what-we-do-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
}

.what-we-do-title {
    font-size: 2.6rem;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.highlight-word {
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-word:hover {
    color: var(--primary-color);
    transform: scale(1.05);
    display: inline-block;
}

.what-we-do-brand {
    margin-top: 3rem;
}

.what-we-do-brand strong {
    font-size: 1.5rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.what-we-do-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .what-we-do-title {
        font-size: 2rem;
    }
    

}


/* About Content Moving Animations */
.about-content-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.moving-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color), 0 0 60px var(--primary-color);
    animation: moveParticle 6s linear infinite;
}

.moving-particle:nth-child(1) {
    top: 10%;
    left: 0;
    animation-delay: 0s;
    animation-duration: 8s;
}

.moving-particle:nth-child(2) {
    top: 30%;
    left: 0;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.moving-particle:nth-child(3) {
    top: 50%;
    left: 0;
    animation-delay: 3s;
    animation-duration: 9s;
}

.moving-particle:nth-child(4) {
    top: 70%;
    left: 0;
    animation-delay: 4.5s;
    animation-duration: 6.5s;
}

.moving-particle:nth-child(5) {
    top: 20%;
    left: 0;
    animation-delay: 2s;
    animation-duration: 8.5s;
}

.moving-particle:nth-child(6) {
    top: 85%;
    left: 0;
    animation-delay: 5s;
    animation-duration: 7.5s;
}

@keyframes moveParticle {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) scale(1.5);
        opacity: 0;
    }
}

.moving-circle {
    position: absolute;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), inset 0 0 30px rgba(99, 102, 241, 0.3);
    animation: expandCircle 5s ease-out infinite;
}

.moving-circle:nth-child(7) {
    top: 20%;
    left: 30%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.moving-circle:nth-child(8) {
    top: 60%;
    left: 60%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
}

.moving-circle:nth-child(9) {
    top: 40%;
    left: 80%;
    width: 70px;
    height: 70px;
    animation-delay: 4s;
}

@keyframes expandCircle {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.diagonal-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
    animation: moveDiagonal 4s linear infinite;
}

.diagonal-line:nth-child(10) {
    top: -200px;
    left: 20%;
    animation-delay: 0s;
}

.diagonal-line:nth-child(11) {
    top: -200px;
    left: 70%;
    animation-delay: 2s;
}

@keyframes moveDiagonal {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 200px)) translateX(100px);
        opacity: 0;
    }
}


/* Bubbles Animation for About Content */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.2));
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: floatBubble 10s ease-in-out infinite;
}

.bubble:nth-child(12) {
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(13) {
    width: 80px;
    height: 80px;
    bottom: -80px;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble:nth-child(14) {
    width: 50px;
    height: 50px;
    bottom: -50px;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.bubble:nth-child(15) {
    width: 70px;
    height: 70px;
    bottom: -70px;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.bubble:nth-child(16) {
    width: 55px;
    height: 55px;
    bottom: -55px;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.bubble:nth-child(17) {
    width: 65px;
    height: 65px;
    bottom: -65px;
    left: 20%;
    animation-delay: 5s;
    animation-duration: 10s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120vh) scale(1.2);
        opacity: 0;
    }
}

/* Rotating Circles for About Content */
.rotating-circle {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: rotateCircle 8s linear infinite;
}

.rotating-circle:nth-child(18) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 15%;
    animation-duration: 10s;
}

.rotating-circle:nth-child(19) {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-duration: 12s;
    animation-direction: reverse;
}

.rotating-circle:nth-child(20) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 60%;
    animation-duration: 15s;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}


/* About Code Background */
#aboutCodeBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}




/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.auth-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-logo img {
    width: 50px;
    height: 50px;
}

.auth-logo h2 {
    color: #667eea;
    margin: 0;
}

.auth-box h1 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 500;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    color: #1a1a2e;
    background: white;
}

.auth-form input::placeholder {
    color: #999;
}

.auth-form input:focus {
    outline: none;
    border-color: #667eea;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.auth-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dashboard-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.dashboard-section h1 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.user-name {
    color: var(--text-primary);
    margin-right: 1rem;
    font-weight: 600;
}

.btn-logout {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-logout:hover {
    background: #ff3838;
}

.requirements-table {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

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

.requirements-table th,
.requirements-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--text-primary);
}

.requirements-table td {
    color: var(--text-secondary);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-pending {
    background: #ffa502;
    color: white;
}

.status-processing {
    background: #3742fa;
    color: white;
}

.status-completed {
    background: #2ed573;
    color: white;
}

.notification-badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Requirements Form */
.requirements-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-section h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.requirements-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.requirements-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.requirements-form textarea,
.requirements-form input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
}

.requirements-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.requirements-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.image-preview {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Container and Spacing */
    .container {
        padding: 0 5px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 5px;
    }
    
    .nav-brand {
        font-size: 0.9rem;
    }
    
    .nav-logo {
        width: 25px;
        height: 25px;
    }
    
    .btn-try-now,
    .btn-login {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
    }

    /* Product Detail Page Mobile Optimization */
    .product-detail {
        padding: 80px 0 20px;
    }
    
    .breadcrumb {
        font-size: 0.7rem;
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    
    .product-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-gallery {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .main-image {
        height: 200px;
        border-radius: 8px;
    }
    
    .main-image img {
        border-radius: 8px;
    }
    
    .discount-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        top: 8px;
        left: 8px;
    }
    
    .popularity-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        top: 8px;
        right: 8px;
    }
    
    .product-info-detail {
        padding: 0 5px;
    }
    
    .product-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .product-info-detail h1 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .product-price-rating-row {
        margin-bottom: 0.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .price-amount {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .product-rating-detail .stars {
        font-size: 0.9rem;
    }
    
    /* Queue and Delivery Info Mobile */
    .queue-delivery-info {
        margin: 2px 0 6px 0;
        padding: 1px 0;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    
    .queue-count,
    .delivery-time {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .product-description {
        margin: 0.8rem 0;
    }
    
    .product-description p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }
    
    /* Slot Availability Mobile */
    .slot-availability-section {
        margin: 0.6rem 0;
    }
    
    .slot-availability-badge {
        padding: 0.4rem 0.8rem;
    }
    
    .slot-availability {
        font-size: 0.7rem;
    }
    
    /* Product Options Mobile */
    .product-options {
        margin: 1rem 0;
    }
    
    .product-options label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .option-select {
        font-size: 0.8rem;
        padding: 0.6rem;
        min-height: 44px;
    }
    
    /* Product Actions Mobile */
    .product-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1.2rem 0;
    }
    
    .quantity-selector {
        align-self: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .quantity-selector input {
        width: 50px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .product-actions .btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    /* Product Meta Mobile */
    .product-meta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .product-meta p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    /* Product Tabs Section Mobile */
    .product-tabs-section {
        margin-top: 2rem;
    }
    
    .product-tabs {
        padding: 0 5px;
        gap: 0.2rem;
        margin-bottom: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-button {
        padding: 0.7rem 0.8rem;
        font-size: 0.7rem;
        min-width: 80px;
        white-space: nowrap;
        border-right: none;
        border-left: none;
        border-top: none;
        margin: 0 0.1rem;
    }
    
    .tab-button.active {
        border-bottom: 2px solid var(--primary-color);
    }
    
    /* Tab Content Mobile */
    .tab-content {
        min-height: 200px;
    }
    
    .tab-pane {
        padding: 1rem 5px !important;
    }
    
    .tab-pane h3 {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .tab-pane p,
    .tab-pane div {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        color: #cccccc !important;
    }
    
    .tab-pane ul {
        padding-left: 1rem;
    }
    
    /* Reviews Section Mobile - Stack vertically */
    .reviews-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* Reviews boxes mobile styling */
    .reviews-rating-box,
    .reviews-form-box {
        margin-bottom: 1rem !important;
    }
    
    /* Reviews list section mobile */
    .reviews-list-section {
        margin-top: 1.5rem !important;
    }
    
    /* Individual review boxes styling */
    #reviewsList > div {
        gap: 0.6rem !important;
        margin-bottom: 1rem !important;
        padding: 0.8rem !important;
    }
    
    #reviewsList > div > div:first-child {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    #reviewsList span {
        font-size: 0.8rem !important;
    }
    
    #reviewsList p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    .tab-pane li {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }

    /* Hero Section */
    .hero {
        padding: 70px 0 30px;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        padding: 0 3px;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Diagonal Slider Small Mobile */
    .diagonal-slider {
        width: 300px;
        height: 400px;
        right: -20%;
    }
    
    .slide {
        width: 200px;
        height: 150px;
    }
    
    /* Services Grid - 2 columns for small mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 3px;
        gap: 0.5rem;
    }
    
    .service-card {
        border-radius: 8px;
        min-height: 320px;
        margin: 0;
    }
    
    .service-image {
        height: 200px !important;
        margin: 0;
    }
    
    .service-info {
        padding: 0.05rem 0.4rem 0.3rem 0.4rem;
        margin: 0;
    }
    
    .service-info h3 {
        font-size: 0.65rem;
        line-height: 1.2;
        margin: 0 0 0.2rem 0;
        min-height: 1.8rem;
    }
    
    .service-description {
        font-size: 0.55rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }
    
    .service-description.short {
        min-height: 2rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .service-description-container {
        margin-bottom: 0.2rem;
    }
    
    .package-selection-home {
        margin: 0.1rem 0;
    }
    
    .service-price-rating-row {
        margin-bottom: 0.3rem;
    }
    
    .service-price {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }
    
    .service-rating {
        font-size: 0.6rem;
    }
    
    .discount-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.3rem;
    }
    
    .popularity-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.3rem;
        top: 8px;
        right: 8px;
    }
    
    .wishlist-btn {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .show-more-btn {
        font-size: 0.5rem;
        padding: 1px 0;
        margin-top: 2px;
    }
    
    /* Buttons and Touch Targets */
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-height: 48px; /* Better touch target */
        border-radius: 8px;
    }
    
    .btn-select {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .nav-icon {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Product Detail Page */
    .product-detail {
        padding: 80px 0 40px;
    }
    
    .product-content {
        padding: 0 5px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .product-info-detail h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .product-price-rating-row {
        margin-bottom: 0.5rem;
    }
    
    .product-price-detail {
        font-size: 1.1rem;
    }
    
    .product-description p {
        font-size: 0.85rem;
    }
    
    .option-select {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .product-actions .btn {
        padding: 0.7rem;
        font-size: 0.8rem;
        min-height: 42px;
    }
    
    /* Tabs */
    .tab-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        min-height: 44px;
        min-width: 110px;
        margin: 0 0.2rem;
        border-right: none;
        border-left: none;
        border-top: none;
    }
    
    .tab-content {
        padding: 0 5px;
    }
    
    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.9rem;
    }
    
    /* Cart */
    .cart-content,
    .checkout-content {
        padding: 0 10px;
    }
    
    .cart-item {
        padding: 1rem 0.8rem;
        grid-template-columns: 60px 1fr;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-info h3 {
        font-size: 0.9rem;
    }
    
    .quantity-controls button {
        min-width: 40px;
        min-height: 40px;
        font-size: 0.9rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .what-we-do-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .footer-nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
    
    /* Reviews Section Mobile - Stack vertically for small screens */
    .reviews-container {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .reviews-rating-box,
    .reviews-form-box {
        margin-bottom: 0.8rem !important;
        padding: 1rem !important;
    }
    
    .reviews-list-section {
        margin-top: 1rem !important;
    }
    
    /* Individual review boxes styling for small screens */
    #reviewsList > div {
        gap: 0.5rem !important;
        margin-bottom: 0.8rem !important;
        padding: 0.7rem !important;
    }
    
    #reviewsList > div > div:first-child {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    #reviewsList span {
        font-size: 0.75rem !important;
    }
    
    #reviewsList p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .service-info h3 {
        font-size: 0.9rem;
    }
    
    .product-info-detail h1 {
        font-size: 1.1rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.75rem;
        min-width: 100px;
        margin: 0 0.3rem;
        border-right: none;
        border-left: none;
        border-top: none;
    }
    
    .cart-item {
        grid-template-columns: 50px 1fr;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    /* Diagonal Slider Extra Small */
    .diagonal-slider {
        width: 250px;
        height: 350px;
        right: -25%;
    }
    
    .slide {
        width: 160px;
        height: 120px;
    }
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Removed problematic tab-content display rules */

.status-user {
    background: #3742fa;
    color: white;
}

.status-admin {
    background: #ff4757;
    color: white;
}

/* Cursor Splash Animation */
.cursor-splash {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.splash-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation: splashAnimation 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes splashAnimation {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4), transparent);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out;
    mix-blend-mode: screen;
}

/* Ripple effect on click */
.cursor-ripple {
    position: fixed;
    border: 2px solid rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: rippleAnimation 0.6s ease-out forwards;
}

@keyframes rippleAnimation {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Scroll hint for chatbot */
.chat-messages::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
}

/* WhatsApp Direct Link - No Widget Needed *//* Mobile-Sp
ecific Improvements */

/* Smooth Scrolling for Mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better Touch Scrolling */
.services-grid,
.product-tabs,
.cart-items {
    -webkit-overflow-scrolling: touch;
}

/* Mobile Hover States (Remove hover effects on touch devices) */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    }
    
    .service-card:hover .service-image img {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
    }
}

/* Mobile Focus States for Better Accessibility */
@media (max-width: 768px) {
    .btn:focus,
    .nav-icon:focus,
    .mobile-menu-toggle:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .tab-button:focus {
        outline: none;
        border-bottom: 2px solid var(--primary-color);
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }
}

/* Mobile Loading States */
@media (max-width: 768px) {
    .service-card,
    .cart-item,
    .product-gallery {
        transition: all 0.3s ease;
    }
    
    .service-card.loading {
        opacity: 0.7;
        pointer-events: none;
    }
}

/* Mobile Orientation Support */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .product-detail {
        padding: 70px 0 40px;
    }
    
    .main-image {
        height: 200px;
    }
}

/* High DPI Display Support */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .service-image img,
    .main-image img,
    .cart-item-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support for Mobile */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
    .mobile-menu-toggle span {
        background: var(--text-primary);
    }
    
    .nav-menu.mobile-active {
        background: var(--dark-bg);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* Reduced Motion Support */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero,
    .service-card,
    .product-gallery {
        transition: none;
    }
}

/* Mobile Print Styles */
@media print and (max-width: 768px) {
    .navbar,
    .whatsapp-float,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero,
    .product-detail {
        padding-top: 20px;
    }
    
    .service-card,
    .product-content {
        break-inside: avoid;
    }
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero {
            min-height: calc(100vh - 80px);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            -webkit-appearance: none;
            border-radius: 8px;
        }
        
        .btn {
            -webkit-appearance: none;
            border-radius: 8px;
        }
    }
}

/* Android Chrome Specific Fixes */
@media (max-width: 768px) {
    .service-card,
    .product-gallery,
    .cart-item {
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
    }
    
    .btn,
    .tab-button,
    .nav-icon {
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
    }
}/* 
/* Enhanced service image positioning */
.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    transition: all 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}/* 
Star-Burst Image Transition Effect */
.image-transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        rgba(255, 255, 255, 0.1) 60%, 
        transparent 80%);
    opacity: 0;
    z-index: 8;
    pointer-events: none;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(1px);
}

.image-transition-overlay.active {
    opacity: 1;
}

.star-burst-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.star-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: var(--size);
    text-align: center;
    line-height: 30px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0);
    opacity: 0;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 1), 
        0 0 20px rgba(255, 255, 255, 0.8), 
        0 0 30px rgba(255, 255, 255, 0.6);
    animation: starBurstOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: var(--delay);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

@keyframes starBurstOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-40px) scale(1.3);
    }
    40% {
        opacity: 0.9;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-70px) scale(1.1);
    }
    70% {
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-100px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-140px) scale(0.2);
    }
}

/* Before/After Hover Effect for AI Fashion Service */
.after-container,
.before-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.after-container {
    opacity: 1;
}

.before-container {
    opacity: 0;
}

.before-container.active {
    opacity: 1;
}

/* Video Container Styles for AI Product Manufacturing */
.after-container.video-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Image Grid Container Styles for AI Product Manufacturing */
.after-container.image-grid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.after-grid-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-variations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.variation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.variation-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* AI Product Manufacturing specific grid styles - 2x2 Layout */
.product-grid-after {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 100% !important;
}

.product-grid-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.product-grid-item .after-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
}

.product-grid-item .after-image:hover {
    transform: scale(1.05) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
}

/* Hide discount badge and fullscreen button for AI Product Manufacturing grid images */
.product-grid-item .discount-badge,
.product-grid-item .fullscreen-btn {
    display: none !important;
}

.after-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.after-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.before-image-container,
.after-image-container {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.before-image,
.after-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.before-after-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 6;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-after-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 6;
    transition: opacity 0.3s ease;
}

/* Enhanced service image container */
.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
}

.service-card:hover .service-image img {
    transform: scale(1.02);
}/* L
Simple enhanced star burst container */
.star-burst-container {
    width: 120px;
    height: 120px;
}
/* Show More/Less Button Styling */
.service-description-container {
    position: relative;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-description.short {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem;
    line-height: 1.5;
}

.show-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 8px;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-1px);
}

.show-more-btn.expanded {
    color: var(--primary-color);
}

.show-more-btn.expanded:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.service-description.short {
    margin-bottom: 0;
}

.service-description.full {
    margin-bottom: 0;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Queue and Delivery Info Styling */
.queue-delivery-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 8px 0;
    padding: 2px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.queue-info {
    display: flex;
    align-items: center;
}

.queue-count {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.delivery-info {
    display: flex;
    align-items: center;
}

.delivery-time {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.delivery-time::before {
    content: "🚀";
    font-size: 10px;
}

.queue-count::before {
    content: "⏳";
    font-size: 10px;
    margin-right: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .queue-delivery-info {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin: 3px 0 6px 0;
        padding: 2px 0;
    }
    
    .queue-count,
    .delivery-time {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .delivery-time::before,
    .queue-count::before {
        font-size: 9px;
    }
}
/* Cart Success Message */
.cart-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.success-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-icon {
    font-size: 18px;
    font-weight: bold;
}

.success-text {
    font-size: 14px;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Homepage Success Message */
.homepage-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
/* Homepage Package Selection */
.package-selection-home {
    margin: 0.3rem 0;
}

.package-select-home {
    width: 100%;
    padding: 0.8rem;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-select-home:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.package-select-home:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .package-select-home {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .service-actions-home {
        gap: 6px;
        margin-top: 0.3rem;
    }
    
    .btn-add-cart-home,
    .btn-buy-now-home {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .package-select-home {
        padding: 0.3rem;
        font-size: 0.55rem;
    }
    
    .service-actions-home {
        gap: 4px;
        margin-top: 0.3rem;
        flex-direction: column;
    }
    
    .btn-add-cart-home,
    .btn-buy-now-home {
        padding: 0.3rem 0.4rem;
        font-size: 0.5rem;
        border-radius: 3px;
    }
}
/* Homepage Service Action Buttons */
.service-actions-home {
    display: flex;
    gap: 10px;
    margin-top: 0.3rem;
    justify-content: center;
}

.btn-add-cart-home,
.btn-buy-now-home {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-add-cart-home {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid transparent;
}

.btn-add-cart-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-buy-now-home {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid transparent;
}

.btn-buy-now-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Loading state for buttons */
.btn-add-cart-home.loading,
.btn-buy-now-home.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-add-cart-home.loading::after,
.btn-buy-now-home.loading::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "..."; }
    40% { content: "...."; }
    60% { content: "....."; }
    80%, 100% { content: "..."; }
}

/* Responsive */
@media (max-width: 768px) {
    .service-actions-home {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-add-cart-home,
    .btn-buy-now-home {
        padding: 0.5rem 0.8rem;
        font-size: 12px;
    }
}
/* Address Modal Styles */
.address-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-modal-content {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.address-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-modal-header h2 {
    color: var(--text-primary);
    margin: 0;
}

.address-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.address-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.address-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.address-form .form-group {
    margin-bottom: 1rem;
}

.address-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.address-form input {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
}

.address-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.address-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.address-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-secondary);
}

.address-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.address-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.address-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .address-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .address-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .address-actions {
        flex-direction: column;
    }
}
/* Service Card Layout Improvements for Symmetry */
.service-info .package-selection-home {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-info .service-actions-home {
    margin-top: 0;
    padding-top: 0;
    flex-shrink: 0;
}

/* Ensure consistent card heights in grid */
.services-grid {
    align-items: stretch;
}

.services-grid .service-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.services-grid .service-card .service-image {
    height: 360px;
    flex-shrink: 0;
}

.services-grid .service-card .service-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Responsive adjustments for card symmetry */
@media (max-width: 768px) {
    .services-grid .service-card {
        min-height: 450px;
    }
    
    .services-grid .service-card .service-image {
        height: 200px !important;
    }
    
    .service-info h3 {
        font-size: 1rem;
        min-height: 2.8rem;
    }
    
    .service-description.short {
        min-height: 4rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 480px) {
    .services-grid .service-card {
        min-height: 520px;
    }
    
    .services-grid .service-card .service-image {
        height: 200px !important;
    }
    
    .service-info h3 {
        font-size: 0.95rem;
        min-height: 2.6rem;
    }
    
    .service-description.short {
        min-height: 3.6rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}
/* Popular Product Badges */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    z-index: 6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: popularPulse 2s infinite ease-in-out;
}

.popular-badge.popular-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.popular-badge.popular-silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.popular-badge.popular-bronze {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4);
}

@keyframes popularPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Enhanced service image positioning for badges */
.service-image {
    position: relative;
    overflow: hidden; /* Keep contained but allow badges */
}

/* Adjust existing discount badge positioning */
.discount-badge {
    z-index: 5;
}

/* Popular sorting indicator */
#sortBy option[value="popular"] {
    font-weight: 600;
}

/* Mobile responsive badges */
@media (max-width: 768px) {
    .popular-badge {
        font-size: 10px;
        padding: 3px 6px;
        top: 8px;
        right: 8px;
    }
}
/* User Dashboard Styles */
.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Orders Grid */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.order-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

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

.order-id {
    font-weight: 600;
    color: var(--text-primary);
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-confirmed { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.status-processing { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.status-in_progress { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.status-completed { background: rgba(139, 92, 246, 0.2); color: #8b5cf6; }
.status-delivered { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.status-cancelled { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

.order-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.item-info {
    flex-grow: 1;
}

.item-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.item-package {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.more-items {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.order-total {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.total-breakdown {
    font-size: 0.9rem;
    line-height: 1.4;
}

.total-breakdown div:last-child {
    font-size: 1.1rem;
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Myntra-style discount breakdown */
.discount-row {
    color: #03a685;
}

.discount-amount {
    color: #03a685 !important;
    font-weight: 600;
}

.subtotal-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.summary-row.total {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.order-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* No Orders State */
.no-orders {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-orders h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Order Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal-content {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.order-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.order-info-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.order-info-section p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.order-items-section {
    margin-bottom: 2rem;
}

.order-items-list {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.order-item-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.item-quantity {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-timeline {
    border-left: 2px solid var(--primary-color);
    padding-left: 1rem;
}

.timeline-item {
    margin-bottom: 1rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timeline-status {
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
}

.timeline-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.order-actions-section {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Profile Section */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.profile-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.profile-field label {
    font-weight: 500;
    color: var(--text-secondary);
}

.profile-field span {
    color: var(--text-primary);
}

.address-display p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .orders-grid {
        grid-template-columns: 1fr;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .profile-section {
        grid-template-columns: 1fr;
    }
    
    .order-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .order-actions {
        justify-content: center;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
}

/* Hero Banner Grid Styles - 3x2 Layout */
.hero-banner-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner-grid-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, 1fr);    /* 2 rows */
    gap: 12px;
    width: 100%;
    height: calc(100% - 60px); /* Account for label */
    padding: 15px;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
}

.grid-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #f5f5f5;
}

.grid-product-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    z-index: 2;
    position: relative;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .hero-banner-grid-images {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        grid-template-rows: repeat(3, 1fr);    /* 3 rows */
        gap: 10px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-banner-grid-images {
        grid-template-columns: 1fr; /* 1 column */
        grid-template-rows: repeat(6, 1fr); /* 6 rows */
        gap: 8px;
        padding: 10px;
    }
    
    .grid-product-image {
        min-height: 80px; /* Minimum height for mobile */
    }
}
/* Fix for Hero Banner Grid Display */
.before-container.hero-banner-grid {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 5;
}

.before-container.hero-banner-grid.active {
    display: flex !important;
    opacity: 1 !important;
}

.before-container.hero-banner-grid .before-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
/* Enhanced Hero Banner Grid Styles */
.hero-banner-grid-images {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 90% !important;
    height: 80% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.grid-product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: #f0f0f0 !important;
    display: block !important;
    min-height: 100px !important;
}

/* Ensure before container shows properly */
.before-container.hero-banner-grid.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* Hidden service class */
.hidden-service {
    display: none !important;
}

/* Ensure hidden services stay hidden even with JavaScript manipulation */
.service-card.hidden-service {
    display: none !important;
    visibility: hidden !important;
}

/* Responsive grid adjustments for AI Product Manufacturing */
@media (max-width: 768px) {
    .product-grid-after {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .product-grid-after {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(4, 1fr) !important;
        gap: 8px !important;
        padding: 10px !important;
    }
    
    .product-grid-item .after-image {
        border-radius: 6px !important;
    }
}
/* Quantity Selector Styles for AI Services Page */
.quantity-selector-home {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector-home label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.quantity-controls-home {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn-home {
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    transition: all 0.2s ease;
}

.qty-btn-home:hover {
    background: #e9ecef;
    color: #333;
}

.qty-btn-home:active {
    background: #dee2e6;
}

.quantity-input-home {
    border: none;
    width: 60px;
    height: 35px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: white;
}

.quantity-input-home:focus {
    outline: none;
    background: #f8f9fa;
}

/* Total Price Display */
.total-price-display {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quantity-selector-home {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .quantity-controls-home {
        align-self: stretch;
        justify-content: center;
    }
    
    .quantity-input-home {
        width: 80px;
    }
}

/* Privacy Policy Page */
.privacy-policy-section {
    padding: 120px 0 80px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px 0;
}

.privacy-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.privacy-section ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.privacy-contact {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
    border: 1px solid rgba(74, 144, 226, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.privacy-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.privacy-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.privacy-contact ul {
    list-style: none;
    padding-left: 0;
}

.privacy-contact ul li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.privacy-contact ul li strong {
    color: var(--text-primary);
    margin-right: 10px;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 80px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-intro {
        font-size: 1.1rem;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}
/* Terms and Conditions Page */
.terms-conditions-section {
    padding: 120px 0 80px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.terms-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.terms-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.effective-date {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1rem;
}

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

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.terms-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px 0;
}

.terms-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 10px 0;
}

.terms-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.terms-section ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.terms-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Company Information Styling */
.company-info {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(80, 200, 120, 0.05));
    border: 1px solid rgba(74, 144, 226, 0.2);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.company-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.address-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.address-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-block h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.address-block p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-contact {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
    border: 1px solid rgba(74, 144, 226, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.terms-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.terms-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.terms-contact ul {
    list-style: none;
    padding-left: 0;
}

.terms-contact ul li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.terms-contact ul li strong {
    color: var(--text-primary);
    margin-right: 10px;
}

/* Responsive Design for Terms and Conditions */
@media (max-width: 768px) {
    .terms-conditions-section {
        padding: 80px 0 60px;
    }
    
    .terms-header h1 {
        font-size: 2.2rem;
    }
    
    .terms-intro {
        font-size: 1.1rem;
    }
    
    .terms-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .address-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .address-block {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-section {
        padding: 15px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .address-block {
        padding: 12px;
    }
}