* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Android-specific optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}

/* Smooth scrolling for Android */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-context-menu: none !important;
    context-menu: none !important;
}

.logo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: auto;
}

.logo-link {
    position: relative;
    display: inline-block;
}

.logo-image {
    pointer-events: none !important;
}

.logo-image {
    height: 50px;
    width: 100px;
    object-fit: cover;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 69, 0, 0.1));
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(8px);
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    pointer-events: auto;
    -webkit-touch-callout: none !important;
    -webkit-user-drag: none !important;
    transition: transform 0.2s ease;
}

@media (min-width: 768px) {
    .logo-image {
        height: 60px;
        width: 120px;
        border: 3px solid #ff6b35;
        border-radius: 15px;
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4), inset 0 0 10px rgba(255, 107, 53, 0.2);
        backdrop-filter: blur(10px);
    }
}

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

@media (min-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text {
    color: #fff;
}

.logo-accent {
    color: #ff6b35;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 1.5rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-menu.active {
    display: flex;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 2rem;
        background: none;
        backdrop-filter: none;
        padding: 0;
        border: none;
        transform: none;
    }
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 16px;
    border-radius: 8px;
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:active {
    background-color: rgba(255, 107, 53, 0.1);
    transform: scale(0.98);
}

@media (min-width: 768px) {
    .nav-link {
        padding: 8px 12px;
        font-size: 1rem;
        min-height: auto;
    }
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger:active {
    background-color: rgba(255, 107, 53, 0.1);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, #ff6b35, transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 53, 0.3), transparent),
                      radial-gradient(1px 1px at 90px 40px, #ff6b35, transparent),
                      radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 53, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleMove 20s linear infinite;
    opacity: 0.1;
}

@keyframes particleMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
    }
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.accent {
    color: #ff6b35;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    line-height: 1.6;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.3rem;
        max-width: 500px;
    }
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 2rem;
        justify-content: flex-start;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
    min-width: 140px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.btn-primary:active, .btn-secondary:active {
    transform: scale(0.98);
}

@media (min-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 15px 35px;
        min-width: auto;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-secondary {
    border: 2px solid #ff6b35;
    color: #ff6b35;
    background: transparent;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 300px;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero-visual {
        height: 500px;
        margin-top: 0;
    }
}

.design-showcase {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .design-showcase {
        height: 300px;
        margin-bottom: 2rem;
    }
}

.showcase-item {
    position: absolute;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 80px;
    min-height: 80px;
}

.showcase-item:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .showcase-item {
        padding: 1.5rem;
        gap: 0.5rem;
        min-width: auto;
        min-height: auto;
    }
}

.showcase-item:hover {
    border-color: #ff6b35;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.item-1 {
    top: 20px;
    left: 50px;
    animation: float 6s ease-in-out infinite;
}

.item-2 {
    top: 80px;
    right: 30px;
    animation: float 6s ease-in-out infinite 1.5s;
}

.item-3 {
    bottom: 80px;
    left: 20px;
    animation: float 6s ease-in-out infinite 3s;
}

.item-4 {
    bottom: 20px;
    right: 80px;
    animation: float 6s ease-in-out infinite 4.5s;
}

.item-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
    .item-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

.showcase-item span {
    font-size: 0.7rem;
    color: #ff6b35;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .showcase-item span {
        font-size: 0.9rem;
    }
}

/* Floating Shapes */

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff6b35, #ff4500);
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    text-align: center;
}

.scroll-text {
    font-size: 0.9rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
    transform: rotate(45deg);
    margin: 0 auto;
}

/* More Info Section */
.more-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.more-info-section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-header h2 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 1.2rem;
        max-width: 600px;
        padding: 0;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }
}

.info-card {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #444;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
    .info-card {
        padding: 3rem;
        border-radius: 25px;
        min-height: 500px;
        transition: all 0.4s ease;
    }
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.8s ease;
}

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

.info-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

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

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 0;
}

