/* ============================================
   Base Styles & Reset
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #ffffff;
    --color-secondary: #888888;
    --color-accent: #ffffff;
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-white: #ffffff;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Particle light rays animation - particles moving from bottom to top */
.particle-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle-light {
    position: absolute;
    bottom: -20px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    box-shadow: 
        0 0 8px rgba(255, 255, 255, 1),
        0 0 16px rgba(255, 255, 255, 0.8),
        0 0 24px rgba(255, 255, 255, 0.6),
        0 0 32px rgba(255, 255, 255, 0.4);
    animation: particleMoveUp linear infinite;
}

/* Create multiple particles with different positions and delays */
.particle-light:nth-child(1) {
    left: 5%;
    animation-duration: 8s;
    animation-delay: 0s;
    width: 4px;
    height: 4px;
}

.particle-light:nth-child(2) {
    left: 12%;
    animation-duration: 10s;
    animation-delay: 1s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(3) {
    left: 20%;
    animation-duration: 9s;
    animation-delay: 2s;
    width: 3.5px;
    height: 3.5px;
}

.particle-light:nth-child(4) {
    left: 28%;
    animation-duration: 11s;
    animation-delay: 0.5s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(5) {
    left: 35%;
    animation-duration: 8.5s;
    animation-delay: 1.5s;
    width: 4px;
    height: 4px;
}

.particle-light:nth-child(6) {
    left: 42%;
    animation-duration: 10.5s;
    animation-delay: 0.8s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(7) {
    left: 50%;
    animation-duration: 9.5s;
    animation-delay: 2.2s;
    width: 3.5px;
    height: 3.5px;
}

.particle-light:nth-child(8) {
    left: 58%;
    animation-duration: 8.8s;
    animation-delay: 0.3s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(9) {
    left: 65%;
    animation-duration: 10.2s;
    animation-delay: 1.8s;
    width: 4px;
    height: 4px;
}

.particle-light:nth-child(10) {
    left: 72%;
    animation-duration: 9.2s;
    animation-delay: 0.6s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(11) {
    left: 80%;
    animation-duration: 11.5s;
    animation-delay: 2.5s;
    width: 3.5px;
    height: 3.5px;
}

.particle-light:nth-child(12) {
    left: 15%;
    animation-duration: 8.3s;
    animation-delay: 1.2s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(13) {
    left: 25%;
    animation-duration: 10.8s;
    animation-delay: 0.4s;
    width: 4px;
    height: 4px;
}

.particle-light:nth-child(14) {
    left: 45%;
    animation-duration: 9.8s;
    animation-delay: 1.9s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(15) {
    left: 55%;
    animation-duration: 8.6s;
    animation-delay: 0.7s;
    width: 3.5px;
    height: 3.5px;
}

.particle-light:nth-child(16) {
    left: 75%;
    animation-duration: 11.2s;
    animation-delay: 2.1s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(17) {
    left: 85%;
    animation-duration: 9.4s;
    animation-delay: 1.4s;
    width: 4px;
    height: 4px;
}

.particle-light:nth-child(18) {
    left: 8%;
    animation-duration: 10.4s;
    animation-delay: 0.9s;
    width: 3px;
    height: 3px;
}

.particle-light:nth-child(19) {
    left: 38%;
    animation-duration: 8.9s;
    animation-delay: 2.3s;
    width: 3.5px;
    height: 3.5px;
}

.particle-light:nth-child(20) {
    left: 68%;
    animation-duration: 11s;
    animation-delay: 1.6s;
    width: 3px;
    height: 3px;
}

@keyframes particleMoveUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Add slight horizontal drift for more natural movement */
.particle-light:nth-child(odd) {
    animation-name: particleMoveUpLeft;
}

.particle-light:nth-child(even) {
    animation-name: particleMoveUpRight;
}

@keyframes particleMoveUpLeft {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(-30px);
        opacity: 0;
    }
}

@keyframes particleMoveUpRight {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(30px);
        opacity: 0;
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
}

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

/* ============================================
   Noise Overlay
   ============================================ */

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================
   Animations
   ============================================ */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(247, 164, 87, 0); }
}

.breathing {
    animation: breathe 4s ease-in-out infinite;
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

/* ============================================
   Glass Morphism
   ============================================ */

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Navigation
   ============================================ */

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    padding: 1.5rem 0;
    background: transparent;
}

.navigation.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    width: 100%;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
    height: 50px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 100%;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-name {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #ffffff;
    margin-top: -0.25rem;
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-links-desktop a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links-desktop a:hover {
    color: white;
}

.nav-links-desktop a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}

.nav-links-desktop a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    display: none;
    padding: 0.625rem 1.5rem;
    background: transparent;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .nav-cta-btn {
        display: block;
    }
}

.nav-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu-content a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu-content a:hover {
    color: white;
}

.mobile-menu-cta {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: transparent;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Main Content
   ============================================ */

main {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: #000000;
    z-index: 1;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 3rem;
    }
}

.hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    overflow: hidden;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6.5rem;
    }
}

.hero-title .char {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.8;
    font-weight: 300;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.375rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    perspective: 1000px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}


/* ============================================
   Section Styles
   ============================================ */

.section-container {
    position: relative;
    width: 100%;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .section-container {
        padding: 0 3rem;
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 2rem;
    height: 2px;
    background: #ffffff;
}

.label-text {
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label-center {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title-center {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .section-title-center {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title-center {
        font-size: 3rem;
    }
}

.line-decoration::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 42rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-section {
        padding: 8rem 0;
    }
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.03), transparent);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-description p:first-child {
    font-size: 1.125rem;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.about-image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    border-radius: 2rem;
    filter: blur(32px);
    opacity: 0.6;
}

.about-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.6), transparent);
}

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
}

