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

body {
    font-family: 'Poppins', sans-serif;
    color: #444444;
    line-height: 1.6;
}

body.mobile-nav-active {
    overflow: hidden;
}

a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    color: #66b3ff;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #4a90e2;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #66b3ff;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Custom Preloader with Stars Animation */
.preloader-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #16213e 0%, #1a2748 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-custom.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.stars-container {
    position: relative;
    width: 400px;
    height: 250px;
    margin: 0 auto 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star {
    position: absolute;
    font-size: 28px;
    color: #4a90e2;
    opacity: 0;
    transform: scale(0);
    animation-fill-mode: forwards;
}

.star i {
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.7));
}

/* Yıldızların başlangıç pozisyonları - farklı yönlerden gelecek */
.star-1 {
    /* Sol taraftan gelecek */
    top: 50%;
    left: -100px;
    animation: starAppearFromLeft 1s ease-out 0.2s forwards, moveToPosition1 1.2s ease-in-out 1.5s forwards;
}

.star-2 {
    /* Üst taraftan gelecek */
    top: -100px;
    left: 25%;
    animation: starAppearFromTop 1s ease-out 0.4s forwards, moveToPosition2 1.2s ease-in-out 1.7s forwards;
}

.star-3 {
    /* Merkez yıldız - büyüyerek gelecek */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: starAppearCenter 1s ease-out 0.3s forwards, stayCenter 1.0s ease-in-out 1.0s forwards;
}

.star-4 {
    /* Alt taraftan gelecek */
    top: 250px;
    left: 75%;
    animation: starAppearFromBottom 1s ease-out 0.8s forwards, moveToPosition4 1.2s ease-in-out 2.1s forwards;
}

.star-5 {
    /* Sağ taraftan gelecek */
    top: 50%;
    left: 500px;
    animation: starAppearFromRight 1s ease-out 1.0s forwards, moveToPosition5 1.2s ease-in-out 2.3s forwards;
}

/* Farklı yönlerden gelme animasyonları */
@keyframes starAppearFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0) rotate(0deg);
    }
    50% {
        transform: translateX(0) scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(360deg);
    }
}

@keyframes starAppearFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0) rotate(0deg);
    }
    50% {
        transform: translateY(0) scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(360deg);
    }
}

@keyframes starAppearFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0) rotate(0deg);
    }
    50% {
        transform: translateY(0) scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(360deg);
    }
}

@keyframes starAppearFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0) rotate(0deg);
    }
    50% {
        transform: translateX(0) scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(360deg);
    }
}

@keyframes starAppearCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
}

/* Yan yana dizilme animasyonları */
@keyframes moveToPosition1 {
    0% {
        transform: scale(1);
    }
    100% {
        top: 50%;
        left: 10%;
        transform: translate(-50%, -50%) scale(1.2);
        color: #ffd700;
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
}

@keyframes moveToPosition2 {
    0% {
        transform: scale(1);
    }
    100% {
        top: 50%;
        left: 30%;
        transform: translate(-50%, -50%) scale(1.2);
        color: #ffd700;
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
}

@keyframes stayCenter {
    0% {
        transform: translate(-50%, -50%) scale(1);
        color: #4a90e2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        color: #ffd700;
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
    }
}

@keyframes moveToPosition4 {
    0% {
        transform: scale(1);
    }
    100% {
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%) scale(1.2);
        color: #ffd700;
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
}

@keyframes moveToPosition5 {
    0% {
        transform: scale(1);
    }
    100% {
        top: 50%;
        left: 90%;
        transform: translate(-50%, -50%) scale(1.2);
        color: #ffd700;
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
}

/* Şirket adı animasyonu */
.company-name {
    opacity: 0;
    transform: translateY(30px);
    animation: showCompanyName 1s ease-out 3.5s forwards;
}

.company-name img {
    max-height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.5));
}

.company-name h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

.company-name p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 1px;
}

@keyframes showCompanyName {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Çıkış animasyonu */
.preloader-custom.fade-out {
    animation: fadeOutPreloader 1s ease-out forwards;
}

@keyframes fadeOutPreloader {
    0% {
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .stars-container {
        width: 350px;
        height: 200px;
    }
    
    .company-name img {
        max-height: 55px;
        margin-bottom: 12px;
    }
    
    .company-name h1 {
        font-size: 36px;
    }
    
    .company-name p {
        font-size: 14px;
    }
    
    .star {
        font-size: 24px;
    }
    
    /* Mobilde yıldızların pozisyonlarını ayarla */
    .star-1 { left: -80px; }
    .star-4 { top: 200px; }
    .star-5 { left: 430px; }
}

/* Header */
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(22, 33, 62, 0.98);
    padding: 15px 0;
}

#header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

#header .logo a {
    color: #fff;
    display: flex;
    align-items: center;
}

