
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Oswald:wght@300;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: #000;
    color: #fff;
    font-family: Arial;
}

.site-wrapper {
    overflow: hidden;
}

.hero {
    position: relative;
    height: 65vh;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% 60%;
}
.hero-bg-about {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,#000c,#000000cc,#00000044);
}



.logo h1 {
    color: #ff2b2b;
    font-size: 40px;
    font-weight: 900;
}

.logo p {
    font-size: 10px;
    letter-spacing: 5px;
    opacity: .7;
    margin:0px;
    margin-left:3px;
}

.menu {
    display: flex;
    gap: 40px;
}

    .menu a {
        color: white;
        text-decoration: none;
        transition: .3s;
    }

        .menu a:hover {
            color: #ff2b2b;
        }



.hero-content {
    position: relative;
    z-index: 5;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    max-width: 850px;
}

.hero-content-about {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
}

.mini-title {
    color: #ff2b2b;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size:13px;
}

.hero-content h2 {
    font-size: 85px;
    line-height: 1;
    font-weight: 900;
}

.hero-content span {
    color: #ff2b2b;
    display: block;
    
}

.hero-text {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-red {
    background: rgb(255, 43, 43);
    color: white;
    padding: 10px 35px;
    text-decoration: none;
    border-radius: 6px;
    height: 45px;
}
    .btn-red:hover {
        background: #D82323;
    }

.btn-dark {
    border: 1px solid rgba(255,255,255,.2);
    padding: 10px 35px;
    text-decoration: none;
    color: white;
    height: 45px;
}
    .btn-dark:hover {
        border: 1px solid rgba(216, 35, 35);
        background: #280E0A;
    }

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

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

.card {
    position: relative;
    overflow: hidden;
    min-height:250px
}
.card a{
    text-decoration:none;
}

    .card img {
        position: absolute;
        width: 100%;
        object-fit: cover;
        transition: .6s;
    }

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

    .card .overlay {
        position: absolute;
        inset: 0;
    }

.blueH .overlay {
    background: linear-gradient(#13024fcc,#790c70e5);
}

.red .overlay {
    background: linear-gradient(#770000cc,#2d0000f2);
    opacity: .6;
}

.green .overlay {
    background: linear-gradient(#006b3ccc,#002c18f2);
    opacity: .6;
}

.purple .overlay {
    background: linear-gradient(#190D3Ecc,#220018f2);
    opacity: .6;
}

.violet .overlay {
    background: linear-gradient(#021B36cc,#10002df2);
    opacity: .6;
}

.orange .overlay {
    background: linear-gradient(#8d4a00cc,#3a1d00f2);
    opacity:.6;
}

.card .content {
    position: relative;
    z-index: 5;
    height: 100%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    /*justify-content: flex-end;*/
    cursor: pointer;
    margin-top: 15px;
}
.card-border1 {
    border-top: 1px solid #5E6C78;
    border-right: 1px solid #5E6C78;
    border-bottom: none;
    border-left: none;
}
.card-border2 {
    border-top: none;
    border-bottom: 1px solid #5E6C78;
    border-right: 1px solid #5E6C78;
    border-left: none;
}
.card-border3 {
    border-top: none;
    border-bottom: 1px solid #5E6C78;
    border-right: 1px solid #5E6C78;
    border-left: 1px solid #5E6C78;
}
.card h3 {
    margin-top: 15px;
    font-size: 25px;
    color: #8B9494
}

.card p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.card button {
    margin-top: 50px;
    margin-bottom: 15px;
    width: 60px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.4);
    color: white;
    cursor: pointer;
}
.features-bar {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    background: #050b14;
    border-top: 1px solid rgba(255,255,255,.08);
}

.feature-item {
 
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: .3s;
}

    .feature-item:hover {
        background: #0b1422;
    }

.icon {
    width: 65px;
    height: 65px;
    border: 1px solid #ff2b2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff2b2b;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    font-size: 14px;
}



/* LOGO */

.logo-area {
    display: flex;
    align-items: center;
}

.logo-text h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
}

    .logo-text h1 span {
        color: #ff2b2b;
    }

.logo-text p {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 5px;
    color: rgba(255,255,255,.65);
}

/* MENU */

.menu {
    display: flex;
    gap: 45px;
}

    .menu a {
        position: relative;
        color: #fff;
        text-decoration: none;
        font-size: 17px;
        transition: .3s;
    }

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 0;
            height: 2px;
            background: #ff2b2b;
            transition: .3s;
        }

        .menu a:hover::after,
        .menu a.active::after {
            width: 100%;
        }

        .menu a:hover {
            color: #fff;
        }

/* PHONE */

.phone-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border: 1px solid rgba(255,43,43,.6);
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    background: rgba(0,0,0,.28);
    transition: .3s;
}

    .phone-btn:hover {
        background: #ff2b2b;
        transform: translateY(-2px);
    }

.phone-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.25);
    font-size: 17px;
}

.phone-btn span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .5px;
}