.experience-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.experience-text {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .services-section {
        padding: 8rem 0;
    }
}

.services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.03), transparent);
}

.services-carousel {
    position: relative;
    perspective: 2000px;
    margin-bottom: 5rem;
}

.carousel-container {
    position: relative;
    height: 600px;
}

@media (min-width: 1024px) {
    .carousel-container {
        height: 500px;
    }
}

.service-card {
    position: absolute;
    inset: 0;
    transition: all 0.7s ease-out;
    transform-style: preserve-3d;
}

.service-card[data-index="0"] {
    transform: translateX(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 3;
}

.service-card[data-index="1"] {
    transform: translateX(60%) rotateY(-35deg) scale(0.85);
    opacity: 0.5;
    z-index: 2;
}

.service-card[data-index="2"] {
    transform: translateX(-60%) rotateY(35deg) scale(0.85);
    opacity: 0.5;
    z-index: 2;
}

.service-card.active {
    transform: translateX(0) rotateY(0deg) scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
}

.service-card.prev {
    transform: translateX(-60%) rotateY(35deg) scale(0.85) !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
}

.service-card.next {
    transform: translateX(60%) rotateY(-35deg) scale(0.85) !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
}

.service-card-content {
    display: grid;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .service-card-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .service-image {
        height: 100%;
    }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-card.active .service-image img {
    transform: scale(1);
}

.service-card:not(.active) .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
}

@media (min-width: 1024px) {
    .service-image-overlay {
        background: linear-gradient(to right, transparent, rgba(10, 10, 12, 0.8));
    }
}

.service-image-overlay {
    background: linear-gradient(to top, #0a0a0c, transparent);
}

@media (min-width: 1024px) {
    .service-image-overlay {
        background: linear-gradient(to right, transparent, rgba(10, 10, 12, 0.8));
    }
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .service-info {
        padding: 2.5rem;
    }
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 1.875rem;
    }
}

.service-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    width: 2rem;
    background: #ffffff;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.additional-services {
    display: grid;
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 640px) {
    .additional-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .additional-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.additional-service-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.additional-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.additional-service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.additional-service-card:hover .additional-service-icon {
    transform: scale(1.1);
}

.additional-service-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.additional-service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   Projects Section
   ============================================ */

.projects-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .projects-section {
        padding: 8rem 0;
    }
}