#header .logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    padding: 0;
}

/* Navigation Menu */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #106eea;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #4a90e2;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: block;
    line-height: 0;
    transition: 0.5s;
    position: relative;
    z-index: 9999;
}

.mobile-nav-toggle.fa-times {
    color: #fff;
}

/* Mobile Menu Overlay */
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

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

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
}

/* Mobile Menu Content */
.navbar-mobile .navbar-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #16213e;
    padding: 80px 0 50px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.navbar-mobile.active .navbar-nav {
    transform: translateX(0);
}

.navbar-mobile .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-mobile .nav-link {
    display: block;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.navbar-mobile .nav-link:hover,
.navbar-mobile .nav-link.active {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

/* Hero Section */
#hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #16213e 0%, #1a2748 50%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 60px 0;
}

#hero .container {
    padding-top: 0;
}

#hero .hero-content .hero-subtitle {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

#hero .hero-content .hero-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #4a90e2;
    transform: translateY(-50%);
}

#hero h1 {
    margin: 0 0 30px 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

#hero h1 .text-primary {
    color: #4a90e2 !important;
}

#hero .hero-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
}

#hero .hero-buttons {
    gap: 20px;
}

#hero .btn-get-started {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: #4a90e2;
    text-decoration: none;
    border: none;
}

#hero .btn-get-started:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    color: #fff;
}

#hero .btn-view-portfolio {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

#hero .btn-view-portfolio:hover {
    border-color: #4a90e2;
    color: #4a90e2;
    transform: translateY(-2px);
}

/* Hero Image */
#hero .hero-image-container {
    position: relative;
}

#hero .hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Overlay */
#hero .stats-overlay {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
}

#hero .stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    min-width: 140px;
}

#hero .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

#hero .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

#hero .stat-clients {
    transform: translateX(20px);
}

#hero .stat-experience {
    transform: translateX(-20px);
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
        padding: 120px 0 60px 0;
    }
    
    #hero h1 {
        font-size: 42px;
    }
    
    #hero .hero-content .hero-subtitle {
        padding-left: 0;
    }
    
    #hero .hero-content .hero-subtitle::before {
        display: none;
    }
    
    #hero .stats-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding: 0;
    }
    
    #hero .stat-item {
        transform: none !important;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    #hero .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    #hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    #hero .btn-get-started,
    #hero .btn-view-portfolio {
        padding: 12px 30px;
        font-size: 14px;
        width: 200px;
        text-align: center;
    }
    
    #hero .stats-overlay {
        flex-direction: column;
        gap: 15px;
    }
    
    #hero .stat-number {
        font-size: 28px;
    }
}

/* Sections General */
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #4a90e2;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #4a90e2;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

/* About Section */
.about {
    background: #16213e;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.about::before {
    display: none;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about .section-title h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.about .section-title p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.about .about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about .about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.about .purpose-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #4a90e2;
    padding: 20px 30px;
    border-radius: 15px;
    max-width: 350px;
    min-width: 320px;
    color: #fff;
    width: calc(100% - 60px);
}

.about .purpose-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about .purpose-icon i {
    font-size: 24px;
    color: #fff;
}

.about .purpose-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.about .purpose-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #fff;
}

.about .about-content .section-subtitle {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.about .about-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}

.about .about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.about .about-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 25px 0;
    color: #fff;
}

.about .principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin-top: 30px;
}

.about .principle-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.about .principle-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about .principle-icon i {
    font-size: 20px;
    color: #4a90e2;
}

.about .principle-item span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.about .principle-item:hover .principle-icon i {
    color: #66b3ff;
}

@media (max-width: 991px) {
    .about::before {
        font-size: 20vw;
    }
    
    .about .about-content h3 {
        font-size: 28px;
    }
    
    .about .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }
    
    .about .purpose-overlay {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about::before {
        font-size: 25vw;
    }
    
    .about .section-title h2 {
        font-size: 36px;
    }
    
    .about .about-content h3 {
        font-size: 24px;
    }
    
    .about .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about .principle-item {
        justify-content: flex-start;
    }
    
    .about .principle-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .about .principle-icon i {
        font-size: 18px;
    }
}

/* Stats Section */
.stats {
    background: #16213e;
    color: #fff;
    padding: 80px 0;
}

.stats-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.stats-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Happy Clients - Mavi */
.stats .col-lg-3:nth-child(1) .stats-icon {
    background: rgba(74, 144, 226, 0.2);
}

.stats .col-lg-3:nth-child(1) .stats-icon i {
    color: #4a90e2;
}

/* Projects - Turuncu */
.stats .col-lg-3:nth-child(2) .stats-icon {
    background: rgba(255, 140, 66, 0.2);
}

