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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --white: #ffffff;

    /* Modern Gradients */
    --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-alt: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    --gradient-blue: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 50%, #ecfeff 100%);
    --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-orange: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);

    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* 3D Variables */
    --perspective: 1000px;
    --card-depth-1: translateZ(20px);
    --card-depth-2: translateZ(40px);
    --card-depth-3: translateZ(60px);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

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

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass utility class */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary {
    background: var(--glass-bg);
    color: var(--primary-color);
    border: 2px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar-scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 24px;
    position: relative;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - 3D Centered Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-soft);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Dot matrix background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-content .hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content .hero-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* Trust indicators */
.trust-indicators {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.trust-item .trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-item .trust-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Gradient mesh orbs */
.hero-mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-mesh-orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
    background: rgba(37, 99, 235, 0.15);
    animation: float 10s ease-in-out infinite;
}

.hero-mesh-orb-2 {
    width: 350px;
    height: 350px;
    top: 60%;
    right: -5%;
    background: rgba(124, 58, 237, 0.12);
    animation: float 12s ease-in-out infinite 2s;
}

.hero-mesh-orb-3 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    left: 30%;
    background: rgba(6, 182, 212, 0.1);
    animation: float 8s ease-in-out infinite 4s;
}

/* 3D Card Container */
.hero-3d-container {
    perspective: var(--perspective);
    width: 100%;
    max-width: 900px;
}

.hero-3d-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-3d-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.hero-3d-card:nth-child(1),
.hero-3d-card:nth-child(6) {
    transform: var(--card-depth-1);
}

.hero-3d-card:nth-child(2),
.hero-3d-card:nth-child(5) {
    transform: var(--card-depth-2);
}

.hero-3d-card:nth-child(3),
.hero-3d-card:nth-child(4) {
    transform: var(--card-depth-3);
}

