/* DataSatınAl.COM - Modern Underground Corporate Style */

:root {
    --primary: #00f5d4;
    --secondary: #00bbf0;
    --dark: #0a0e27;
    --darker: #050714;
    --gray: #1e2139;
    --light-gray: #9ca3af;
    --success: #25d366;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #00f5d4 0%, #00bbf0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

#navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 245, 212, 0.1);
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo:hover {
    transform: translateY(-2px);
}

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

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    border-radius: 12px;
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.logo-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.logo-text .site-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text .tagline {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.whatsapp-btn):hover {
    color: var(--primary);
}

.nav-links a:not(.whatsapp-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.whatsapp-btn):hover::after {
    width: 100%;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient);
    border-radius: 25px;
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 245, 212, 0.5);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 7, 20, 0.9) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 245, 212, 0.05) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00f5d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 245, 212, 0.5);
}

.btn-primary svg {
    width: 24px;
    height: 24px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

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

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--light-gray);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
#services {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 245, 212, 0.3);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    font-size: 15px;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    overflow: visible;
}

.service-price {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 245, 212, 0.15);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 15px;
}

.service-link svg {
    width: 20px;
    height: 20px;
}

/* Blog Section */
#blog {
    background: var(--dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 245, 212, 0.3);
}

.blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(0, 245, 212, 0.9);
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 245, 212, 0.15);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 6px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-link {
    gap: 15px;
}

.blog-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Section */
#contact {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 245, 212, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(0, 245, 212, 0.15);
    border: 2px solid rgba(0, 245, 212, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon svg {
    color: var(--white);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-card a, .contact-card p {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

/* Section CTA */
.section-cta {
    text-align: center;
}

/* Footer */
footer {
    background: var(--darker);
    border-top: 1px solid rgba(0, 245, 212, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 245, 212, 0.3);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.social-links a:hover svg {
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.3);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 245, 212, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* Service Detail Page */
.service-detail, .blog-detail {
    padding-top: 90px;
}

.service-hero, .blog-hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
}

.service-hero-overlay, .blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(5, 7, 20, 0.95) 100%);
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

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

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--light-gray);
}

.service-hero h1, .blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.service-price-tag {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.blog-meta {
    color: var(--light-gray);
    font-size: 15px;
    position: relative;
    z-index: 10;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}

.service-main {
    min-width: 0;
    width: 100%;
}

.service-description, .blog-content .blog-main {
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.4) 0%, rgba(10, 14, 39, 0.4) 100%);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 20px;
    padding: 40px;
    color: var(--light-gray);
    line-height: 1.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    width: 100%;
    box-sizing: border-box;
}

.service-description h2, .service-description h3,
.blog-content h2, .blog-content h3 {
    color: var(--white);
    margin: 30px 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.service-description h2, .blog-content h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
}

.service-description h3, .blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.service-description p, .blog-content p {
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: pre-wrap;
}

.service-description ul, .blog-content ul {
    margin: 20px 0;
    padding-left: 30px;
    max-width: 100%;
}

.service-description li, .blog-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-description strong, .blog-content strong {
    color: var(--primary);
    font-weight: 700;
    word-wrap: break-word;
}

.service-features {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.service-features h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.service-features ul {
    display: grid;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(0, 245, 212, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.service-features li svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    stroke-width: 3;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 400px;
}

.service-order-card {
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    width: 100%;
}

.service-contact-card {
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    width: 100%;
}

.service-order-card h3, .service-contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.service-price-display {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.service-order-card p {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

.service-benefits {
    list-style: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.service-benefits li {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-contact-card p {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-contact-card strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.service-contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-contact-card a:hover {
    color: var(--white);
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.blog-cta {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 33, 57, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
}

.blog-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

/* Error Page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-page h1 {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-page h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.error-page p {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-sidebar {
        max-width: 100%;
    }
    
    .service-order-card, .service-contact-card {
        position: relative !important;
        top: auto !important;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .service-hero h1, .blog-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        font-size: 14px;
        padding: 14px 24px;
    }
}