.features-container {
    display: flex;
    gap: 40px;
    background-color: transparent; /* Arka plan koyu ise görünür */
    padding: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 0, 0, 0.5); /* Kırmızımsı ince çerçeve */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000; /* Kırmızı ikon rengi */
    transition: all 0.3s ease;
}

    .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

.text-content {
    display: flex;
    flex-direction: column;
}

    .text-content .title {
        font-weight: 700;
        font-size: 18px;
        line-height: 1.2;
    }

    .text-content .subtitle {
        font-weight: 300;
        font-size: 13px;
        color: #cccccc; /* Daha sönük gri ton */
    }

/* Hover efekti (Opsiyonel) */
.feature-item:hover .icon-wrapper {
    background-color: #ff0000;
    color: white;
    border-color: #ff0000;
}


.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #650608;
    padding: 3px 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: #230C13;
}

.phone-icon {
    color: #ff0000;
    display: flex;
    align-items: center;
}

    .phone-icon svg {
        width: 14px;
        height: 14px;
    }

.phone-number {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Hover (Üzerine gelince) Efekti */
.phone-button:hover {
    background-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

    .phone-button:hover .phone-icon {
        color: #ffffff;
    }


.logo-container {
    display: flex;
    align-items: center;
    background-color: transparent; /* Sayfanızın koyu zemininde harika durur */
    padding: 10px;
    padding-top:20px;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', sans-serif; /* Keskin ve teknolojik font */
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1;
}

.sky {
   
    color: #ff0000; /* Kırmızı kısım */
}

.nova {
    color: #ffffff; /* Beyaz kısım */
    position: relative;
}

    /* "O" harfinin üzerindeki o küçük drone kanadı/çizgi detayı için */
    .nova::after {
        content: '';
        position: absolute;
        top: -2px;
        right: 38px; /* N ve O arasına hizalamak için */
        width: 15px;
        height: 2px;
        background-color: #ff0000;
    }

.logo-tagline {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 4.5px; /* Alt yazının ana logo boyuna yayılması için */
    margin-top: 5px;
    font-weight: 300;
    opacity: 0.9;
}


/* Genel Ayarlar */
.about-page {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

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

.red-text {
    color: #ff0000;
}

/* Hero Bölümü */
.about-hero {
    padding: 100px 0 60px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,0,0,0.05), transparent);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: #888;
    font-size: 18px;
    font-weight: 300;
}

/* İçerik Izgarası */
.content-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.text-side {
    flex: 1;
}

.section-heading {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-side p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.image-side {
    flex: 1;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: url('/images/drone-action.jpg') center/cover; /* Görsel yolunu güncelleyin */
    background-color: #1a1a1a; /* Görsel yoksa gri durur */
    border-left: 5px solid #ff0000;
    position: relative;
    border-radius: 4px;
}

/* İstatistik Kartları */
.about-stats {
    padding: 60px 0 100px 0;
}

.stats-grid {
    display: flex;
    gap: 30px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-10px);
        border-color: #ff0000;
    }

.stat-icon {
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 0, 0, 0.3);
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.stat-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .content-grid, .stats-grid {
        flex-direction: column;
    }

    .hero-title {
        font-size: 32px;
    }
}


