:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8533;
    --text-color: #2C3E50;
    --light-bg: #FFF5EB;
    --hover-color: #FF944D;
    --heading-color: #1A1A1A;
    --light-orange: #FFE6CC;
    --dark-orange: #FF8C00;
    --orange: #FFA500;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #232323 0%, #2d2d2d 100%) !important;
    color: #f5f5f5;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(35, 37, 63, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(35, 37, 63, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(35, 37, 63, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(35, 37, 63, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: -1;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.65) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #342c2c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar .logo span {
    color: #473535;
}

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

.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    color: #342c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #342c2c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #473535;
}

.nav-link.active::after {
    width: 100%;
    background: #473535;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
        position: relative;
        z-index: 1000;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 30px;
        height: 2px;
        background-color: #333;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        transition: all 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        color: #333;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1a73e8;
        background: rgba(26, 115, 232, 0.1);
        padding-left: 1.5rem;
    }

    /* Overlay when menu is open */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Add smooth transition for menu items */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .navbar .logo {
        font-size: 1.5rem;
    }

    .navbar-nav {
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.3rem;
    }
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

.navbar ul li {
    list-style: none;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #23253f;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 8px;
    overflow: hidden;
}

.navbar ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 37, 63, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #08090e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar ul li a:hover {
    color: #08090e;
    transform: translateY(-2px);
}

.navbar ul li a:hover::before {
    color: black;
    transform: translateY(0);
}

.navbar ul li a:hover::after {
    width: 80%;
}