.card-content {
    margin-bottom: 2rem;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 1rem;
}

.card-content::-webkit-scrollbar {
    width: 4px;
}

.card-content::-webkit-scrollbar-track {
    background: #333;
    border-radius: 2px;
}

.card-content::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 2px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-bullet {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.service-details strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 0.5rem;
}

.service-details p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.highlight-text strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 0.3rem;
}

.highlight-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.method-icon {
    font-size: 1.5rem;
}

.method-info strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 0.3rem;
}

.method-info p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.info-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem 2rem;
    border: 2px solid #ff6b35;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: stretch;
}

.info-link:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.link-arrow {
    transition: transform 0.3s ease;
}

.info-link:hover .link-arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .faq-section {
        margin-top: 6rem;
        padding: 0;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #222, #111);
    border: 1px solid #444;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
    .faq-item {
        border-radius: 15px;
    }
}

.faq-item:hover {
    border-color: #ff6b35;
}

.faq-question {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 60px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 1.5rem 2rem;
        min-height: auto;
    }
}

.faq-question:active {
    background: rgba(255, 107, 53, 0.15);
    transform: scale(0.98);
}

@media (hover: hover) {
    .faq-question:hover {
        background: rgba(255, 107, 53, 0.1);
    }
}

.faq-question span {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
    margin-right: 1rem;
}