.main-header {
    position: absolute; /* Görseldeki gibi içeriğin üstünde durması için */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* Logo Stili */
.logo-wrapper {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
}

.sky {
    color: #fff;
}

.nova {
    color: #ff0000;
}

.logo-tagline {
    color: #fff;
    font-size: 9px;
    letter-spacing: 3px;
    opacity: 0.8;
    margin-top: -5px;
}

/* Menü Linkleri */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s;
        position: relative;
        padding-bottom: 5px;
    }

        .nav-links a:hover, .nav-links a.active {
            color: #ff0000;
        }

        /* Altındaki kırmızı çizgi efekti */
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ff0000;
            bottom: 0;
            left: 0;
            transition: 0.3s;
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

/* Telefon Butonu */
.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ff0000;
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background: rgba(255, 0, 0, 0.1);
    transition: 0.3s;
}

    .nav-phone-btn:hover {
        background: #ff0000;
    }

.p-icon svg {
    width: 16px;
    height: 16px;
    color: #ff0000;
}

.nav-phone-btn:hover .p-icon svg {
    color: #fff;
}




/*------------------------------------------------------------------------*/

/* =========================================================
   ABOUT PAGE NEW STYLE
   (ESKİ CSS'E DOKUNMAZ)
========================================================= */

.about-page-new {
    background: radial-gradient(circle at top left, rgba(255,0,0,.08), transparent 30%), radial-gradient(circle at bottom right, rgba(255,0,0,.06), transparent 25%), linear-gradient(to bottom,#060606,#0d1117,#111827);
    min-height: 100vh;
    overflow: hidden;
}

/* HERO */

.about-hero-new {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .about-hero-new img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.03);
    }

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.88), rgba(0,0,0,.55), rgba(0,0,0,.4) );
}

/* HERO CONTENT */

.about-hero-content {
    position: relative;
    z-index: 5;
    padding-left: 100px;
    padding-top: 140px;
    max-width: 850px;
}

.about-mini {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,0,0,.08);
    border: 1px solid rgba(255,0,0,.2);
    color: #ff4d4d;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 25px;
}

.about-hero-content h1 {
    font-size: 78px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
}

    .about-hero-content h1 span {
        color: #ff2b2b;
        display: block;
    }

.about-hero-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    font-size: 16px;
    max-width: 700px;
}

/* GLASS CARD */

.about-glass-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    transition: .4s;
}

    .about-glass-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255,43,43,.5);
        box-shadow: 0 20px 40px rgba(255,0,0,.12);
    }

/* ABOUT SECTION */

.about-section-new {
    padding: 110px 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        width: 100%;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,.08);
    }

.floating-exp {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    background: linear-gradient(135deg,#ff2b2b,#8b0000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(255,0,0,.25);
}

    .floating-exp h3 {
        font-size: 55px;
        font-weight: 900;
    }

    .floating-exp p {
        font-size: 14px;
        letter-spacing: 1px;
    }

/* TEXT */

.about-text h2 {
    font-size: 52px;
    margin-bottom: 30px;
    line-height: 1.2;
}

    .about-text h2 span {
        color: #ff2b2b;
    }

.about-text p {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
    margin-bottom: 25px;
}

/* FEATURES */

.about-features-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.about-feature-new {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
}

    .about-feature-new .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 18px;
        background: rgba(255,43,43,.1);
        border: 1px solid rgba(255,43,43,.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff2b2b;
        font-size: 24px;
    }

/* STATS */

.about-stats-new {
    padding: 20px 100px 120px;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-box {
    padding: 45px 30px;
    text-align: center;
}

    .stat-box h3 {
        font-size: 58px;
        color: #ff2b2b;
        margin-bottom: 10px;
    }

    .stat-box p {
        color: rgba(255,255,255,.65);
    }

/* WHY US */

.why-us-new {
    padding: 0 100px 120px;
}

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

    .section-title-new span {
        color: #ff2b2b;
        letter-spacing: 4px;
        font-size: 13px;
    }

    .section-title-new h2 {
        font-size: 56px;
        margin-top: 20px;
    }

.why-grid-new {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-card-new {
    padding: 45px 35px;
}

    .why-card-new .why-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: rgba(255,43,43,.08);
        border: 1px solid rgba(255,43,43,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 30px;
        color: #ff2b2b;
    }

    .why-card-new h3 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .why-card-new p {
        color: rgba(255,255,255,.68);
        line-height: 1.8;
    }

/* CTA */

.about-cta {
    padding: 0 100px 120px;
}

.cta-wrapper {
    padding: 80px;
    border-radius: 32px;
    text-align: center;
    background: linear-gradient( 135deg, rgba(255,43,43,.12), rgba(255,255,255,.03) );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}

    .cta-wrapper h2 {
        font-size: 54px;
        margin-bottom: 25px;
    }

    .cta-wrapper p {
        color: rgba(255,255,255,.7);
        margin-bottom: 40px;
        line-height: 1.8;
    }

/* RESPONSIVE */

@media(max-width:992px) {

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

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

    .why-grid-new {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 58px;
    }
}

@media(max-width:768px) {

    .about-hero-content {
        padding: 120px 30px 0;
    }

    .about-section-new,
    .about-stats-new,
    .why-us-new,
    .about-cta {
        padding-left: 30px;
        padding-right: 30px;
    }

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

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-text h2,
    .section-title-new h2,
    .cta-wrapper h2 {
        font-size: 36px;
    }

    .cta-wrapper {
        padding: 50px 30px;
    }
}

/* ==================================================
   SERVICES PAGE
================================================== */

.services-page {
    background: linear-gradient(to bottom,#070707,#0c1118,#101826);
}

/* HERO */

.services-hero {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

    .services-hero img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.45);
    }

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.88), rgba(0,0,0,.35) );
}