.navbar .logo {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    margin-left: 20px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 37, 63, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

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

.navbar .logo:hover::before {
    transform: translateY(0);
}

.navbar .logo span {
    color: #010101;
    font-weight: 800;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.navbar .logo:hover span {
    transform: scale(1.1);
}

/* Ana Sayfa Stilleri */
.home-section {
    padding: 80px 0 60px;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #23253f;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #23253f;
    border-radius: 2px;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 2px solid #e0e0e0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    color: #23253f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-box p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    color: #4a4a4a;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
}

.goals-list li:last-child {
    border-bottom: none;
}

.goals-list li::before {
    content: '•';
    color: #23253f;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-list li {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #23253f;
}

.difference-list li:last-child {
    margin-bottom: 0;
}

.difference-list li h3 {
    color: #23253f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.difference-list li p {
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .home-section {
        padding: 60px 0 40px;
    }
    
    .content-box {
        padding: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar ul {
        gap: 15px;
        margin-left: 20px;
    }
    
    .navbar ul li a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .navbar .logo {
        font-size: 20px;
    }
    
    .slider-container {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .home-section {
        padding: 40px 0 30px;
    }
    
    .content-box {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .goals-list li {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .difference-list li {
        padding: 20px;
    }
    
    .difference-list li h3 {
        font-size: 18px;
    }
    
    .difference-list li p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar ul {
        gap: 10px;
        margin-left: 10px;
    }
    
    .navbar ul li a {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .navbar .logo {
        font-size: 18px;
        margin-left: 10px;
    }
    
    .slider-container {
        height: 40vh;
        min-height: 300px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .home-section {
        padding: 30px 0 20px;
    }
    
    .content-box {
        padding: 20px;
        margin-bottom: 20px;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 550px;
    max-height: 650px;
    overflow: hidden;
    margin-top: 80px;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.1);
    transform: scale(1.1);
    transition: transform 0.8s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slide.active img {
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.slide-content p {
    font-size: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Hakkımızda Bölümü Stilleri */
.about-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.about-section .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.about-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #667eea;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 30px;
        margin: 0 15px;
    }
    
    .about-section .section-title {
        font-size: 28px;
    }
    
    .about-content h3 {
        font-size: 24px;
    }
    
    .about-content p {
        font-size: 15px;
    }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: #959798;
    margin-right: 15px;
}

.feature-item span {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 30px;
        margin: 0 15px;
    }
    
    .about-section .section-title {
        font-size: 32px;
    }
    
    .about-content h3 {
        font-size: 26px;
    }
    
    .about-content p {
        font-size: 16px;
    }
}

/* Ana Sayfa Hero Bölümü */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}
.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
.hero-text-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
@media (max-width: 768px) {
    .hero-section {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    .video-background,
    .video-background video,
    .hero-overlay,
.hero-text-overlay {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    .hero-text-overlay h1,
    .hero-text-overlay p {
        color: #fff !important;
        text-shadow: 0 2px 12px #000a;
    }
}

.hero-quote {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 20px;
}

.first-quote {
    animation: slideInFromRight 3s ease forwards, fadeOut 1s ease forwards 3s;
    transform: translateX(30%);
}

.second-quote {
    animation: fadeIn 1s ease forwards 4s;
    opacity: 0;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-30%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-buttons {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 5s;
}

@media (max-width: 768px) {
    .hero-quote {
        height: 140px;
        margin-bottom: 40px;
    }
    
    .quote-text {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 15px;
    }

    .hero-buttons {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        height: 120px;
        margin-bottom: 30px;
    }
    
    .quote-text {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .hero-buttons {
        margin-top: 20px;
    }
}

.quote-text:first-child {
    color: #3498DB;
    font-weight: 600;
}

.quote-text:last-child {
    color: #ECF0F1;
    font-weight: 600;
}

.quote-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498DB, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.quote-text:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.quote-text:hover::after {
    transform: scaleX(1);
    height: 3px;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
    }
}

.hero-text-overlay {
    animation: glow 3s infinite;
}

.btn-primary {
    background: linear-gradient(45deg, #2C3E50, #3498DB);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #3498DB, #2C3E50);
}

.btn-outline {
    background: transparent;
    color: #ECF0F1;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ECF0F1;
    box-shadow: 0 5px 15px rgba(236, 240, 241, 0.1);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: rgba(236, 240, 241, 0.1);
    box-shadow: 0 8px 25px rgba(236, 240, 241, 0.2);
    border-color: #3498DB;
    color: #3498DB;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-outline {
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}

/* İstatistikler Bölümü */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 36px;
    color: #23253f;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #23253f;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #4a4a4a;
}

/* Özellikler Bölümü */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f6fa 0%, #e8eaf6 100%);
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: #23253f;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #23253f;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* CTA Bölümü */
.cta-section {
    padding: 80px 0;
    background: #23253f;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: #23253f;
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
}

@media (max-width: 992px) {
    .hero-text-overlay .hero-title {
        font-size: 36px;
    }
    
    .hero-text-overlay .hero-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-text-overlay .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .stat-box {
        margin-bottom: 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay .hero-title {
        font-size: 28px;
    }
    
    .hero-text-overlay .hero-text {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .feature-box h3 {
        font-size: 20px;
    }
    
    .feature-box p {
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Adımlarımız Bölümü */
.steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dfe1e8 0%, #ffffff 100%);
}

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

.section-subtitle {
    color: #473535;
    font-size: 18px;
    margin-top: 15px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(52, 44, 44, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #473535, #342c2c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 44, 44, 0.1);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #473535;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: #342c2c;
    transform: rotateY(180deg);
}

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

.step-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #342c2c;
    font-weight: 600;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.step-list li {
    padding: 8px 0;
    color: #473535;
    position: relative;
    padding-left: 25px;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #473535;
    transition: all 0.3s ease;
}

.step-card:hover .step-list li::before {
    color: #342c2c;
    transform: translateX(5px);
}

.step-description {
    padding-top: 20px;
    border-top: 1px solid #dfe1e8;
}

.step-description p {
    color: #473535;
    font-size: 15px;
    margin: 0;
    font-style: italic;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .step-list li {
        padding-left: 20px;
    }
    
    .step-description p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #342c2c;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #473535, #342c2c);
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #473535;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-info,
    .footer-links,
    .footer-social {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-info h3 {
        font-size: 20px;
    }
    
    .footer-links h4,
    .footer-social h4 {
        font-size: 16px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 40px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* İletişim Bölümü */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-item {
        min-width: 100%;
    }
}

/* Sayfa Hero */
.page-hero {
    background: linear-gradient(rgba(52, 44, 44, 0.8), rgba(52, 44, 44, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.5;
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 30px 0;
    max-width: 1800px;
    margin: 0 auto;
}

@media (max-width: 1800px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1600px;
        gap: 15px;
        padding: 25px 0;
    }
}

@media (max-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        gap: 15px;
        padding: 25px 0;
    }
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        gap: 15px;
        padding: 25px 0;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 15px;
        padding: 25px 0;
    }

    .service-category-card {
        padding: 15px;
    }

    .service-group h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-group ul li {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 15px;
        padding: 20px 0;
    }

    .service-category-card {
        padding: 20px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 20px;
    }

    .service-category-card h2 {
        font-size: 18px;
    }

    .service-group h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .service-group ul li {
        font-size: 13px;
        margin-bottom: 5px;
    }
}

.service-category-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.btn-details {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
    align-self: center;
}

.btn-details:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.service-category-card:hover .btn-details {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.service-category-card:hover .btn-details:hover {
    background: transparent;
    color: var(--secondary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-icon i {
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
}

.service-category-card h2 {
    font-size: 22px;
    color: var(--text-color);
    margin: 0 0 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 12px;
}

.service-group {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.service-group h3 {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.service-group h3 i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-category-card:hover h3 i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.service-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-group ul li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.service-group ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 14px;
    font-weight: bold;
}

.service-group ul li:last-child {
    margin-bottom: 0;
}

.service-category-card:hover {
    background: var(--light-bg);
}

.service-category-card:hover h3::after {
    width: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-group ul li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.team-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.03)"/></svg>');
    opacity: 0.8;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-info {
    text-align: center;
}

.member-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.member-header .position {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }

    .team-member {
        padding: 20px;
    }

    .member-header h3 {
        font-size: 1.3rem;
    }
}

/* Neden Biz Bölümü */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.5;
}

.why-us-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-us-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 0;
    }

    .why-us-feature {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-content h3 {
        font-size: 1.8rem;
    }
}

/* Misyon ve Vizyon Bölümü */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-box,
.vision-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.mission-box:last-child,
.vision-box:last-child {
    margin-bottom: 0;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00bfff);
}

.mission-box h2,
.vision-box h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.mission-box h2::after,
.vision-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00bfff);
    border-radius: 3px;
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
}

/* Misyon Detay Bölümü */
.mission-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mission-paragraph {
    padding: 40px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.mission-paragraph:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.mission-paragraph h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    background: linear-gradient(45deg, #2C3E50, #4A4A4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-paragraph h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF6B35, #FF8C61);
    transition: width 0.3s ease;
}

.mission-paragraph:hover h3::after {
    width: 100px;
}

.mission-paragraph p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.mission-paragraph:hover p {
    color: #2C3E50;
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        gap: 40px;
    }

    .mission-paragraph {
        padding: 30px 20px;
    }

    .mission-paragraph h3 {
        font-size: 1.8rem;
    }

    .mission-paragraph p {
        font-size: 1rem;
    }
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
    text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 40%;
    right: 25%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 30%;
    right: 35%;
    animation-delay: 5s;
}

.mission-text:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 30px rgba(41, 128, 185, 0.3);
    border-color: rgba(41, 128, 185, 0.3);
}

.mission-paragraph:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 4px rgba(41, 128, 185, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(41, 128, 185, 0.2);
    border-color: rgba(41, 128, 185, 0.3);
    background: rgba(17, 34, 64, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        text-shadow: 0 0 20px rgba(41, 128, 185, 0.5);
    }
    100% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    }
}

@keyframes waterDrop {
    0% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    40% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }
    60% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .mission-section {
        padding: 80px 0;
    }

    .mission-text {
        width: 90%;
        padding: 30px;
    }
    
    .mission-paragraph {
        font-size: 1.1rem;
        padding: 15px;
    }

    .floating-icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        padding: 25px;
        border-radius: 10px;
    }

    .mission-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        padding: 12px;
    }

    .floating-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }

    .mission-text {
        padding: 20px;
        border-radius: 8px;
    }

    .mission-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 10px;
    }

    .floating-icon {
        font-size: 16px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header & Navigation */
    .navbar {
        padding: 1rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 30px;
        height: 2px;
        background-color: #333;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        transition: all 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        color: #333;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1a73e8;
        background: rgba(26, 115, 232, 0.1);
        padding-left: 1.5rem;
    }

    /* Overlay when menu is open */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        margin-bottom: 2rem;
    }
}

/* General Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-link:hover {
        background: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo, .hero-title, .section-title {
        font-weight: 600;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

/* Goals Section Styles */
.goals-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C3E50, transparent);
}

.goal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1);
    color: #3498DB;
}

.goal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E50;
    position: relative;
    padding-bottom: 10px;
}

.goal-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #FF6B35, #FF8C61);
    transition: width 0.3s ease;
}