.projects-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    filter: blur(96px);
}

.projects-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .projects-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.projects-view-all {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .projects-view-all {
        margin-top: 0;
    }
}

.projects-view-all:hover {
    background: rgba(255, 255, 255, 0.1);
}

.projects-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    position: absolute;
    inset: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0c, rgba(10, 10, 12, 0.5), transparent);
    opacity: 0.8;
    transition: opacity 0.4s;
}

.project-item:hover .project-overlay {
    opacity: 0.9;
}

.project-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    width: fit-content;
}

.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.project-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s, transform 0.3s;
}

.project-item:hover .project-description {
    opacity: 1;
    transform: translateY(0);
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}

.project-item:hover .project-stats {
    opacity: 1;
}

.project-stat-value {
    font-size: 1.125rem;
    font-weight: bold;
}

.project-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s 0.15s;
}

.project-item:hover .project-tags {
    opacity: 1;
}

.project-tags span {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.project-border {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color 0.3s;
}

.project-item:hover .project-border {
    border-color: rgba(255, 255, 255, 0.2);
}

.projects-bottom-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .projects-bottom-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom-stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
}

.bottom-stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .bottom-stat-value {
        font-size: 2.25rem;
    }
}

.bottom-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: 8rem 0;
    }
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonials-bg-circle-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(96px);
}

.testimonials-bg-circle-2 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(96px);
}

.testimonials-carousel {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    perspective: 1000px;
}

.testimonials-container {
    position: relative;
    height: 400px;
}

@media (min-width: 1024px) {
    .testimonials-container {
        height: 350px;
    }
}

.testimonial-card {
    position: absolute;
    inset: 0;
    transition: all 0.7s ease-out;
}

.testimonial-card[data-index="0"] {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    filter: blur(0px);
}

.testimonial-card[data-index="1"] {
    transform: translateX(60%) scale(0.85);
    opacity: 0.5;
    z-index: 2;
    filter: blur(2px);
}

.testimonial-card[data-index="2"] {
    transform: translateX(-60%) scale(0.85);
    opacity: 0.5;
    z-index: 2;
    filter: blur(2px);
}

.testimonial-card.active {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
    filter: blur(0px) !important;
}

.testimonial-card.prev {
    transform: translateX(-60%) scale(0.85) !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
    filter: blur(2px) !important;
}

.testimonial-card.next {
    transform: translateX(60%) scale(0.85) !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
    filter: blur(2px) !important;
}

.testimonial-content {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
}

@media (min-width: 1024px) {
    .testimonial-content {
        padding: 2.5rem;
    }
}

.testimonial-quote {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .testimonial-text {
        font-size: 1.25rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.testimonial-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonials-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s;
}

.testimonials-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonials-dot.active {
    width: 2rem;
    background: #ffffff;
}

.testimonials-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.client-logos {
    margin-top: 5rem;
}

.client-logos-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.client-logos-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.5;
}

@media (min-width: 1024px) {
    .client-logos-list {
        gap: 4rem;
    }
}

.client-logos-list div {
    font-size: 1.25rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    cursor: default;
}

.client-logos-list div:hover {
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
    .client-logos-list div {
        font-size: 1.5rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 8rem 0;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-circle-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(96px);
}

.cta-bg-circle-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(96px);
}

.cta-header {
    text-align: center;
    margin-bottom: 5rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-primary-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary-large:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card,
.contact-form-card {
    padding: 2rem;
    border-radius: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-info-card,
    .contact-form-card {
        padding: 2.5rem;
    }
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: rgba(255, 255, 255, 0.6);
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-hours-value {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-group textarea {
    resize: none;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit-btn .spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    width: 100%;
    background: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    width: 100%;
    padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
    .footer-main {
        padding: 5rem 3rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-brand-name {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo-name {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.footer-logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #ffffff;
    margin-top: -0.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 24rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    position: relative;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s;
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-bottom {
    width: 100%;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .footer-bottom {
        padding: 1.5rem 3rem;
    }
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-info a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-value a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-value a:hover {
    color: #ffffff;
}