.services-hero-content {
    position: relative;
    z-index: 5;
    padding-left: 100px;
    padding-top: 180px;
    max-width: 700px;
}

.services-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,0,0,.08);
    border: 1px solid rgba(255,0,0,.2);
    color: #ff2b2b;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.services-hero-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.services-hero-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
}

/* SERVICES */

.services-section {
    padding: 120px 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    margin-top: 70px;
}

.service-card-new {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
    transition: .5s;
    cursor: pointer;
}

    .service-card-new img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.92), rgba(0,0,0,.2) );
}

.service-content {
    position: absolute;
    bottom: 35px;
    left: 30px;
    z-index: 5;
}

    .service-content h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-content p {
        color: rgba(255,255,255,.7);
        line-height: 1.7;
    }

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(255,43,43,.4);
    box-shadow: 0 20px 40px rgba(255,0,0,.15);
}

    .service-card-new:hover img {
        transform: scale(1.08);
    }

/* REFERENCES */

.references-section {
    padding: 0 100px 120px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.reference-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: .4s;
}

    .reference-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255,43,43,.45);
    }

    .reference-card h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .reference-card p {
        color: rgba(255,255,255,.68);
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .reference-card a {
        color: #ff2b2b;
        text-decoration: none;
        font-weight: 600;
    }

.featured {
    background: linear-gradient( 135deg, rgba(255,43,43,.12), rgba(255,255,255,.03) );
    border: 1px solid rgba(255,43,43,.25);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 14px;
    border-radius: 50px;
    background: #ff2b2b;
    font-size: 11px;
    letter-spacing: 2px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

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

@media(max-width:768px) {

    .services-hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .services-section,
    .references-section {
        padding-left: 30px;
        padding-right: 30px;
    }

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

    .services-hero-content h1 {
        font-size: 46px;
    }
}



/* ==================================================
   PORTFOLIO PAGE
================================================== */

.portfolio-page {
    background: linear-gradient(to bottom,#050505,#0c1118,#101826);
}

/* HERO */

.portfolio-hero {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

    .portfolio-hero img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.42);
    }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.88), rgba(0,0,0,.3) );
}

.portfolio-hero-content {
    position: relative;
    z-index: 5;
    padding-left: 100px;
    padding-top: 180px;
    max-width: 700px;
}

.portfolio-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,0,0,.08);
    border: 1px solid rgba(255,0,0,.2);
    color: #ff2b2b;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.portfolio-hero-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.portfolio-hero-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
}

/* PROJECTS */

.portfolio-projects {
    padding: 120px 100px;
}