@media (min-width: 768px) {
    .faq-question span {
        font-size: 1.1rem;
    }
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .faq-icon {
        width: 30px;
        height: 30px;
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 107, 53, 0.05);
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .faq-answer p {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #ff4500;
}

/* Mobile-specific FAQ improvements */
@media (max-width: 480px) {
    .faq-section {
        margin-top: 3rem;
    }
    
    .faq-question {
        padding: 1rem;
        min-height: 56px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
        margin-right: 0.8rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Page Content */
.page-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

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

.page-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* About Page */
.about-hero, .services-hero, .skills-hero, .contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    margin-top: 70px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text h2 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.visual-card {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.visual-card h3 {
    margin-bottom: 1rem;
}

/* Services Page */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 768px) {
    .services-container {
        padding: 2rem;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .services-header {
        margin-bottom: 3rem;
    }
}

.services-header h1,
.services-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .services-header h1,
    .services-header h2 {
        font-size: 2.5rem;
    }
}

.services-header p {
    font-size: 1rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .services-header p {
        font-size: 1.1rem;
    }
}

.brands-section {
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .brands-section {
        margin: 4rem 0;
    }
}

.brands-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

@media (min-width: 768px) {
    .brands-section h2 {
        font-size: 2rem;
    }
}

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

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 80px;
}

@media (min-width: 768px) {
    .brand-logo {
        padding: 1.5rem;
        min-height: 100px;
    }
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.brand-logo svg {
    width: 60px;
    height: 30px;
    fill: currentColor;
}

@media (min-width: 768px) {
    .brand-logo svg {
        width: 80px;
        height: 40px;
    }
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

.service-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.service-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .service-card h3 {
        font-size: 1.3rem;
    }
}

.service-card p {
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-icon {
        font-size: 3rem;
    }
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Portfolio Section */
.portfolio-section {
    margin: 3rem 0;
}

.portfolio-item:hover {
    transform: translateY(-5px) scale(1.02);
}

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

@media (min-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.portfolio-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .portfolio-item {
        border-radius: 15px;
        max-width: 350px;
        margin: 0 auto;
    }
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-info {
    display: none;
}

/* Image Protection */
.portfolio-image,
.modal-image {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-context-menu: none;
    pointer-events: auto;
}

.portfolio-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.image-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
    box-sizing: border-box;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.modal-image {
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: block;
}

@media (max-width: 768px) {
    .image-modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }
    
    .modal-image {
        max-width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
    }
}

@media (max-width: 480px) {
    .image-modal {
        padding: 0.25rem;
    }
    
    .modal-content {
        max-width: calc(100vw - 0.5rem);
        max-height: calc(100vh - 0.5rem);
    }
    
    .modal-image {
        max-width: calc(100vw - 0.5rem);
        max-height: calc(100vh - 0.5rem);
    }
}

.close-modal {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    z-index: 10001;
}

.close-modal:hover {
    background: #ff4500;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .close-modal {
        top: 0.5rem;
        right: 0.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .close-modal {
        top: 0.25rem;
        right: 0.25rem;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

/* Skills Page */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.skills-category h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 4px;
    width: 0;
    animation: fillBar 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.tools-section {
    margin-top: 4rem;
}

.tools-section h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tool-item {
    background: #222;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Contact Page */
.contact-professional {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .contact-professional {
        margin: 4rem auto;
        padding: 0 2rem;
    }
}

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

@media (min-width: 768px) {
    .contact-header {
        margin-bottom: 3rem;
    }
}

.contact-header h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .contact-header h3 {
        font-size: 2.5rem;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-card {
        border-radius: 20px;
        padding: 2.5rem;
        min-height: auto;
    }
}

.contact-card:active {
    transform: scale(0.98);
    border-color: #ff6b35;
}

@media (hover: hover) {
    .contact-card:hover {
        transform: translateY(-10px);
        border-color: #ff6b35;
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
        z-index: 10;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    z-index: 2;
}

@media (min-width: 768px) {
    .card-icon svg {
        width: 30px;
        height: 30px;
    }
}

.phone-icon {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.email-icon {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.card-content h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .card-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
}

.card-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .card-content p {
        font-size: 1.1rem;
    }
}

.copy-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #ff6b35;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .copy-indicator {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
}

@media (hover: hover) {
    .contact-card:hover .copy-indicator {
        opacity: 1;
        transform: scale(1.2);
    }
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

@media (hover: hover) {
    .contact-card:hover::after {
        left: 100%;
    }
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.phone-icon::before,
.email-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
    pointer-events: none;
}

.email-icon::before {
    animation-delay: 1.5s;
}

.contact-center {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    text-align: center;
    max-width: 600px;
}

.contact-info h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #222;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #444;
}

.contact-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.copy-hint {
    font-size: 0.8rem;
    color: #ff6b35;
    opacity: 0.7;
    margin-top: 0.5rem;
    display: block;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.contact-details h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.form {
    background: #222;
    padding: 2rem;
    border-radius: 15px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: none;
    overflow: hidden;
}

/* Enhanced Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes fillBar {
    to {
        width: var(--width);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
}

/* Animation Classes */
.animate-slide-in {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }

.animate-contact {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-contact:nth-child(1) { animation-delay: 0.2s; }
.animate-contact:nth-child(2) { animation-delay: 0.4s; }
.animate-contact:nth-child(3) { animation-delay: 0.6s; }

.animate-form {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 1s ease-out 0.3s forwards;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    animation: glow 2s infinite;
}

.btn-primary:hover,
.btn-secondary:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Footer */
.footer {
    background: #111;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid #ff6b35;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4500, #ff6b35);
    animation: footerGlow 2s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.footer p {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.footer p:hover {
    color: #ff6b35;
    opacity: 1;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 480px) {
    .more-info-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .card-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .service-features {
        gap: 0.3rem;
    }
    
    .feature-tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .about-grid,
    .contact-grid,
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .info-card:hover {
        transform: none;
        border-color: #333;
        box-shadow: none;
    }
    
    .showcase-item:hover {
        transform: none;
        border-color: #333;
        box-shadow: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    
    .nav-link:hover {
        background-color: transparent;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .faq-question:hover {
        background: transparent;
    }
    
    .faq-item:hover {
        border-color: #444;
    }
}

/* Performance optimizations for Android */
@media screen and (max-width: 768px) {
    .hero-particles {
        display: none;
    }
    
    .floating-shapes {
        display: none;
    }
    
    * {
        will-change: auto;
    }
    
    .showcase-item {
        animation: none;
    }
    
    .shape {
        animation: none;
    }
}