.stats .col-lg-3:nth-child(2) .stats-icon i {
    color: #ff8c42;
}

/* Hours Of Support - Yeşil */
.stats .col-lg-3:nth-child(3) .stats-icon {
    background: rgba(46, 204, 113, 0.2);
}

.stats .col-lg-3:nth-child(3) .stats-icon i {
    color: #2ecc71;
}

/* Hard Workers - Kırmızı */
.stats .col-lg-3:nth-child(4) .stats-icon {
    background: rgba(231, 76, 60, 0.2);
}

.stats .col-lg-3:nth-child(4) .stats-icon i {
    color: #e74c3c;
}

.stats-icon i {
    font-size: 24px;
}

.stats-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.stats-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Services Section */
.services {
    background: #16213e;
    color: #fff;
    padding: 100px 0;
}

.services .section-title h2 {
    color: #fff;
}

.services .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

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

.services-badge {
    margin-bottom: 25px;
}

.services-badge span {
    background: #4a90e2;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-content h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}

.services-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.services-stats {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    padding-left: 0;
    height: 100%;
}

.services-stats .stat-item {
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4a90e2;
    padding: 30px 25px;
    border-radius: 10px;
    margin-bottom: 0;
    flex: 0 0 auto;
    transition: 0.3s;
}

.services-stats .stat-item:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateX(5px);
}

.services-stats .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.services-stats .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.services-grid {
    margin-top: 80px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    transition: 0.3s;
    height: 100%;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #4a90e2;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.service-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #16213e;
    color: #fff;
}

.features .section-title h2 {
    color: #fff;
}

.features .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.features-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.features-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-content .feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.features-content .feature-list i {
    color: #4a90e2;
    margin-right: 15px;
    font-size: 18px;
}

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

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

.features-stats .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1;
}

.features-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 5px;
}

/* =============================================
   LEGAL (Mentions légales) PAGE
   ============================================= */

.legal-main {
    background: #0e1530;
    min-height: 100vh;
    padding-top: 110px; /* fixed header yüksekliğini telafi et */
}

.legal-hero {
    padding: 40px 0 10px 0;
}

.legal-hero .section-title h2 {
    color: #ffffff;
}

.legal-hero .section-title p {
    color: rgba(255, 255, 255, 0.75);
}

.legal-content {
    padding: 20px 0 60px 0;
}

.legal-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px 25px 20px 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.legal-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.legal-block p,
.legal-block li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.legal-block ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.legal-block a {
    color: #4a90e2;
}

.legal-block a:hover {
    color: #66b3ff;
}