.portfolio-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 320px;
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
    transition: .5s;
}

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-item.wide {
        grid-column: span 2;
    }

    .portfolio-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s;
    }

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.95), rgba(0,0,0,.15) );
}

.portfolio-content {
    position: absolute;
    bottom: 35px;
    left: 35px;
    z-index: 5;
}

.portfolio-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255,43,43,.12);
    border: 1px solid rgba(255,43,43,.2);
    color: #ff2b2b;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.portfolio-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.portfolio-content p {
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255,43,43,.4);
    box-shadow: 0 20px 50px rgba(255,0,0,.15);
}

    .portfolio-item:hover img {
        transform: scale(1.08);
    }

/* STATS */

.portfolio-stats {
    padding: 0 100px 120px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

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

    .portfolio-item.large,
    .portfolio-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media(max-width:768px) {

    .portfolio-hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .portfolio-projects,
    .portfolio-stats {
        padding-left: 30px;
        padding-right: 30px;
    }

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

    .portfolio-hero-content h1 {
        font-size: 46px;
    }
}

/* ==================================================
   GALLERY PAGE
================================================== */

.gallery-page {
    background: linear-gradient(to bottom,#050505,#0d121b,#121d2c);
}

/* HERO */

.gallery-hero {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

    .gallery-hero img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.4);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.88), rgba(0,0,0,.28) );
}

.gallery-hero-content {
    position: relative;
    z-index: 5;
    padding-left: 100px;
    padding-top: 180px;
    max-width: 700px;
}

.gallery-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,0,0,.08);
    border: 1px solid rgba(255,0,0,.2);
    color: #ff2b2b;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.gallery-hero-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.gallery-hero-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
}

/* SECTION */

.gallery-section {
    padding: 120px 100px;
}

/* FILTERS */

.gallery-filters {
    display: flex;
    gap: 18px;
    margin-top: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

    .gallery-filters button {
        border: none;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        color: #fff;
        padding: 14px 24px;
        border-radius: 50px;
        cursor: pointer;
        transition: .4s;
    }

        .gallery-filters button:hover,
        .gallery-filters button.active {
            background: #ff2b2b;
            border-color: #ff2b2b;
        }

/* MASONRY */

.gallery-masonry {
    columns: 4 280px;
    column-gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 25px;
    break-inside: avoid;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.08);
    transition: .5s;
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: .7s;
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.92), rgba(0,0,0,.15) );
}

.gallery-item-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 5;
}

    .gallery-item-content span {
        display: inline-block;
        padding: 8px 14px;
        border-radius: 50px;
        background: rgba(255,43,43,.12);
        border: 1px solid rgba(255,43,43,.2);
        color: #ff2b2b;
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .gallery-item-content h3 {
        font-size: 28px;
        line-height: 1.3;
    }

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255,43,43,.4);
    box-shadow: 0 20px 40px rgba(255,0,0,.15);
}

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* DIFFERENT HEIGHTS */

.gallery-item.tall img {
    height: 700px;
    object-fit: cover;
}

.gallery-item.wide img {
    height: 320px;
    object-fit: cover;
}

.gallery-item:not(.tall):not(.wide) img {
    height: 450px;
    object-fit: cover;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .gallery-hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .gallery-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .gallery-hero-content h1 {
        font-size: 46px;
    }
}

/* ==================================================
   CONTACT PAGE
================================================== */

.contact-page {
    background: linear-gradient(to bottom,#050505,#0d131d,#111c2a);
}

/* HERO */

.contact-hero {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

    .contact-hero img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.42);
    }

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.88), rgba(0,0,0,.28) );
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    padding-left: 100px;
    padding-top: 180px;
    max-width: 700px;
}

.contact-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,0,0,.08);
    border: 1px solid rgba(255,0,0,.2);
    color: #ff2b2b;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.contact-hero-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.contact-hero-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
}

/* CONTACT */

.contact-section {
    padding: 120px 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    color: rgba(255,255,255,.68);
    line-height: 1.9;
    margin-top: 25px;
    margin-bottom: 50px;
    max-width: 550px;
}

