/* Base Setup */
:root {
    --bg-color: #0f172a;
    --bg-secondary: #1e293b;
    --primary-color: #8b5cf6;
    --secondary-color: #06b6d4;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
    --whatsapp-color: #25d366;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-box {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
    transition: var(--transition);
}

.logo:hover .logo-box {
    background: var(--gradient-main);
    color: white;
    transform: rotate(10deg);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    border-color: transparent;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links li a:hover {
    color: var(--text-color);
}

.btn-primary-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-primary-outline:hover {
    background: var(--primary-color);
    color: white !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Orbit System Decoration - Premium Upgrade */
.hero-decoration-left {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: 0;
    pointer-events: none;
    display: none;
    perspective: 1000px;
}

@media (min-width: 1200px) {
    .hero-decoration-left {
        display: block;
    }
}

.orbit-system {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateX(20deg) rotateY(10deg);
    transform-style: preserve-3d;
}

.orbit-center {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, #4c1d95, #0f172a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.6), inset 0 0 20px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.5);
    animation: float 4s ease-in-out infinite;
}

.orbit-center i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.core-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
    animation: pulse-glow 2s infinite alternate;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.orbit::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: scan 4s linear infinite;
}

.orbit-1 {
    width: 160px;
    height: 160px;
    animation: rotate-orbit 20s linear infinite;
}

.orbit-2 {
    width: 260px;
    height: 260px;
    animation: rotate-orbit 30s linear infinite reverse;
    border-color: rgba(6, 182, 212, 0.3);
}

.orbit-3 {
    width: 360px;
    height: 360px;
    animation: rotate-orbit 40s linear infinite;
    border-color: rgba(34, 197, 94, 0.3);
}

.planet {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
}

.planet i {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px currentColor);
}

/* Positioning Planets */
.planet-1 {
    top: -22px;
    animation: counter-rotate 20s linear infinite;
    color: #ff5722;
    border-color: #ff5722;
}

.planet-2 {
    top: 40px;
    left: 10px;
    animation: counter-rotate 30s linear infinite reverse;
    color: #22d3ee;
    border-color: #22d3ee;
}

.planet-3 {
    bottom: 40px;
    right: 10px;
    animation: counter-rotate 30s linear infinite reverse;
    color: #facc15;
    border-color: #facc15;
}

.planet-4 {
    top: 50%;
    left: -22px;
    animation: counter-rotate 40s linear infinite;
    color: #3b82f6;
    border-color: #3b82f6;
}

.planet-5 {
    top: 30px;
    right: 20px;
    animation: counter-rotate 40s linear infinite;
    color: #4ade80;
    border-color: #4ade80;
}