@media (max-width: 768px) {
    .legal-main {
        padding-top: 95px;
    }

    .legal-block {
        padding: 20px 18px 18px 18px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.feature-card:nth-child(1) {
    border-left-color: #27ae60;
}

.feature-card:nth-child(2) {
    border-left-color: #e67e22;
}

.feature-card:nth-child(3) {
    border-left-color: #27ae60;
}

.feature-card:nth-child(4) {
    border-left-color: #27ae60;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-status.deployed {
    background: #d5f4e6;
    color: #27ae60;
}

.feature-status.active {
    background: #fdeaa7;
    color: #e67e22;
}

@media (max-width: 991px) {
    .stats-number {
        font-size: 36px;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-icon i {
        font-size: 24px;
    }
    
    .services-content {
        margin-bottom: 40px;
    }
    
    .services-stats {
        margin-top: 30px;
    }
    
    .services-content h3 {
        font-size: 24px;
    }
    
    .services-stats .stat-number {
        font-size: 36px;
    }
    
    .features-content h3 {
        font-size: 24px;
    }
    
    .features-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .features-stats .stat-number {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .stats-number {
        font-size: 28px;
    }
    
    .stats-icon {
        width: 50px;
        height: 50px;
    }
    
    .stats-icon i {
        font-size: 20px;
    }
    
    .stats-item {
        margin-bottom: 30px;
    }
    
    .services-content h3 {
        font-size: 20px;
    }
    
    .service-item {
        margin-bottom: 30px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features-content h3 {
        font-size: 20px;
    }
    
    .features-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .features-stats .stat-number {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
}

/* Team Section */
.team {
    background: #16213e;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.team .section-title h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.team .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.team-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.team-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(74, 144, 226, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4a90e2, transparent, #4a90e2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 0.3;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    border: 3px solid #4a90e2;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .member-photo img {
    transform: scale(1.1);
}

.team-card:hover .member-photo {
    border-color: #fff;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.member-info span {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    line-height: 1.4;
}

.member-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
    text-align: left;
    margin-bottom: 0;
}

/* Responsive Design for Team */
@media (max-width: 991px) {
    .team {
        padding: 80px 0;
    }
    
    .team .section-title h2 {
        font-size: 32px;
    }
    
    .team .section-title p {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .team-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .member-info h4 {
        font-size: 18px;
    }
    
    .member-info span {
        font-size: 13px;
    }
    
    .member-info p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 60px 0;
    }
    
    .team .section-title h2 {
        font-size: 28px;
    }
    
    .team .section-title p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .team-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .member-info h4 {
        font-size: 16px;
    }
    
    .member-info span {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .member-info p {
        font-size: 11px;
    }
}

/* Pricing Section */
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid #f2f2f2;
    transition: 0.3s;
}

.pricing .box:hover {
    transform: scale(1.1);
    border-color: #4a90e2;
}

.pricing .box.featured {
    border-color: #4a90e2;
    transform: scale(1.1);
}

.pricing .box.featured .btn {
    background: #4a90e2;
    border-color: #4a90e2;
}

.pricing .box h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #4a90e2;
    background: #f8f8f8;
}

.pricing .box h4 {
    font-size: 36px;
    color: #4a90e2;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: #4a90e2;
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .buy-btn:hover {
    background: #4a90e2;
    color: #fff;
}

.pricing .featured .buy-btn {
    background: #4a90e2;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #106eea;
}

/* Contact Section */
#contact.contact {
    background: #16213e !important;
    color: #fff;
    padding: 100px 0;
}

section#contact {
    background-color: #16213e !important;
}

.contact .section-title h2 {
    color: #fff !important;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact .section-title p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.contact-info {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #fff;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.contact-map {
    margin-bottom: 40px;
}

.contact-map iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-container p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    border-color: #4a90e2;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.form-submit button i {
    margin-left: 8px;
}

/* Firebase Form Messages */
.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
    color: #2ecc71;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
    color: #e74c3c;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact .section-title h2 {
        font-size: 28px;
    }
    
    .contact .section-title p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .contact-info {
        margin-bottom: 40px;
        padding: 30px 25px;
    }
    
    .info-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .info-icon i {
        font-size: 16px;
    }
    
    .info-content h4 {
        font-size: 14px;
    }
    
    .info-content p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact .section-title h2 {
        font-size: 24px;
    }
    
    .contact .section-title p {
        font-size: 13px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .contact-form-container h3 {
        font-size: 20px;
    }
    
    .contact-map iframe {
        height: 250px;
    }
}

/* =============================================
   SERVICE ACCORDION STYLES
   ============================================= */

.service-accordion {
    margin-top: 30px;
}

.service-item-accordion {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-item-accordion:hover {
    border-color: rgba(55, 179, 237, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.service-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-header:hover {
    background: rgba(55, 179, 237, 0.1);
}

.service-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.service-toggle {
    color: #37b3ed;
    font-size: 14px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.service-item-accordion.active .service-toggle {
    transform: rotate(45deg);
    color: #fff;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
}

.service-item-accordion.active .service-content {
    max-height: 200px; /* Adjust based on content */
    padding: 0 25px 25px 25px;
}

.service-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    padding-top: 15px;
}

/* Active state styles */
.service-item-accordion.active {
    border-color: #37b3ed;
    background: rgba(55, 179, 237, 0.1);
}

.service-item-accordion.active .service-header {
    background: rgba(55, 179, 237, 0.15);
}

.service-item-accordion.active .service-header h5 {
    color: #37b3ed;
}

/* Animation for smooth accordion effect */
@keyframes accordionSlide {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 200px;
        opacity: 1;
    }
}

.service-item-accordion.active .service-content {
    animation: accordionSlide 0.4s ease-out;
}

/* Responsive design for accordion */
@media (max-width: 768px) {
    .service-header {
        padding: 15px 20px;
    }
    
    .service-header h5 {
        font-size: 15px;
    }
    
    .service-toggle {
        font-size: 12px;
    }
    
    .service-item-accordion.active .service-content {
        padding: 0 20px 20px 20px;
        max-height: 250px;
    }
    
    .service-content p {
        font-size: 13px;
        padding-top: 12px;
    }
}

.preloader-text {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 10px 0;
    text-align: center;
    letter-spacing: 1px;
}

.preloader-logo {
    display: block;
    margin: 0 auto;
    max-height: 70px;
    filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.5));
} 

.extra-service-item {
    /* Gerekirse özel stil eklenebilir, şimdilik ana .service-item ile aynı */
} 

.services .row {
    display: flex;
    flex-wrap: wrap;
}
.services .col-lg-8, .services .col-lg-4 {
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: #0f1733;
    color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.site-footer .footer-links a {
    color: #ffffff;
    font-weight: 400;
}

.site-footer .footer-links a:hover {
    color: #66b3ff;
}

.site-footer .footer-divider {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
    .site-footer .footer-links {
        margin-top: 8px;
        flex-wrap: wrap;
    }
}