/* INFO */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: .4s;
}

    .contact-info-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255,43,43,.4);
    }

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,0,0,.08);
    border: 1px solid rgba(255,43,43,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: rgba(255,255,255,.65);
}

/* FORM */

.contact-form-wrapper {
    padding: 45px;
    border-radius: 30px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group-new input,
.input-group-new textarea {
    width: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 20px;
    color: #fff;
    outline: none;
    transition: .3s;
    font-size: 15px;
}

    .input-group-new input:focus,
    .input-group-new textarea:focus {
        border-color: #ff2b2b;
        box-shadow: 0 0 20px rgba(255,0,0,.15);
    }

.contact-submit-btn {
    height: 60px;
    border: none;
    border-radius: 18px;
    background: #ff2b2b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
}

    .contact-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255,0,0,.2);
    }

/* MAP */

.map-section {
    padding: 0 100px 120px;
}

.map-box {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.08);
}

    .map-box iframe {
        width: 100%;
        height: 500px;
        border: none;
        filter: grayscale(1) invert(.92);
    }

/* RESPONSIVE */

@media(max-width:992px) {

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

@media(max-width:768px) {

    .contact-hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-section,
    .map-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-hero-content h1 {
        font-size: 46px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}



/* =========================================
   DEFAULT NAVBAR
========================================= */


.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: transparent;
    justify-content: space-between;
    align-items: center;
    padding: 5px 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.35s ease, transform 0.35s ease;
}


.topbar {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease, border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}


    .topbar.scrolled {
        position: fixed;
        background: rgba(5,10,18,.78);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 10px 40px rgba(0,0,0,.35);
        padding-top: 12px;
        padding-bottom: 12px;
    }

        /* MENU ACTIVE */

        .topbar.scrolled .menu a.active::after {
            width: 100%;
        }

        /* PHONE */

        .topbar.scrolled .phone-button {
            background: rgba(255,255,255,.03);
        }





/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(80px) scale(.96);
    transition: opacity .9s ease, transform .9s ease;
    will-change: opacity, transform;
}

    /* ACTIVE */

    .reveal.active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* LEFT */

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity .9s ease, transform .9s ease;
}

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

/* RIGHT */

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity .9s ease, transform .9s ease;
}

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

/* ZOOM */

.reveal-zoom {
    opacity: 0;
    transform: scale(.7);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal-zoom.active {
        opacity: 1;
        transform: scale(1);
    }

/* ROTATE */

.reveal-rotate {
    opacity: 0;
    transform: rotate(4deg) translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

    .reveal-rotate.active {
        opacity: 1;
        transform: rotate(0) translateY(0);
    }


.reveal-delay-1 {
    transition-delay: .15s;
}

.reveal-delay-2 {
    transition-delay: .3s;
}

.reveal-delay-3 {
    transition-delay: .45s;
}


/* =========================================
   DARK GLASS FOOTER
========================================= */

.glass-footer {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    padding-top: 80px;
    background: linear-gradient( 180deg, rgba(5,8,15,.96), rgba(10,14,24,.98));
    border-top: 1px solid rgba(255,255,255,.05);
}

/* BG EFFECT */

.glass-footer-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top left, rgba(255,0,0,.14), transparent 30%), radial-gradient( circle at bottom right, rgba(0,140,255,.08), transparent 35%);
    pointer-events: none;
}

/* CONTAINER */

.glass-footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding: 0 60px 70px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

/* GLASS CARDS */

.glass-footer-brand,
.glass-footer-links,
.glass-footer-contact {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(18px);
    transition: .4s ease;
}

    .glass-footer-brand:hover,
    .glass-footer-links:hover,
    .glass-footer-contact:hover {
        transform: translateY(-8px);
        border-color: rgba(255,0,0,.25);
        box-shadow: 0 20px 50px rgba(0,0,0,.35);
    }

/* LOGO */

.glass-logo {
    font-size: 42px;
    font-family: 'Orbitron',sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
}

    .glass-logo .sky {
        color: #fff;
    }

    .glass-logo .nova {
        color: #ff1e1e;
    }

/* TEXT */

.glass-footer-brand p {
    color: rgba(255,255,255,.68);
    line-height: 1.9;
    font-size: 15px;
}