.hero-3d-card:hover {
    transform: translateY(-8px) translateZ(80px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.hero-3d-card i {
    font-size: 1.25rem;
    flex-shrink: 0;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-3d-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(-25px) translateX(-3px); }
    75% { transform: translateY(-10px) translateX(8px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 0 16px 0 100%;
    transition: all 0.3s ease;
}

.service-card:nth-child(even)::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
}

.service-card:hover::before {
    width: 150px;
    height: 150px;
    opacity: 0.8;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.service-image {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

.about-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.about-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.tech-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.tech-item:hover::before {
    transform: translateX(0);
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-image {
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    background: var(--background-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

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

.tag {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 1rem 1.5rem;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.blog-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.blog-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: scale(1.1);
}

.blog-cta {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
}

.blog-cta p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-cta .btn i {
    font-size: 1.125rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.contact-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    margin-bottom: 1.5rem;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-light);
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--background-light);
    transform: translateX(5px);
}

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

.contact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
}

.contact-cta {
    background: var(--gradient);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    margin-top: auto;
}

.cta-content h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.contact-form-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 1rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

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

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.form-group label + input + .form-icon,
.form-group label + textarea + .form-icon {
    top: calc(50% + 12px);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
    appearance: none;
    cursor: pointer;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.budget-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.budget-options input[type="radio"] {
    display: none;
}

.budget-label {
    display: block;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.budget-options input[type="radio"]:checked + .budget-label {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary-color);
}

.budget-label:hover {
    border-color: var(--primary-color);
}

.form-actions {
    margin-top: 0.5rem;
    text-align: center;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

.form-actions .btn i {
    transition: transform 0.3s ease;
}

.form-actions .btn:hover i {
    transform: translateX(3px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-success .notification-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.notification-error .notification-content {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.notification-info .notification-content {
    background: var(--gradient);
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    margin-left: auto;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

/* Loading spinner animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Unified Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legacy animation classes - redirect to unified */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Modern Gradient Text */
.modern-gradient-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e4fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    border-radius: 0;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.loading-cube {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-cube-mark {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.loading-brand {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.loading-tagline {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.loading-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.loading-bar-fill {
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 3px;
    animation: loading-progress 1.2s ease-in-out infinite;
}

@keyframes loading-progress {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(250%); }
    100% { transform: translateX(-100%); }
}

/* ── Footer (Kresna-style) ── */
.footer {
    padding: 48px 24px;
    background: #ffffff;
    position: relative;
}

.footer-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 16px;
    align-items: stretch;
}

/* Left Card */
.footer-left {
    position: relative;
    min-height: 340px;
    border-radius: 28px;
    padding: 32px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(21, 76, 189, 0.25);
    background: #1e4fc0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-left-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-logo-name {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-tagline-container {
    margin-top: auto;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.45;
}

.footer-tagline span {
    color: rgba(255, 255, 255, 0.65);
}

.footer-social-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.footer-social-label {
    font-family: 'Caveat', cursive;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.footer-social-icons {
    display: flex;
    gap: 7px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #0e1014;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 3px 8px rgba(0, 0, 0, 0.3);
}

.footer-social-icon svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}

/* Right Card */
.footer-right {
    background: #f0f1f5;
    border-radius: 28px;
    padding: 40px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Lucky Badge */
.footer-lucky-graphic {
    position: absolute;
    top: -36px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.lucky-cube {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    transform: rotate(-10deg);
    background: linear-gradient(135deg, #5b9ffb 0%, #1e5dd7 55%, #1448be 100%);
    box-shadow:
        inset 3px 3px 8px rgba(255, 255, 255, 0.35),
        inset -3px -3px 12px rgba(0, 0, 0, 0.18),
        8px 14px 28px rgba(20, 72, 200, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-cube-mark {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.04em;
    transform: rotate(10deg);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    line-height: 1;
}

.lucky-text-row {
    display: flex;
    gap: 6px;
    align-items: center;
    transform: rotate(-4deg);
    margin-top: 4px;
}

.lucky-arrow {
    width: 22px;
    height: 22px;
    color: #9ca3af;
    flex-shrink: 0;
}

.lucky-arrow svg {
    width: 100%;
    height: 100%;
}

.lucky-text {
    font-family: 'Caveat', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #9ca3af;
    white-space: nowrap;
}

/* Nav Columns */
.footer-right-top {
    padding-top: 8px;
}

.footer-nav-cols {
    display: flex;
    gap: 48px;
}

.footer-col-title {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #9ca3af;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1f65d6;
}

.footer-col a:last-child {
    margin-bottom: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 48px;
}

.footer-copyright {
    font-size: 12.5px;
    font-weight: 500;
    color: #9ca3af;
}

.footer-cta-mini {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-cta-mini h4 {
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.45;
}

.footer-cta-mini h4 strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #111827;
}

.footer-subscribe-row {
    display: flex;
    width: 310px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.footer-subscribe-row input[type="email"] {
    flex: 1;
    padding: 11px 14px;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 13.5px;
    color: #111827;
    min-width: 0;
}

.footer-subscribe-row input[type="email"]::placeholder {
    color: #9ca3af;
}

.footer-subscribe-row button {
    padding: 11px 22px;
    background: #111214;
    color: #ffffff;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}

.footer-subscribe-row button:hover {
    background: #000000;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38), 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Watermark */
.footer-watermark {
    max-width: 1150px;
    margin: -60px auto 0;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 0;
    line-height: 0;
}

.footer-watermark svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.footer-watermark text {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    fill: rgba(0, 0, 0, 0.04);
}

/* Responsive Design */
@media (max-width: 860px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-left {
        min-height: auto;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

    .hero-container {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

    .hero-3d-cards {
        gap: 0.75rem;
    }

    .hero-mesh-orb {
        display: none;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }

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

    .budget-options {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 560px) {
    .footer-right {
        padding: 24px;
    }

    .footer-nav-cols {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-subscribe-row {
        width: 100%;
    }

    .footer-lucky-graphic {
        right: 12px;
        top: -28px;
    }

    .lucky-cube {
        width: 72px;
        height: 72px;
    }

    .lucky-cube-mark {
        font-size: 32px;
    }
}

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

    .hero-3d-cards {
        display: none;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-tags {
        width: 100%;
    }
}

/* Blog View More Icon */
.blog-grid > .blog-card:nth-child(n+7) {
    display: none !important;
}

.blog-grid.show-all > .blog-card:nth-child(n+7) {
    display: block !important;
}

.blog-view-more {
    text-align: center;
    margin-top: 1rem;
    cursor: pointer;
}

.blog-view-more i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.blog-view-more:hover i {
    transform: translateY(3px);
}

.blog-view-more.hidden {
    display: none;
}

/* ==============================
   Service Landing Page Styles
   ============================== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 1rem 0;
    background: var(--background-light);
    border-bottom: 1px solid #e2e8f0;
}

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

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-list li .breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--text-light);
    font-weight: 500;
}

/* Service Hero - Light background */
.service-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-soft);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-hero .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-hero-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-hero-image .hero-img-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

.service-hero-image .hero-img-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.service-hero-image .hero-img-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--primary-color);
}

.service-hero-image .hero-img-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Service Description / What We Offer */
.service-description {
    padding: 5rem 0;
    background: var(--white);
}

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

.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.service-detail-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Steps */
.service-process {
    padding: 5rem 0;
    background: var(--gradient-soft);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step-counter;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Tech Stack */
.service-tech {
    padding: 5rem 0;
    background: var(--white);
}

.service-tech .tech-stack {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.service-tech .tech-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-section {
    padding: 5rem 0;
    background: var(--gradient-soft);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s ease;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Related Services */
.related-services {
    padding: 5rem 0;
    background: var(--white);
}

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

.related-service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-service-link:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.related-service-link i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Service Page Responsive */
@media (max-width: 768px) {
    .service-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero .hero-buttons {
        justify-content: center;
    }

    .service-hero-image {
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 4rem 0 3rem;
    }

    .service-hero-image {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.875rem;
    }
}