@keyframes rotate-orbit {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@keyframes counter-rotate {
    from {
        transform: rotateZ(0deg) rotateX(-20deg) rotateY(-10deg);
    }

    to {
        transform: rotateZ(-360deg) rotateX(-20deg) rotateY(-10deg);
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes scan {
    0% {
        transform: rotate(0deg);
        border-top-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        border-top-color: transparent;
        border-bottom-color: rgba(255, 255, 255, 0.5);
    }

    100% {
        transform: rotate(360deg);
        border-top-color: rgba(255, 255, 255, 0.5);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
}

.hero-content h1,
.hero-content p {
    max-width: 580px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    width: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-info h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 4px 0 0;
    font-weight: 500;
    line-height: 1.3;
}

/* Hero Visual & Glass Cards */
/* Hero Visual & Glass Interface Mockup */
.hero-visual {
    position: absolute;
    right: 2%;
    top: 20%;
    width: 500px;
    height: 400px;
    /* Removed redundant background */
    z-index: 1;
    display: none;
    perspective: 1000px;
}

@media (min-width: 992px) {
    .hero-visual {
        display: block;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
    z-index: -1;
}

.glass-interface {
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-visual:hover .glass-interface {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.window-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dots span:nth-child(1) {
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.search-bar-mock {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    max-width: 200px;
}

.window-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-grid-mock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 150px;
}

.mock-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-1 {
    grid-column: 1 / 2;
}

.item-2 {
    grid-column: 2 / 3;
}

.item-3 {
    grid-column: 1 / 3;
    height: 100%;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.code-lines span {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    width: 100%;
}

.code-lines span:nth-child(2) {
    width: 70%;
}

.code-lines span:nth-child(3) {
    width: 40%;
}

/* Floating Cards Styling */
.glass-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: white;
    z-index: 2;
    min-width: 180px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Specific Card Styles */
.card-1 {
    top: 40px;
    left: -60px;
    animation: float 6s ease-in-out infinite;
}

.card-1 .card-icon {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.card-2 {
    bottom: 60px;
    right: -40px;
    animation: float 7s ease-in-out infinite 1s;
}

.card-2 .card-icon {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.card-3 {
    bottom: 150px;
    left: -40px;
    animation: float 8s ease-in-out infinite 2s;
}

.card-3 .card-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.glass-card h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.glass-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-15px) translateX(5px);
    }
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
    background: linear-gradient(145deg, #1e293b, #0f172a);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-text {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    width: fit-content;
}

.btn-text i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: white;
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
    border-radius: 2px;
}

.btn-text:hover::after {
    width: 100%;
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    position: relative;
    /* Removed invalid group: hover */
}

.portfolio-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 20px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Gradients as placeholders for images */
.p1 {
    background: linear-gradient(45deg, #2d3748, #4a5568);
}

.p2 {
    background: linear-gradient(45deg, #1a365d, #2b6cb0);
}

.p3 {
    background: linear-gradient(45deg, #553c9a, #805ad5);
}

.portfolio-item:hover .placeholder-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.btn-link {
    background: white;
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.portfolio-info span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.btn-secondary-outline {
    border: 1px solid var(--text-muted);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--text-muted);
}

.btn-secondary-outline:hover {
    border-color: white;
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feedback {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.client-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.detail {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.detail i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.detail span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail a {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-top: 20px;
}

.glass-form {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.glass-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Portfolio Mockup Styles */
.mockup-browser {
    position: relative;
    border-radius: 10px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: auto;
    aspect-ratio: 16/10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.browser-bar {
    height: 30px;
    background: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.project-img {
    width: 100%;
    height: calc(100% - 30px);
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-logo span {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero {
        padding-top: 150px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats-grid {
        justify-content: center;
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 columns on tablet if it fits, or switch to 1? Let's check 768px */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .glass-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        gap: 15px;
    }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background: #20BA56;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Client References Slider */
.client-references {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(250px * 14);
    /* Adjust based on number of slides */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.7;
    transition: var(--transition);
}

.slide:hover .client-name {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
        /* Half of the total width */
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gradient-main);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
}

/* Internal Pages Styles */
.hero-internal {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.hero-internal .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-internal p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-internal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-internal h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.content-section {
    padding: 100px 0;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-content.inverted {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.visual-block {
    flex: 1;
}

.glass-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-mockup img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Blog Index Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.blog-card-header {
    height: 150px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-card .btn-text {
    margin-top: auto;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.blog-card:hover .btn-text {
    color: var(--secondary-color);
}

@media (max-width: 968px) {

    .split-content,
    .split-content.inverted {
        flex-direction: column;
        gap: 40px;
    }

    .hero-internal h1 {
        font-size: 2.5rem;
    }
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing {
    padding: 100px 0;
    background: var(--bg-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.04);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gradient-main);
    color: #fff;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.pricing-price {
    margin-bottom: 1.8rem;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i.fa-check {
    color: #10b981;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pricing-features li i.fa-times {
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    transition: var(--transition);
    background: var(--glass-bg);
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-pricing.featured-btn {
    background: var(--gradient-main);
    border-color: transparent;
    color: #fff;
}

.btn-pricing.featured-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Maintenance Banner */
.maintenance-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.maintenance-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.maintenance-content {
    flex: 1;
}

.maintenance-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.maintenance-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.maintenance-price {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.maintenance-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.btn-maintenance {
    padding: 10px 22px;
    border-radius: 9px;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-maintenance:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .maintenance-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   TECH STACK SECTION
   ============================================= */
.tech-stack {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    min-width: 110px;
    transition: var(--transition);
    cursor: default;
}

.tech-item i {
    font-size: 2.2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    text-align: center;
}

.tech-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-5px);
}

.tech-item:hover span {
    color: var(--text-color);
}

/* =============================================
   PORTFOLIO CASE STUDY (Hikayeleştirme)
   ============================================= */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}

.tag-city {
    background: rgba(6, 182, 212, 0.12);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.tag-type {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.portfolio-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 8px 0 10px;
}

.portfolio-done {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
}

.portfolio-done i {
    font-size: 0.8rem;
}