/* TITLES */

.glass-footer-links h3,
.glass-footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}

/* LINKS */

.glass-footer-links {
    display: flex;
    flex-direction: column;
}

    .glass-footer-links a {
        color: rgba(255,255,255,.65);
        text-decoration: none;
        margin-bottom: 15px;
        transition: .3s ease;
    }

        .glass-footer-links a:hover {
            color: #fff;
            padding-left: 8px;
        }

/* CONTACT */

.glass-footer-contact {
    display: flex;
    flex-direction: column;
}

    .glass-footer-contact span,
    .glass-footer-contact a {
        color: rgba(255,255,255,.68);
        text-decoration: none;
        margin-bottom: 18px;
        transition: .3s ease;
    }

        .glass-footer-contact a:hover {
            color: #ff1e1e;
        }

/* SOCIALS */

.glass-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

    .glass-socials a {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        text-decoration: none;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.03);
        transition: .35s ease;
    }

        .glass-socials a:hover {
            background: #ff1e1e;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255,0,0,.35);
        }

/* BOTTOM */

.glass-footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 28px 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.45);
    font-size: 14px;
    backdrop-filter: blur(12px);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:1100px) {

    .glass-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .glass-footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px 50px;
    }

    .glass-logo {
        font-size: 34px;
    }
}


/* =========================================
   MOBILE TOGGLE
========================================= */

body.menu-open {
    overflow: hidden;
}

.mobile-toggle {
    width: 48px;
    height: 48px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 99999;
    position: relative;
}

    .mobile-toggle span {
        width: 100%;
        height: 2px;
        background: #fff;
        transition: .35s ease;
    }

    /* ACTIVE */

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99998;
    visibility: hidden;
    opacity: 0;
    transition: .4s ease;
}

    /* ACTIVE */

    .mobile-menu.active {
        visibility: visible;
        opacity: 1;
    }

/* OVERLAY */

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(8px);
}

/* CONTENT */

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background: linear-gradient( 180deg, rgba(10,15,25,.98), rgba(5,8,15,.98));
    border-left: 1px solid rgba(255,255,255,.08);
    padding: 30px;
    transform: translateX(100%);
    transition: .45s ease;
    display: flex;
    flex-direction: column;
}

/* ACTIVE */

.mobile-menu.active
.mobile-menu-content {
    transform: translateX(0);
}

/* TOP */

.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* LOGO */

.mobile-logo {
    font-size: 32px;
    font-family: 'Orbitron',sans-serif;
    font-weight: 900;
}

    .mobile-logo .sky {
        color: #fff;
    }

    .mobile-logo .nova {
        color: #ff1e1e;
    }

/* CLOSE */

.mobile-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: 18px;
    transition: .3s ease;
}

    .mobile-close:hover {
        background: #ff1e1e;
    }

/* NAV */

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .mobile-nav a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        padding: 16px 18px;
        border-radius: 14px;
        transition: .35s ease;
        background: rgba(255,255,255,.03);
        border: 1px solid transparent;
    }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            background: rgba(255,0,0,.12);
            border-color: rgba(255,0,0,.3);
            transform: translateX(6px);
        }

/* CONTACT */

