/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

/* Root Variables */
:root {
    --primary-red: #ff4444;
    --primary-gray: #e0e0e0;
    --space-purple: #2d1b69;
    --space-blue: #1a237e;
    --space-pink: #e91e63;
    --dark-bg: #0a0a0a;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: url('../images/space-backgorund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-white);
    overflow: hidden;
    line-height: 1.6;
    height: 100vh;
}

/* Services page specific body */
.services-page {
    overflow-x: hidden;
    min-height: 100vh;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.text-red {
    color: var(--primary-red) !important;
}

.text-gray {
    color: var(--primary-gray) !important;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shield {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0, #808080);
    border-radius: 8px 8px 12px 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #b0b0b0;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.eye {
    display: none;
}

.lock {
    display: none;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.logo-text-line1 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text-line2 {
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Services page specific hero section */
.services-page .hero-section {
    min-height: 100vh;
    align-items: flex-start;
    overflow: visible;
    padding-top: 80px;
}

.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    display: none;
}

@keyframes twinkle {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

.nebula {
    display: none;
}

.planet {
    display: none;
}

.planet-left {
    display: none;
}

.planet-right {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero Content */
.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 500px;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.logo-large {
    text-align: center;
}

.shield-large {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0, #808080);
    border-radius: 30px 30px 45px 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border: 3px solid #b0b0b0;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.eye-large {
    display: none;
}

.lock-large {
    display: none;
}

.logo-text-large {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
}

.logo-line-1, .logo-line-2 {
    margin-bottom: 5px;
}

/* Slogan */
.slogan {
    position: absolute;
    bottom: 80px;
    right: 30px;
    z-index: 2;
}

.slogan p {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .planet-left {
        width: 120px;
        height: 120px;
        top: 5%;
        left: -30px;
    }
    
    .planet-right {
        width: 180px;
        height: 180px;
        bottom: 5%;
        right: -60px;
    }
    
    .shield-large {
        width: 160px;
        height: 160px;
    }
    
    .eye-large {
        width: 40px;
        height: 25px;
    }
    
    .lock-large {
        width: 15px;
        height: 15px;
    }
    
    .logo-text-large {
        font-size: 1.2rem;
    }
    
    .slogan {
        bottom: 60px;
        right: 20px;
    }
    
    .slogan p {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* About page mobile */
    .about-content {
        margin-top: 60px;
        padding: 4rem 0 2rem 0;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        font-size: 0.9rem;
        max-height: 60vh;
        line-height: 1.5;
    }
    
    .about-text p {
        margin-bottom: 1rem;
    }
    
    .catalog-button {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-catalog {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Services page mobile */
    .services-content {
        margin-top: 60px;
        padding: 1rem 0;
        height: calc(100vh - 120px);
    }
    
    .services-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 1.5rem;
        height: auto;
    }
    
    .service-category {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .service-list li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    /* Risk Analysis page mobile */
    .risk-content {
        margin-top: 60px;
        padding: 1rem 0 4rem 0;
        min-height: calc(100vh - 120px);
        overflow: visible;
        height: auto;
    }
    
    .risk-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .risk-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .risk-features {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-box {
        min-width: auto;
        max-width: none;
        min-height: 350px;
        padding: 1.2rem;
        justify-content: space-between;
    }
    
    .feature-box h3 {
        font-size: 1rem;
    }
    
    .feature-image {
        width: 180px;
        height: 180px;
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }
    
    .btn-risk-analysis {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .risk-planet .planet-large {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 1rem;
    }
    
    .shield {
        width: 30px;
        height: 30px;
    }
    
    .eye {
        width: 15px;
        height: 10px;
    }
    
    .lock {
        width: 6px;
        height: 6px;
    }
}

/* About Page Styles */
.about-content {
    z-index: 2;
    position: relative;
    padding: 2rem 0;
    margin-top: 80px;
    height: calc(100vh - 140px);
    overflow: hidden;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text {
    color: var(--text-white);
    line-height: 1.4;
    font-size: 0.85rem;
    height: calc(100vh - 280px);
    overflow: hidden;
    padding-right: 0;
}

.about-text p {
    margin-bottom: 0.8rem;
    text-align: left;
}

.management-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.catalog-button {
    position: absolute;
    bottom: 80px;
    right: 30px;
    z-index: 3;
}

.btn-catalog {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
    color: var(--text-white);
    text-decoration: none;
}

.btn-catalog i {
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-page {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    height: auto;
}

.contact-page body {
    overflow: visible !important;
    height: auto !important;
}

.contact-page .hero-section {
    min-height: 100vh;
    align-items: flex-start;
    overflow: visible;
    padding-top: 80px;
}

.contact-content {
    z-index: 2;
    position: relative;
    padding: 2rem 0;
    margin-top: 0;
    height: auto;
    overflow: visible;
    min-height: auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-item:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.2);
}

.contact-info-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.contact-info-item h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-button-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-contact-application {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-contact-application:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .btn-contact-application {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-info-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-item i {
        font-size: 2rem;
    }
    
    .contact-info-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-item p {
        font-size: 0.9rem;
    }
}

/* Application Modal Styles */
.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 15px;
    color: var(--text-white);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 68, 68, 0.3);
    background: rgba(255, 68, 68, 0.1);
}

.modal-title {
    color: var(--primary-red);
    font-weight: 700;
}

.modal-body {
    background: rgba(0, 0, 0, 0.3);
}

.form-label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: var(--text-white);
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.25);
    color: var(--text-white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-close {
    filter: invert(1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 68, 68, 0.3);
    background: rgba(255, 68, 68, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    border-radius: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

/* KVKK Checkbox Styles */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.form-check-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.25);
}

.form-check-label {
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-check-label a {
    color: var(--primary-red);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* KVKK Modal - Başvuru formunun üstünde açılsın */
#kvkkModal {
    z-index: 1060 !important;
}

#kvkkModal .modal-dialog {
    z-index: 1061 !important;
}

#kvkkModal .modal-content {
    z-index: 1062 !important;
}

/* About Logo Section Styles */
.about-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0.1rem 2rem;
    padding-top: 0;
    margin-top: -8rem;
}

.about-logo {
    margin-bottom: 1rem;
}

.logo-image {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0, #808080);
    border-radius: 30px 30px 45px 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border: 3px solid #b0b0b0;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.about-slogan {
    text-align: center;
}

.slogan-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
    line-height: 1.2;
}

.slogan-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-logo-section {
        padding: 0.05rem 1rem;
        padding-top: 0;
        margin-top: -4rem;
    }
    
    .logo-image {
        width: 180px;
        height: 180px;
    }
    
    .slogan-text {
        font-size: 1.2rem;
    }
    
    .slogan-brand {
        font-size: 1.2rem;
    }
}

/* Contact Section Styles */
.contact-section {
    background: rgba(10, 10, 10, 0.9);
    min-height: 60vh;
    padding: 4rem 0;
}

.contact-section h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-section h3 {
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.contact-item:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateX(10px);
    border-color: var(--primary-red);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-right: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.25);
    color: var(--text-white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
}

/* Risk Analysis Page Styles */
.risk-content {
    z-index: 2;
    position: relative;
    padding: 2rem 0 4rem 0;
    margin-top: 80px;
    min-height: calc(100vh - 160px);
    overflow: visible;
    height: auto;
}

.risk-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.risk-description {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.risk-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    min-height: 380px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.feature-box:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
    transform: translateY(-5px);
}

.feature-image {
    width: 220px;
    height: 220px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-box:hover .feature-image {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    margin-top: auto;
    padding-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.risk-button-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-risk-analysis {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-risk-analysis:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
    color: var(--text-white);
}

.risk-planet {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-planet .planet-large {
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle at 25% 25%, #F0F8FF 0%, #87CEEB 15%, #4169E1 35%, #1E90FF 55%, #000080 75%, #191970 100%);
    border-radius: 50%;
    box-shadow: 
        inset -50px -50px 100px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(65, 105, 225, 0.6),
        0 0 120px rgba(30, 144, 255, 0.4),
        0 0 160px rgba(25, 25, 112, 0.3);
    position: relative;
    z-index: 2;
}

.risk-planet .planet-large::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.risk-planet .planet-large::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 20%;
    width: 25%;
    height: 25%;
    background: rgba(135, 206, 235, 0.2);
    border-radius: 50%;
    filter: blur(15px);
}

/* Services Page Styles */
.services-content {
    z-index: 2;
    position: relative;
    padding: 2rem 0 6rem 0;
    margin-top: 0;
    min-height: auto;
}

/* Services page specific content */
.services-page .services-content {
    margin-top: 0;
}

.services-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-category:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.category-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-style: italic;
    flex-shrink: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-list li {
    color: var(--text-white);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-list li:before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95) !important; /* navbar ile aynı */
    border-top: 1px solid rgba(255, 68, 68, 0.3);
    padding: 1rem 0;
    margin-top: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 60px;
    display: flex;
    align-items: center;
}

.footer p {
    color: var(--text-light);
    margin: 0;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.6s;
}