.goal-card:hover h3::after {
    width: 100px;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.goal-card:hover p {
    color: #2C3E50;
}

@media (max-width: 991px) {
    .goal-card {
        margin-bottom: 30px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #FF6B35, #FF8C61);
    color: #fff;
    padding-left: 25px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 4px solid #2C3E50;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .dropdown-item {
        padding: 8px 15px;
        color: #2C3E50;
    }

    .dropdown-item:hover {
        background: linear-gradient(45deg, #FF6B35, #FF8C61);
        color: #fff;
    }
}

.development-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.development-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C3E50, transparent);
}

.development-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.development-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.development-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF6B35;
}

.development-text {
    max-width: 900px;
    margin: 0 auto;
}

.development-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 2.2;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .development-section {
        padding: 60px 0;
    }

    .development-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .development-text p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.8;
        letter-spacing: 0.3px;
    }
}

.hero-quote .first-quote {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s, fadeOut 1s ease forwards 4s;
}

.hero-quote .first-quote:last-of-type {
    margin-bottom: 1.5rem;
}

.hero-quote .first-quote .color-change {
    display: inline-block;
    color: #007bff;
    animation: waveColorChange 2s ease-in-out forwards;
    animation-delay: calc(var(--delay) * 2);
}

.hero-quote .first-quote .blue-text {
    color: #007bff;
    animation: none;
}