.mobile-contact {
    margin-top: auto;
}

    .mobile-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background: #ff1e1e;
        color: #fff;
        padding: 16px;
        border-radius: 16px;
        font-weight: 600;
        transition: .35s ease;
    }

        .mobile-contact a:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(255,0,0,.35);
        }

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

    .menu {
        display: none;
    }

    .phone-button {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

.hero-baslik{
    margin-top:180px;
}
/* =========================================================
   MOBILE HOME FIX
========================================================= */
@media (max-width: 768px) {
    /* HERO */

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 120px 20px 40px;
        width: 100%;
    }

        .hero-content h3 {
            font-size: 42px;
            line-height: 1.1;
        }

            .hero-content h3 span {
                display: block;
            }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

        .hero-text br {
            display: none;
        }

    /* FEATURE ICONS */

    .features-container {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
        margin-top: 30px;
    }

        .features-container .feature-item {
            width: 100%;
        }

    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 14px;
        margin-top: 30px;
    }

        .hero-buttons a {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

    .hero-baslik {
        margin-top: 40px;
    }

    /* =========================================
       CARD SECTIONS
    ========================================= */

    .cards {
        display: flex;
        flex-direction: column;
        margin-top: 450px;
    }
    .cardss {
        display: flex;
        flex-direction: column;
    }
    .card {
        min-height: 240px;
        border-right: 0 !important;
    }

        .card .content {
            padding: 25px;
        }

            .card .content h3 {
                font-size: 28px;
            }

            .card .content p {
                font-size: 14px;
                line-height: 1.7;
                max-width: 90%;
            }

            .card .content button {
                width: 52px;
                height: 52px;
                font-size: 22px;
            }

    .img-about {
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0 !important;
       opacity: .90;
    }

    /* =========================================
       FEATURES BAR
    ========================================= */

    .features-bar {
        display: flex;
        flex-direction: column;
        padding: 10px 14px 20px;
        gap: 14px;
    }

        .features-bar .feature-item {
            width: 100%;
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 18px;
            background: rgba(255,255,255,.03);
            backdrop-filter: blur(12px);
            padding: 18px !important;
        }

            .features-bar .feature-item h4 {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .features-bar .feature-item p {
                font-size: 13px;
                line-height: 1.7;
                opacity: .8;
            }

        .features-bar .icon {
            min-width: 54px;
            width: 54px;
            height: 54px;
            font-size: 24px;
        }

    /* =========================================
       MOBILE TOPBAR
    ========================================= */

    .topbar {
        padding: 18px 20px;
    }

    .logo-text {
        font-size: 30px;
    }

    .logo p {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .phone-button {
        display: none;
    }

    .menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 480px) {

    .hero-content {
        padding-top: 110px;
    }

        .hero-content h3 {
            font-size: 34px;
        }

    .mini-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .card {
        min-height: 220px;
    }

        .card .content h3 {
            font-size: 24px;
        }

    .features-bar {
        padding-bottom: 40px;
    }
}

.footer {
    position: relative;
    background: #050a12;
    overflow: hidden;
    color: #fff;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 80px 40px 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 800;
}



.footer-brand p {
    margin-top: 20px;
    color: #9ea8b6;
    line-height: 1.8;
    max-width: 400px;
}

.footer-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat strong {
    display: block;
    font-size: 28px;
    color: #1da1ff;
}

.stat span {
    font-size: 13px;
    color: #9ea8b6;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-menu,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .footer-menu a,
    .footer-services span {
        color: #9ea8b6;
        text-decoration: none;
        transition: .3s;
    }

        .footer-menu a:hover {
            color: #1da1ff;
            transform: translateX(6px);
        }

.footer-phone {
    font-size: 28px;
    font-weight: 700;
    color: #FF0000;
    text-decoration: none;
}

.footer-contact p {
    color: #9ea8b6;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .footer-social a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.05);
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #1da1ff;
            transform: translateY(-5px);
        }

.footer-cta {
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-button {
    background: #1da1ff;
    color: #fff;
    padding: 16px 30px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    color: #6c7787;
    font-size: 14px;
}

@media (max-width: 992px) {

    .footer-container {
        padding: 60px 25px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

        .footer-cta h3 {
            font-size: 24px;
        }
}

@media (max-width: 768px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-stats {
        justify-content: center;
        gap: 25px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-phone {
        font-size: 24px;
    }

    .footer-cta {
        padding: 30px 0;
    }

        .footer-cta h3 {
            font-size: 20px;
            line-height: 1.4;
        }

    .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .footer-logo {
        font-size: 34px;
    }

    .stat {
        flex: 1;
    }

        .stat strong {
            font-size: 22px;
        }

    .footer h4 {
        margin-bottom: 15px;
    }

    .footer-menu a,
    .footer-services span {
        padding: 4px 0;
    }
}

.mobile-call {
    display: none;
}

@media(max-width:768px) {

    .mobile-call {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        height: 56px;
        align-items: center;
        justify-content: center;
        background: #1da1ff;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        z-index: 9999;
        box-shadow: 0 10px 30px rgba(29,161,255,.35);
    }
}


