/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
    font-size: 1.125rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    gap: 8px;
    min-height: 56px;
}

.btn-primary {
    background: #c00d00;
    color: white;
    box-shadow: 0 4px 20px rgba(192, 13, 0, 0.3);
}

.btn-primary:hover {
    background: #a00b00;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 13, 0, 0.4);
}

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

.btn-secondary:hover {
    background: #c00d00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 13, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #a0a0a0;
    border: 2px solid #333333;
}

.btn-outline:hover {
    background: #c00d00;
    color: white;
    border-color: #c00d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo h2 {
    color: #c00d00;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    visibility: visible;
    opacity: 1;
}

.nav-link {
    text-decoration: none;
    color: #a0a0a0;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #c00d00;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c00d00;
    border-radius: 2px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    /* Ensure navigation is always visible on desktop */
    @media (min-width: 769px) {
        .nav-menu {
            visibility: visible !important;
            opacity: 1 !important;
            position: static !important;
            left: auto !important;
            top: auto !important;
            width: auto !important;
            height: auto !important;
            background: transparent !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            flex-direction: row !important;
            justify-content: flex-end !important;
            padding: 0 !important;
            overflow: visible !important;
        }
        
        .nav-menu li {
            opacity: 1 !important;
            transform: none !important;
            margin: 0 !important;
        }
        
        /* Ensure active navigation underline is always visible */
        .nav-link.active::after {
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
        }
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .bar {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(192, 13, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(192, 13, 0, 0.08) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c00d00;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

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

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

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

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(70vh - 120px);
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 13, 0, 0.1);
    border: 1px solid rgba(192, 13, 0, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c00d00;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(135deg, #c00d00 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #c00d00;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.browser-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
}

.browser-header {
    background: #2a2a2a;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #333333;
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.browser-url {
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #a0a0a0;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
}

.browser-content {
    padding: 1.5rem;
    background: #0a0a0a;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 50%;
}

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

.stat-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.25rem;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.dashboard-chart {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
}

.chart-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #c00d00, #ff4444);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out;
    min-height: 20px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(192, 13, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.floating-element.element-4 {
    top: 30%;
    left: 10%;
    animation-delay: 4.5s;
}

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

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(192, 13, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.element-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-by h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.trusted-by p {
    text-align: center;
    margin-bottom: 3rem;
    color: #a0a0a0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.client-logo {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    color: #a0a0a0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: #c00d00;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 0;
}

/* About Section */
.about {
    background: #0a0a0a;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(192, 13, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #a0a0a0;
}

.about-features {
    margin-top: 3rem;
}

.feature-item {
    margin-bottom: 3rem;
}

.feature-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: #a0a0a0;
    line-height: 1.7;
}

.sdlc-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sdlc-section p {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.sdlc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #c00d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.step span {
    color: #ffffff;
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
}

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

.stat-card p {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #c00d00;
    margin-bottom: 2rem;
}

.stat-chart {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: scaleY(1.1);
}

.chart-labels {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #a0a0a0;
}

.mission-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
}

.mission-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: #a0a0a0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(192, 13, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: #a0a0a0;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: #0a0a0a;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(192, 13, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

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

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 13, 0, 0.15);
    border-color: rgba(192, 13, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(192, 13, 0, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-features li {
    color: #c0c0c0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: #c00d00;
    font-weight: bold;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Full-width service card that spans all columns */
.service-card.full-width {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.service-card.full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 13, 0, 0.02) 0%, transparent 50%, rgba(192, 13, 0, 0.02) 100%);
    pointer-events: none;
}

.service-card.full-width::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c00d00 20%, #e60000 50%, #c00d00 80%, transparent 100%);
}

.service-card.full-width .service-icon {
    margin: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(192, 13, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.full-width .service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card.full-width:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(192, 13, 0, 0.4);
}

.service-card.full-width:hover .service-icon::before {
    opacity: 0.2;
}

.service-card.full-width .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.service-card.full-width h3 {
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
}

.service-card.full-width h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c00d00 0%, #e60000 100%);
    border-radius: 1px;
}

.service-card.full-width p {
    margin-bottom: 1.25rem;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b0b0b0;
    font-weight: 400;
}

.service-card.full-width .service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
    padding: 0;
    list-style: none;
}

.service-card.full-width .service-features li {
    background: linear-gradient(135deg, rgba(192, 13, 0, 0.06) 0%, rgba(192, 13, 0, 0.02) 100%);
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(192, 13, 0, 0.1);
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card.full-width .service-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c00d00 0%, #e60000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card.full-width .service-features li:hover {
    background: linear-gradient(135deg, rgba(192, 13, 0, 0.12) 0%, rgba(192, 13, 0, 0.06) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 13, 0, 0.2);
    border-color: rgba(192, 13, 0, 0.2);
}

.service-card.full-width .service-features li:hover::before {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .service-card.full-width .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-card.full-width .service-features {
        grid-template-columns: 1fr;
    }
}

.service-card.full-width .btn {
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border: none;
    color: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-card.full-width .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 13, 0, 0.4);
}

.service-card.full-width .btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .service-card.full-width {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .service-card.full-width .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-card.full-width .btn {
        align-self: center;
    }
    
    .service-card.full-width h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Project Hero */
.project-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

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

.project-breadcrumb {
    margin-bottom: 2rem;
}

.project-breadcrumb a {
    color: #c00d00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-breadcrumb a:hover {
    color: #e60000;
}

.project-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.project-hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.meta-item i {
    color: #c00d00;
}

.project-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Project Overview */
.project-overview {
    padding: 80px 0;
    background: #0f0f0f;
}

.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.project-content h3 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.project-content p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.feature-list i {
    color: #c00d00;
    font-size: 1.1rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.detail-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.detail-card p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.detail-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c00d00;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(192, 13, 0, 0.1);
    color: #c00d00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(192, 13, 0, 0.2);
}

/* Project Screenshots */
.project-screenshots {
    padding: 80px 0;
    background: #0a0a0a;
}

.project-screenshots h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

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

.screenshot-mockup {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-content {
    position: relative;
    overflow: hidden;
}

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

.screenshot-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.screenshot-item p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Project Results */
.project-results {
    padding: 80px 0;
    background: #0f0f0f;
}

.project-results h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.result-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon i {
    font-size: 2rem;
    color: white;
}

.result-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.result-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: #0a0a0a;
}

.target-audience h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.audience-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.audience-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-links {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 13, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(192, 13, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: #c00d00;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: #a0a0a0;
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
}

/* Enhanced form features */
.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2) !important;
}

.field-error {
    color: #f44336;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #333333;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #0a0a0a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c00d00;
    box-shadow: 0 0 0 3px rgba(192, 13, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

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

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333333;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #c00d00;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.method-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.method-content p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.method-content span {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.social-links h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* Business Hours Styles */
.business-hours {
    margin: -4rem 0 1.5rem 0;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333333;
}

.business-hours h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
}

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

.hours-item .day {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.hours-item .time {
    color: #c00d00;
    font-weight: 600;
    font-size: 1rem;
}

.hours-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #c00d00;
    color: white;
    border-color: #c00d00;
    transform: translateY(-2px);
}

.contact-form-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
}

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

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

.form-header p {
    color: #a0a0a0;
    margin: 0;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #333333;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #0a0a0a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c00d00;
    box-shadow: 0 0 0 3px rgba(192, 13, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0a0;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #333333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #c00d00;
    border-color: #c00d00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000000;
    color: #a0a0a0;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: #c00d00;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666666;
    margin: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c00d00;
}

/* New Footer Design */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #a0a0a0;
    padding: 5rem 0 2rem;
    border-top: 1px solid #333333;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(192, 13, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo h2 {
    color: #c00d00;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-logo p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

.footer-social .social-link {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social .social-link:hover {
    background: #c00d00;
    color: white;
    border-color: #c00d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #c00d00;
    transform: translateX(5px);
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(192, 13, 0, 0.05);
    border-color: rgba(192, 13, 0, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(192, 13, 0, 0.2);
}

.contact-details h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.contact-details p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-bottom-content p {
    color: #666666;
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    margin-left: auto !important;
}

.footer-bottom-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #c00d00;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(192, 13, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(192, 13, 0, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Introduction Section */
.introduction {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 13, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Navigation Section */
.page-navigation {
    padding: 5rem 0;
    background: #1a1a1a;
    position: relative;
}

.page-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 13, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.nav-card {
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(192, 13, 0, 0.15);
    border-color: rgba(192, 13, 0, 0.3);
}

.nav-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.nav-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.nav-card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.nav-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c00d00;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-card-link:hover {
    color: #e60000;
    transform: translateX(5px);
}

.nav-card-link i {
    transition: transform 0.3s ease;
}

.nav-card-link:hover i {
    transform: translateX(3px);
}

/* Navigation Card Preview Content */
.nav-card-preview {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.preview-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

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

.preview-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #c00d00;
    margin-bottom: 0.25rem;
}

.preview-stat .stat-label {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.preview-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-tag {
    background: rgba(192, 13, 0, 0.1);
    border: 1px solid rgba(192, 13, 0, 0.3);
    color: #c00d00;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.preview-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.project-preview {
    text-align: center;
}

.project-image {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.project-preview span {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.preview-tech {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #0a0a0a;
    border-radius: 8px;
    border: 1px solid #333333;
}

.tech-item i {
    color: #c00d00;
    font-size: 1rem;
}

.tech-item span {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.preview-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.preview-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.preview-contact .contact-item i {
    color: #c00d00;
    font-size: 0.9rem;
    width: 16px;
}

.preview-text {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Section Preview Styles */
.section-preview {
    padding: 5rem 0;
    position: relative;
}

.section-preview:nth-child(even) {
    background: #1a1a1a;
}

.section-preview:nth-child(odd) {
    background: #0a0a0a;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.preview-text p {
    font-size: 1.125rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #c00d00;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.preview-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.service-item i {
    color: #c00d00;
    font-size: 1.25rem;
}

.service-item span {
    color: #ffffff;
    font-weight: 600;
}

.preview-projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.project-item:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.project-image {
    width: 100%;
    height: 120px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.project-mockup {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    position: relative;
}

.mockup-header {
    background: #2a2a2a;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #333333;
}

.mockup-dots {
    display: flex;
    gap: 0.25rem;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-content {
    padding: 0.75rem;
    height: calc(100% - 2rem);
}

.mockup-nav {
    height: 20px;
    background: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mockup-hero {
    height: 30px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.mockup-cards {
    display: flex;
    gap: 0.25rem;
    height: calc(100% - 60px);
}

.mockup-card {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 4px;
}

.project-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-item p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.preview-tech {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-category h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(192, 13, 0, 0.1);
    border: 1px solid rgba(192, 13, 0, 0.3);
    color: #c00d00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.preview-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.preview-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.preview-contact .contact-item i {
    color: #c00d00;
    font-size: 1.25rem;
    width: 24px;
}

.preview-contact .contact-item h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.preview-contact .contact-item p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

/* Preview Visuals */
.team-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
}

.team-member span {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.service-card-preview {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-card-preview h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card-preview p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.project-showcase {
    width: 100%;
    max-width: 700px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-device {
    width: 600px;
    height: 450px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 25px;
    padding: 15px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.screen-header {
    background: #2a2a2a;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333333;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) {
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #28ca42;
}

.screen-body {
    padding: 0;
    height: calc(100% - 40px);
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 0 0 15px 15px;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.dashboard-image:hover {
    transform: scale(1.3);
}


.tech-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-logo {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c00d00;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.tech-logo:hover {
    border-color: #c00d00;
    transform: scale(1.1);
}

.contact-form-preview {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    max-width: 300px;
}

.form-field {
    height: 40px;
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-field.large {
    height: 80px;
}

.form-button {
    height: 40px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 8px;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 13, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: translateX(3px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes chartGrow {
    0% {
        height: 0%;
    }
    100% {
        height: var(--height, 60%);
    }
}

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

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

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

/* Additional Page Styles */
.about-detail {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.values {
    margin-top: 3rem;
}

.values h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.value-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #c00d00;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
}

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

.journey-item {
    text-align: center;
    padding: 1.5rem;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.journey-number {
    font-size: 2rem;
    font-weight: 800;
    color: #c00d00;
    margin-bottom: 0.5rem;
}

.journey-label {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
}

.team-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.team-member {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
}

.member-image {
    width: 100px;
    height: 100px;
    background: #c00d00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.member-role {
    color: #c00d00;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #c00d00;
    color: white;
    border-color: #c00d00;
}

.process-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(192, 13, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c00d00 0%, #e60000 100%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
    border: 4px solid #0a0a0a;
}

.step-content {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(192, 13, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.step-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.step-features li {
    color: #a0a0a0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c00d00;
    font-weight: bold;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(192, 13, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: #1a1a1a;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 13, 0, 0.15);
    border-color: rgba(192, 13, 0, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.advantage-card p {
    color: #a0a0a0;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.services-overview {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.service-features li {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: #c00d00;
    font-weight: bold;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

.tech-stack {
    padding: 80px 0;
    background: #0a0a0a;
}

.tech-categories {
    display: grid;
    gap: 3rem;
}

.tech-category {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: #c00d00;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-header h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-header p {
    color: #a0a0a0;
    margin: 0;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-item:hover {
    border-color: #c00d00;
    transform: translateY(-2px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: #c00d00;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tech-icon i {
    color: white;
    font-size: 1.5rem;
    display: block;
}

.tech-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tech-item p {
    color: #a0a0a0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.why-tech {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.why-item {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #c00d00;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.why-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-item p {
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
}

.portfolio-filter-section {
    padding: 40px 0;
    background: #0a0a0a;
    border-bottom: 1px solid #333333;
}

.portfolio-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #333333;
    background: #1a1a1a;
    color: #a0a0a0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c00d00;
    color: white;
    border-color: #c00d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 13, 0, 0.3);
}

.latest-projects-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
}

.portfolio-item {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 13, 0, 0.15);
    border-color: rgba(192, 13, 0, 0.2);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 13, 0, 0.9) 0%, rgba(230, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-link {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.portfolio-link:hover {
    background: white;
    color: #c00d00;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #c00d00;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.portfolio-content p {
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.meta-item {
    color: #666666;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: #c00d00;
}

.testimonials-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.testimonial-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
}

.testimonial-content p {
    color: #a0a0a0;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    background: #c00d00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #a0a0a0;
    margin: 0;
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333333;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #c00d00;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #c00d00;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c00d00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c00d00;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: #a0a0a0;
    margin-bottom: 0.75rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: #c00d00;
    font-weight: bold;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-mockup {
        transform: none;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .browser-content {
        padding: 1.5rem;
    }
    
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-section {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-methods {
        margin-bottom: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .method-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .social-links {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .business-hours {
        margin: -2rem 0 1.5rem 0;
        padding: 1.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .hours-item .time {
        font-size: 0.9rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
        height: calc(100% - 120px);
        top: 60px;
    }
    
    .step-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 6rem 0 2rem 0;
        z-index: 999;
        overflow-y: auto;
        visibility: visible;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: calc(100% - 2rem);
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(192, 13, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    .nav-link:hover {
        background: rgba(192, 13, 0, 0.1);
        color: #c00d00;
        transform: translateX(5px);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile menu backdrop */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sdlc-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        margin-left: 0 !important;
    }
    
    .nav-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-card {
        padding: 2rem 1.5rem;
    }
    
    .preview-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .preview-projects {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .project-item {
        padding: 1rem !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .project-image {
        height: 100px !important;
        width: 100% !important;
    }
    
    .preview-tech {
        grid-template-columns: 1fr;
    }
    
    .preview-services {
        justify-content: center;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .preview-stats {
        justify-content: center;
    }
    
    .preview-services {
        grid-template-columns: 1fr;
    }
    
    .project-showcase {
        max-width: 100%;
        height: 300px;
    }
    
    .showcase-device {
        width: 100%;
        max-width: 300px;
        height: 250px;
        padding: 10px;
    }
    
    .project-mockup {
        padding: 0.25rem;
    }
    
    .mockup-header {
        padding: 0.25rem 0.5rem;
    }
    
    .mockup-dots span {
        width: 4px;
        height: 4px;
    }
    
    .mockup-content {
        padding: 0.5rem;
    }
    
    .mockup-nav {
        height: 12px;
        margin-bottom: 0.25rem;
    }
    
    .mockup-hero {
        height: 20px;
        margin-bottom: 0.25rem;
    }
    
    .mockup-cards {
        gap: 0.125rem;
    }
    
    .project-item h4 {
        font-size: 1rem;
    }
    
    .project-item p {
        font-size: 0.85rem;
    }
    
    .preview-tech {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-preview {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tech-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        padding: 5rem 0 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .bar {
        width: 22px;
        height: 2.5px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .preview-projects {
        gap: 1rem;
    }
    
    .project-item {
        padding: 1rem;
    }
    
    .project-image {
        height: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .sdlc-steps {
        grid-template-columns: 1fr;
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        gap: 1rem;
    }
    
    .stat-card,
    .mission-card {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .contact-method {
        margin-bottom: 1rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .business-hours {
        padding: 1rem;
        margin: -1.5rem 0 1rem 0;
    }
    
    .business-hours h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hours-item .day {
        font-size: 0.9rem;
    }
    
    .hours-item .time {
        font-size: 0.85rem;
    }
    
    .hours-note {
        font-size: 0.8rem;
    }
}

/* ========================================
   TEMPLATES PAGE STYLES
======================================== */


/* Template Categories */
.template-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #ff4444;
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.1);
}

.category-card i {
    font-size: 1.5rem;
    color: #ff4444;
}

.category-card h3 {
    font-size: 1rem;
    margin: 0;
    color: #ffffff;
}

.template-count {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Featured Templates */
.featured-templates {
    padding: 4rem 0;
}

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

.template-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.template-card:hover {
    transform: translateY(-4px);
    border-color: #ff4444;
    box-shadow: 0 10px 20px rgba(255, 68, 68, 0.1);
}

.template-preview {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.template-mockup {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.mockup-header {
    height: 24px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.mockup-dots {
    display: flex;
    gap: 4px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #adb5bd;
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #28ca42;
}

.mockup-content {
    height: calc(100% - 24px);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-placeholder {
    text-align: center;
    color: #6c757d;
}

.template-placeholder i {
    font-size: 2rem;
    display: block;
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.template-preview:hover .template-overlay {
    opacity: 1;
}

.template-info {
    padding: 1.5rem;
}

.template-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.template-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.template-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff4444;
}

.template-category {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.template-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
}

.template-preview-btn,
.template-buy-btn {
    flex: 1;
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    white-space: nowrap;
    min-width: 0;
    height: 2.2rem;
}

.template-preview-btn i,
.template-buy-btn i {
    font-size: 0.8rem;
}

.template-preview-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.template-preview-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.template-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

/* Features & Pricing Section */
.features-pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.features-section h2,
.pricing-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 68, 68, 0.1);
}

.feature-item i {
    color: #ff4444;
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
    border: 2px solid #ff4444;
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.2);
    max-width: 300px;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 68, 68, 0.3);
}

.pricing-card.featured {
    border-color: #ff4444;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.08) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff4444;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #ff4444;
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.1);
}

.pricing-card.featured {
    border-color: #ff4444;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #ff4444;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: #ff4444;
    font-size: 0.9rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design for Templates */
@media (max-width: 768px) {
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .template-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
        scale: 1;
        border-color: #c00d00;
    }
    
    .featured-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .pricing-card .price {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .template-grid {
        grid-template-columns: 1fr;
    }
    
    .template-preview {
        height: 150px;
    }
    
    .template-info {
        padding: 1rem;
    }
    
    .template-buttons {
        gap: 0.4rem;
    }
    
    .template-preview-btn,
    .template-buy-btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
        letter-spacing: 0.2px;
        gap: 0.3rem;
        height: 2rem;
    }
    
    .template-preview-btn i,
    .template-buy-btn i {
        font-size: 0.7rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .pricing-grid {
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .pricing-card .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .features-pricing {
        padding: 3rem 0;
    }
}

/* Templates Preview Section */
.templates-preview {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.feature-item i {
    color: #c00d00;
    font-size: 1.1rem;
    width: 20px;
}

.template-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.template-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.template-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c00d00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(192, 13, 0, 0.3);
}

.badge-text {
    display: block;
}

@media (max-width: 768px) {
    .template-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .template-badge {
        top: 15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Featured Template Card */
.featured-template {
    border: 2px solid #c00d00;
    box-shadow: 0 10px 30px rgba(192, 13, 0, 0.2);
}

/* Latest Templates Section */
.latest-templates-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.latest-templates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(192, 13, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(192, 13, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.templates-showcase {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.template-hero-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(192, 13, 0, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(192, 13, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.template-hero-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 13, 0, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(192, 13, 0, 0.2);
}

.template-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.template-hero-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.template-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #c00d00 0%, #e60000 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(192, 13, 0, 0.3);
    width: fit-content;
}

.badge-icon {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.template-hero-info h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #c00d00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.template-hero-description {
    font-size: 1.125rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 0;
}

.template-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(192, 13, 0, 0.05);
    border: 1px solid rgba(192, 13, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(192, 13, 0, 0.1);
    border-color: rgba(192, 13, 0, 0.2);
    transform: translateY(-2px);
}

.hero-feature i {
    color: #c00d00;
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.hero-feature span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.template-hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c00d00;
    line-height: 1;
}

.category-large {
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 500;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    min-height: 56px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-large i {
    margin-right: 0.5rem;
}

.template-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-showcase-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.template-device-mockup {
    position: relative;
    z-index: 2;
}

.device-frame {
    background: #1a1a1a;
    border: 3px solid #333333;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.device-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.device-screen {
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
}

.template-hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.device-frame:hover .template-hero-screenshot {
    transform: scale(1.05);
}

.device-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.template-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(192, 13, 0, 0.1) 0%, rgba(192, 13, 0, 0.05) 100%);
    border: 1px solid rgba(192, 13, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c00d00;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-element.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

.floating-element.element-3 {
    top: 50%;
    right: -5%;
    animation-delay: 4s;
}

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

/* Template Preview Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333333;
    background: #0a0a0a;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.version-switcher {
    display: flex;
    gap: 0.5rem;
}

.version-btn {
    padding: 0.5rem 1rem;
    background: #2a2a2a;
    color: #a0a0a0;
    border: 1px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.version-btn:hover {
    background: #333333;
    color: #ffffff;
}

.version-btn.active {
    background: #c00d00;
    color: #ffffff;
    border-color: #c00d00;
}

.close {
    color: #a0a0a0;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #ffffff;
}

.modal-buy-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #0a0a0a;
    border-bottom: 1px solid #333333;
}

.buy-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.buy-bar-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
}

.buy-bar-price {
    color: #c00d00;
    font-size: 1.25rem;
    font-weight: 700;
}

.buy-bar-right {
    display: flex;
    gap: 1rem;
}

.buy-bar-btn {
    padding: 0.75rem 1.5rem;
    background: #c00d00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.buy-bar-btn:hover {
    background: #a00b00;
    transform: translateY(-2px);
}

.modal-iframe-container {
    position: relative;
    height: 60vh;
    min-height: 500px;
}

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #a0a0a0;
    z-index: 1;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333333;
    border-top: 3px solid #c00d00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .version-switcher {
        justify-content: center;
    }
    
    .modal-buy-bar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .buy-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    .modal-iframe-container {
        height: 50vh;
        min-height: 400px;
    }
}

/* Latest Templates Section Responsive */
@media (max-width: 768px) {
    .latest-templates-section {
        padding: 4rem 0;
    }
    
    .templates-showcase {
        margin-top: 2rem;
    }
    
    .template-hero-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .template-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .template-hero-info h3 {
        font-size: 2rem;
    }
    
    .template-hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .template-hero-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .template-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .template-showcase-container {
        max-width: 100%;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-element.element-1 {
        top: 5%;
        right: -5%;
    }
    
    .floating-element.element-2 {
        bottom: 10%;
        left: -8%;
    }
    
    .floating-element.element-3 {
        top: 40%;
        right: -3%;
    }
}

.template-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.template-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(192, 13, 0, 0.1);
    color: #c00d00;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(192, 13, 0, 0.2);
}

.template-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 8px 8px;
}

.template-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c00d00;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(192, 13, 0, 0.3);
    z-index: 10;
}

.badge-text {
    display: block;
}

/* New Featured Templates Layout */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Template */
.hero-template {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.hero-template::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c00d00, #ff4444, #c00d00);
}

.hero-template-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-template-info {
    position: relative;
}

.template-badge-large {
    position: absolute;
    top: -1rem;
    right: 0;
    background: #c00d00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(192, 13, 0, 0.3);
}

.hero-template-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.hero-feature i {
    color: #c00d00;
    font-size: 1.1rem;
    width: 20px;
}

.hero-template-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #c00d00;
}

.category-large {
    background: rgba(192, 13, 0, 0.1);
    color: #c00d00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(192, 13, 0, 0.2);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.hero-template-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-template-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Other Templates */
.other-templates {
    margin-top: 4rem;
}

.other-templates h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.8rem;
}

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

.template-card-compact {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    text-align: center;
}

.template-card-compact:hover {
    transform: translateY(-5px);
    border-color: #c00d00;
    box-shadow: 0 10px 30px rgba(192, 13, 0, 0.1);
}

.template-preview-compact {
    margin-bottom: 1rem;
}

.template-mockup-compact {
    background: #0a0a0a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mockup-header-compact {
    background: #2a2a2a;
    padding: 0.75rem;
    display: flex;
    align-items: center;
}

.mockup-dots-compact {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots-compact span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.mockup-dots-compact span:first-child {
    background: #ff5f57;
}

.mockup-dots-compact span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots-compact span:last-child {
    background: #28ca42;
}

.mockup-content-compact {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-placeholder-compact {
    color: #666;
    font-size: 2rem;
}

.template-info-compact h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.template-price-compact {
    color: #c00d00;
    font-weight: 600;
    font-size: 1.1rem;
}

.template-category-compact {
    background: rgba(192, 13, 0, 0.1);
    color: #c00d00;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(192, 13, 0, 0.2);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 25px;
    width: 100%;
    text-align: center;
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .hero-template {
        padding: 2rem;
    }
    
    .hero-template-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-template-info h3 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-template-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero-template-buttons {
        flex-direction: column;
    }
    
    .template-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}