@keyframes waveColorChange {
    0% {
        color: #007bff;
    }
    50% {
        color: #ffffff;
    }
    100% {
        color: #ffffff;
    }
}

.hero-quote .second-quote {
    font-size: 3.5rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 4.5s;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-quote .second-quote .orange-text {
    display: inline-block;
    animation: colorToOrange 1s ease forwards 5s;
}

@keyframes colorToOrange {
    0% {
        color: #ffffff;
    }
    100% {
        color: #FF8C00;
    }
}

/* Test Contact Section */
.test-contact {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.test-contact p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 18px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .service-category-card {
        padding: 30px 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

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

    .service-category-card h2 {
        font-size: 20px;
    }

    .test-contact {
        margin-top: 30px;
        padding: 20px;
    }

    .test-contact p {
        font-size: 16px;
    }
}

.service-group .contact-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--light-orange);
    border-radius: 8px;
    font-style: italic;
    color: var(--dark-orange);
    text-align: center;
    border: 1px solid var(--orange);
}

@media (max-width: 768px) {
    .service-group .contact-info {
        margin-top: 1rem;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 0.5rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    
    .hero-content p {
        font-size: 0.4rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        padding: 0;
    }

    .hero-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-quote .quote-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .hero-quote .first-quote {
        margin-bottom: 0.8rem;
    }

    .hero-quote .second-quote {
        font-size: 1.1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.product-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card:hover .product-icon::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.product-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon i {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    position: relative;
}

.product-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF8533);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.product-card:hover h3::after {
    width: 80px;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #FF6B00;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-features li {
    color: #333;
    transform: translateX(5px);
}

.product-card:hover .product-features li::before {
    color: #FF8533;
    transform: scale(1.2);
}

.btn-product {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-product:hover::before {
    left: 100%;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .product-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .product-icon i {
        font-size: 1.8rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-features li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 50px 0;
    }

    .product-card {
        padding: 25px 15px;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .product-icon i {
        font-size: 1.5rem;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .product-features li {
        font-size: 0.8rem;
    }

    .btn-product {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

.about-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left-color: #764ba2;
}

.about-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

@media (max-width: 768px) {
    .about-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-box {
        padding: 20px;
    }
    
    .about-box p {
        font-size: 15px;
    }
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-whatsapp i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        justify-content: center;
    }
}

/* Sabit WhatsApp İkonu */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Yorumlar Bölümü */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card:nth-child(2) {
    transform: translateY(20px);
}

.testimonial-card:nth-child(5) {
    transform: translateY(20px);
}

.testimonial-card:nth-child(2):hover,
.testimonial-card:nth-child(5):hover {
    transform: translateY(10px);
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card:nth-child(2) {
        transform: translateY(0);
    }
    
    .testimonial-card:nth-child(5) {
        transform: translateY(0);
    }
    
    .testimonial-card:nth-child(2):hover,
    .testimonial-card:nth-child(5):hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(5) {
        transform: translateY(0);
    }
    
    .testimonial-card:nth-child(2):hover,
    .testimonial-card:nth-child(5):hover {
        transform: translateY(-10px);
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: #667eea;
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 24px;
    color: #ffffff;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.testimonial-type {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 16px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-avatar i {
        font-size: 20px;
    }
    
    .testimonial-info h4 {
        font-size: 16px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
}

/* Blog Bölümü */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.03)"/></svg>');
    opacity: 0.5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 20px 20px;
    animation: backgroundMove 20s linear infinite;
}

.blog-image i {
    font-size: 48px;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    font-size: 12px;
}

.btn-blog {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-blog:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .blog-image {
        height: 150px;
    }
    
    .blog-image i {
        font-size: 36px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 16px;
    }
    
    .blog-content p {
        font-size: 13px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Kitabım Bölümü Stilleri */
.book-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.book-content {
    position: relative;
    z-index: 2;
}

.book-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.book-card:hover::before {
    opacity: 1;
}

.book-cover {
    flex-shrink: 0;
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

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

.book-cover i {
    font-size: 48px;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.book-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.book-details h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    position: relative;
}

.book-details h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.book-author {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

.book-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.book-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.feature i {
    font-size: 16px;
    color: #667eea;
}

.feature span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.btn-book {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-book:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .book-section {
        padding: 60px 0;
    }
    
    .book-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 25px;
    }
    
    .book-cover {
        width: 100px;
        height: 130px;
    }
    
    .book-cover i {
        font-size: 36px;
    }
    
    .book-details h3 {
        font-size: 26px;
    }
    
    .book-author {
        font-size: 16px;
    }
    
    .book-description {
        font-size: 15px;
    }
    
    .book-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .btn-book {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .book-card {
        padding: 25px;
        gap: 20px;
    }
    
    .book-cover {
        width: 80px;
        height: 110px;
    }
    
    .book-cover i {
        font-size: 28px;
    }
    
    .book-details h3 {
        font-size: 22px;
    }
    
    .book-author {
        font-size: 14px;
    }
    
    .book-description {
        font-size: 14px;
    }
    
    .feature {
        padding: 8px 12px;
    }
    
    .feature span {
        font-size: 13px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title-animated {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}
.hero-desc-animated {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

/* Modern Ürün Kartları */
.product-modern-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(191,160,70,0.08), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  padding: 24px 18px 20px 18px;
  transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.product-modern-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(191,160,70,0.16), 0 3px 12px 0 rgba(0,0,0,0.08);
}
.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background: #faf6f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(191,160,70,0.06);
}
.product-img-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-modern-card:hover .product-img-wrapper img {
  transform: scale(1.07) rotate(-2deg);
}
.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #bfa046;
  margin-bottom: 0.5rem;
}
.product-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  min-height: 48px;
}
.btn-modern {
  background: #bfa046;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(191,160,70,0.10);
  text-decoration: none;
  display: inline-block;
}
.btn-modern:hover, .btn-modern:focus {
  background: #a88a2a;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(191,160,70,0.18);
  text-decoration: none;
}
@media (max-width: 768px) {
  .product-modern-card {
    padding: 16px 8px 14px 8px;
  }
  .product-title {
    font-size: 1.05rem;
  }
  .product-desc {
    font-size: 0.95rem;
    min-height: 36px;
  }
}

/* Navbar logo büyütme */
.logo-img {
    height: 90px !important;
    max-height: 18vw;
    width: auto;
    transition: height 0.3s;
}
@media (max-width: 768px) {
    .logo-img {
        height: 60px !important;
        max-height: 14vw;
    }
}

/* Gold Temalı Hizmet Kartları */
.service-gold-card {
  background: #fffbea;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(191,160,70,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  border: 2px solid #bfa04622;
  transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.22s, border 0.22s;
  position: relative;
  overflow: hidden;
}
.service-gold-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(191,160,70,0.18), 0 3px 12px 0 rgba(0,0,0,0.10);
  border: 2px solid #bfa046;
}
.service-icon {
  font-size: 2.7rem;
  color: #bfa046;
  background: linear-gradient(135deg, #fffbe6 60%, #bfa04622 100%);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(191,160,70,0.10);
}
.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #bfa046;
  margin-bottom: 0.5rem;
}
.service-desc {
  color: #6d5c2c;
  font-size: 1rem;
  min-height: 48px;
}
@media (max-width: 768px) {
  .service-gold-card {
    padding: 16px 8px 14px 8px;
  }
  .service-title {
    font-size: 1.05rem;
  }
  .service-desc {
    font-size: 0.95rem;
    min-height: 36px;
  }
  .service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
    .logo-img {
        height: 90px !important;
        max-height: 22vw;
    }
}

/* Misyon & Vizyon Kartları */
.mission-vision-section {
  background: #232323;
}
.mission-vision-card {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(191,160,70,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  border: 2px solid #bfa04622;
  transition: transform 0.22s, box-shadow 0.22s, border 0.22s;
  color: #f5f5f5;
}
.mission-vision-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(191,160,70,0.18), 0 3px 12px 0 rgba(0,0,0,0.18);
  border: 2px solid #bfa046;
}
.mv-icon {
  font-size: 2.7rem;
  color: #bfa046;
  background: linear-gradient(135deg, #232323 60%, #bfa04622 100%);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(191,160,70,0.10);
}
.mv-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #bfa046;
  margin-bottom: 0.5rem;
}
.mv-desc {
  color: #f5f5f5;
  font-size: 1rem;
  min-height: 48px;
}
@media (max-width: 768px) {
  .mission-vision-card {
    padding: 16px 8px 14px 8px;
  }
  .mv-title {
    font-size: 1.05rem;
  }
  .mv-desc {
    font-size: 0.95rem;
    min-height: 36px;
  }
  .mv-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
}

/* Neden Biz Kartları */
.nedenbiz-section {
  background: #181818;
}
.nedenbiz-card {
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(191,160,70,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  border: 2px solid #bfa04622;
  transition: transform 0.22s, box-shadow 0.22s, border 0.22s;
  color: #f5f5f5;
}
.nedenbiz-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(191,160,70,0.18), 0 3px 12px 0 rgba(0,0,0,0.18);
  border: 2px solid #bfa046;
}
.nb-icon {
  font-size: 2.7rem;
  color: #bfa046;
  background: linear-gradient(135deg, #181818 60%, #bfa04622 100%);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(191,160,70,0.10);
}
.nb-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #bfa046;
  margin-bottom: 0.5rem;
}
.nb-desc {
  color: #f5f5f5;
  font-size: 1rem;
  min-height: 48px;
}
@media (max-width: 768px) {
  .nedenbiz-card {
    padding: 16px 8px 14px 8px;
  }
  .nb-title {
    font-size: 1.05rem;
  }
  .nb-desc {
    font-size: 0.95rem;
    min-height: 36px;
  }
  .nb-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    }
}

/* Ürünlerimiz kutuları için modern ve şık tasarım */
.products-section .product-modern-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(191, 160, 70, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.06);
  transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
  padding: 28px 18px 22px 18px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1.5px solid #f0e6d6;
}
.products-section .product-modern-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(191, 160, 70, 0.18), 0 3px 12px 0 rgba(0,0,0,0.10);
  border-color: #bfa046;
}
.products-section .product-img-wrapper {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf6f0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}
.products-section .product-img-wrapper img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.2s;
}
.products-section .product-modern-card:hover .product-img-wrapper img {
  transform: scale(1.07);
}
.products-section .product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #bfa046;
  margin-top: 10px;
  margin-bottom: 6px;
}
.products-section .product-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  min-height: 60px;
}
.products-section .btn-modern {
  background: #bfa046;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s;
  margin-top: auto;
}
.products-section .btn-modern:hover {
  background: #a88c3a;
  color: #fff;
}
@media (max-width: 991px) {
  .products-section .product-modern-card {
    min-height: 390px;
    padding: 20px 10px 18px 10px;
  }
  .products-section .product-img-wrapper {
    height: 140px;
  }
  .products-section .product-img-wrapper img {
    max-height: 120px;
  }
}
@media (max-width: 767px) {
  .products-section .product-modern-card {
    min-height: 340px;
    padding: 14px 4px 12px 4px;
  }
  .products-section .product-img-wrapper {
    height: 100px;
  }
  .products-section .product-img-wrapper img {
    max-height: 80px;
  }
}

