/* Base Reset & Variables */
:root {
    --navy-blue: #0A1128;
    --navy-light: #162B4E;
    --navy-accent: #1C3F75;
    --red-main: #D9042B;
    --red-light: #FF1E4A;
    --black: #000000;
    --black-soft: #0D0D0D;
    --white: #FFFFFF;
    --gray: #b4bbcc;
    --glass-bg: rgba(22, 43, 78, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Empty Boxes Styling - To show layout without content */
.empty-box {
    background: linear-gradient(145deg, var(--navy-blue), var(--black-soft));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray);
}

.empty-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

.empty-content-box {
    min-height: 150px;
    background: repeating-linear-gradient(45deg,
            rgba(10, 17, 40, 0.5),
            rgba(10, 17, 40, 0.5) 10px,
            rgba(22, 43, 78, 0.2) 10px,
            rgba(22, 43, 78, 0.2) 20px);
    border: 1px dashed var(--navy-accent);
    border-radius: 8px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray);
}

/* Top Bar */
.top-bar {
    background-color: var(--navy-blue);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--glass-border);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--gray);
    margin-right: 15px;
    font-size: 15px;
}

.social-links a:hover {
    color: var(--red-main);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.contact-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 20px;
    background: var(--navy-light);
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: var(--gray);
}

.languages a {
    color: var(--gray);
    margin-left: 10px;
    font-weight: 600;
}

.languages a:hover {
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--black-soft);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--navy-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo span {
    font-size: 16px;
    color: var(--red-main);
    font-weight: 500;
    letter-spacing: 3px;
}
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--red-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-main), var(--red-light));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(217, 4, 43, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(217, 4, 43, 0.6);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--navy-light) 0%, var(--black) 70%);
    min-height: 650px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--navy-accent);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    z-index: 1;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero > .container {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.hero-button-group {
    margin-top: 20px;
    display: inline-block;
}

.hero-image {
    flex: 1;
    height: 420px;
    border-radius: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--navy-light), var(--navy-blue));
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    font-weight: 300;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 80%;
}

/*Contact Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(145deg, var(--navy-light), var(--navy-blue));
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Headers */
.contact-info-box h2, 
.contact-form-box h2 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 26px;
}

/* contant infos*/
.info-item, 
.info-location {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i, 
.info-location i {
    font-size: 22px;
    color: #b80000;
    margin-top: 5px;
}

.info-item h4, 
.info-location h4 {
    margin: 0 0 5px 0;
    color: #78b7ff;
    font-size: 16px;
}

.info-item p, 
.info-location p {
    margin: 0 0 5px 0;
    color: #d7eaff;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info-box a {
    display: block;
    margin-top: 10px;
}

.contact-info-box a:hover .info-item h4,
.contact-info-box a:hover .info-item p {
    text-decoration: underline;
    color: #799dff;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

/* Gönder */
.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #003d82;
}

/* About Section */
.about {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--navy-light) 40%, var(--black) 75%);
    /* background-color: rgb(0, 35, 82); */
    font-size: 15px;
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.about.animate-open {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero.animate-open,
.about.animate-open {
    animation: fadeInUp 0.6s ease forwards;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.corporate-block {
    margin-bottom: 100px;
}

.corporate-block:last-child {
    margin-bottom: 0;
}

.corporate-block.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    height: 350px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-imageA4 {
    flex: 1;
    height: 500px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-imageA4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-height: 350px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--black);
}

.services-inner {
    display: flex;
    gap: 30px;
}

.services-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    height: 280px;
}

.service-card.large {
    height: 400px;
}

.services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--navy-blue);
    border-top: 1px solid var(--navy-accent);
}

.features-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-item {
    flex: 1;
    height: 200px;
}

/* Footer */
.footer {
    background-color: var(--black-soft);
    padding-top: 80px;
    border-top: 2px solid var(--red-main);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo a {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo span {
    font-size: 18px;
    color: var(--red-main);
    letter-spacing: 4px;
}

.footer-contact {
    flex: 1;
    min-height: 120px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--gray);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--red-main);
    padding-left: 5px;
}

.footer-bottom {
    background-color: var(--black);
    padding: 20px 0;
    border-top: 1px solid var(--navy-light);
    text-align: center;
}

/* Component Styles */


/* About */
.about-image {
    background: linear-gradient(145deg, var(--navy-light), var(--navy-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--navy-accent);
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--glass-bg);
    color: var(--red-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--red-main);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--red-main);
}

.about-stats {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item i {
    font-size: 40px;
    color: var(--red-main);
}

.stat-info h3 {
    font-size: 36px;
    color: var(--white);
    line-height: 1;
}

.stat-info p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--gray);
}

/* Services */
.service-card {
    background-color: var(--black-soft);
    border: 1px solid var(--navy-light);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--red-main);
}

.card-icon {
    font-size: 40px;
    color: var(--red-light);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    flex-grow: 1;
}

.card-link {
    margin-top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-card:hover .card-link {
    background-color: var(--red-main);
}

/* Features */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: auto !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--gray);
    font-size: 14px;
}

/* Footer Buttons */
.footer-text {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.btn-email {
    background-color: var(--navy-accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-email:hover {
    background-color: var(--navy-light);
}

/* Responsive Design */
@media (max-width: 992px) {

    .nav-links,
    .header-action {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
    }

    .about-inner,
    .corporate-block.reverse {
        flex-direction: column;
    }

    .services-inner {
        flex-direction: column;
    }

    .features-inner {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
    }
}

.lang-btn.active {
    color: var(--red-main) !important;
}