/* Ürün kutularına daha modern ve dikkat çekici tasarım */
.products-section .product-modern-card {
  background: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(191, 160, 70, 0.13), 0 2px 8px 0 rgba(0,0,0,0.07);
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, border 0.18s;
  padding: 32px 18px 26px 18px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 2.5px solid #f5e9c8;
  overflow: visible;
}
.products-section .product-modern-card::after {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -18px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #bfa04622 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.products-section .product-modern-card:hover {
  transform: translateY(-12px) scale(1.045);
  box-shadow: 0 14px 40px 0 rgba(191, 160, 70, 0.22), 0 6px 18px 0 rgba(0,0,0,0.13);
  border-color: #bfa046;
}
.products-section .product-modern-card .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #bfa046 60%, #fffbe6 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 16px;
  box-shadow: 0 2px 8px 0 #bfa04633;
  z-index: 2;
}
.products-section .product-img-wrapper {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #faf6f0 60%, #fffbe6 100%);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px 0 #bfa04611;
}
.products-section .product-img-wrapper img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.22s;
  background: transparent;
}
.products-section .product-modern-card:hover .product-img-wrapper img {
  transform: scale(1.09) rotate(-1deg);
}
.products-section .product-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #bfa046;
  margin-top: 12px;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #fffbe6, 0 2px 8px #bfa04622;
}
.products-section .product-desc {
  font-size: 1.04rem;
  color: #444;
  margin-bottom: 22px;
  min-height: 60px;
  font-weight: 500;
}
.products-section .btn-modern {
  background: linear-gradient(90deg, #bfa046 60%, #fffbe6 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 32px;
  font-weight: 700;
  font-size: 1.04rem;
  transition: background 0.18s, color 0.18s;
  margin-top: auto;
  box-shadow: 0 2px 8px 0 #bfa04622;
}
.products-section .btn-modern:hover {
  background: #a88c3a;
  color: #fffbe6;
}
@media (max-width: 991px) {
  .products-section .product-modern-card {
    min-height: 390px;
    padding: 20px 10px 18px 10px;
  }
  .products-section .product-img-wrapper {
    height: 140px;
  }
  .products-section .product-img-wrapper img {
    max-height: 120px;
  }
}
@media (max-width: 767px) {
  .products-section .product-modern-card {
    min-height: 340px;
    padding: 14px 4px 12px 4px;
  }
  .products-section .product-img-wrapper {
    height: 100px;
  }
  .products-section .product-img-wrapper img {
    max-height: 80px;
  }
}

.products-section .product-desc {
  color: #111;
}
.products-section .btn-modern {
  color: #111;
}
.modal .modal-body p {
  color: #111 !important;
}

/* RTL Arapça modunda logo solda kalsın */
body.rtl-ar .navbar .container {
  flex-direction: row !important;
  justify-content: flex-start !important;
}
body.rtl-ar .navbar .logo-img {
  margin-left: 0 !important;
  margin-right: 15px !important;
  float: left !important;
}
body.rtl-ar .navbar .d-flex.align-items-center {
  flex-direction: row !important;
  justify-content: flex-start !important;
}

.language-switcher select {
  height: 38px;
  font-size: 1rem;
  font-family: inherit;
  background: #fffbe6;
  border: 1.5px solid #bfa046;
  color: #232323;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  box-shadow: 0 1px 4px 0 #bfa04611;
  transition: border 0.18s;
}
.language-switcher select:focus {
  outline: none;
  border-color: #bfa046;
}
@media (max-width: 991px) {
  .language-switcher select {
    height: 34px;
    font-size: 0.98rem;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

.section-title, .product-title, .footer-info h3, .footer-links h4 {
  color: #bfa046 !important;
}

