
    /* ----- Bütün CSS kodları burada ----- */
    :root {
        --primary-color: #4A90E2;
        --secondary-color: #64B5F6;
        --accent-color: #2962FF;
        --text-color: #333;
        --light-color: #F5F9FF;
        --dark-color: #1A237E;
        --cloud-color: #FFFFFF;
        --shadow-color: rgba(0, 0, 0, 0.1);
        --border-radius: 8px;
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        font-family: 'Roboto', Arial, sans-serif;
        color: var(--text-color);
        background: linear-gradient(to bottom, #e6f2ff, #f5f9ff);
        overflow-x: hidden;
        font-weight: 400;
        line-height: 1.6;
    }

    section {
        padding: 50px 0;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 700;
        margin-bottom: 15px;
    }

    p {
        line-height: 1.6;
        margin-bottom: 15px;
        font-weight: 400;
    }

    a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
        font-weight: 600;
    }

    a:hover {
        color: var(--accent-color);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ----- Cloud Designs ----- */
    .cloud-container {
        position: relative;
        text-align: center;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .cloud-container h2 {
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        color: var(--dark-color);
        z-index: 2;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .cloud {
        position: absolute;
        width: 200px;
        height: 80px;
        background: var(--cloud-color);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 100px;
        box-shadow: 0 8px 20px var(--shadow-color);
        z-index: 1;
    }

    .cloud:before,
    .cloud:after {
        content: '';
        position: absolute;
        background: var(--cloud-color);
        border-radius: 50%;
    }

    .cloud:before {
        width: 100px;
        height: 100px;
        top: -50px;
        left: 20px;
    }

    .cloud:after {
        width: 80px;
        height: 80px;
        top: -40px;
        right: 30px;
    }

    /* ----- Header & Navigation ----- */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 0;
        z-index: 1000;
        transition: var(--transition);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header.scrolled {
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .logo h1 {
        font-size: 1.8rem;
        margin: 0;
        color: #1A237E;
        font-weight: 700;
    }

    .logo h1 a {
        color: #1A237E;
        text-decoration: none;
    }

    .logo h1 a:hover {
        color: var(--accent-color);
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 25px;
    }

    nav ul li a {
        color: var(--text-color);
        font-weight: 600;
        font-size: 1rem;
        position: relative;
        padding-bottom: 5px;
    }

    nav ul li a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    nav ul li a:hover:after,
    nav ul li a.active:after {
        width: 100%;
    }

    .hamburger-menu {
        display: none;
        cursor: pointer;
        z-index: 1010;
    }

    .hamburger-icon {
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--dark-color);
        border-radius: var(--border-radius);
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0px;
    }

    .hamburger-icon span:nth-child(2) {
        top: 8px;
    }

    .hamburger-icon span:nth-child(3) {
        top: 16px;
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
    }

    /* ----- About Section ----- */
    .haqqimizda {
        padding-top: 100px;
    }

    .about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 30px;
    }

    .about-image {
        flex: 0 0 40%;
        min-width: 300px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: scale(1);
        transition: var(--transition);
        display: block;
        border: 5px solid #fff;
    }

    .about-image img:hover {
        transform: scale(1.03);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .about-text {
        flex: 1;
        min-width: 300px;
    }

    /* ----- Features Grid ----- */
    .xususiyyetler {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .feature-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: var(--dark-color);
    }

    .feature-card p {
        color: #666;
        font-size: 0.95rem;
    }

    /* ----- Gallery Section ----- */
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        cursor: pointer;
        display: block;
        text-decoration: none;
        will-change: transform;
        user-select: none;
        backface-visibility: hidden;
        transform: translateZ(0);
        aspect-ratio: 4/3;
    }

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
        display: block;
        backface-visibility: hidden;
        transform: translateZ(0);
        border: 5px solid #fff;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* ----- Pricing Section ----- */
    .pricing-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .pricing-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 30px;
        width: 320px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured {
        transform: scale(1.05);
        z-index: 1;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.05);
    }

    .pricing-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background: var(--primary-color);
        color: white;
        padding: 5px 15px;
        border-radius: var(--border-radius);
        font-size: 0.9rem;
        font-weight: 600;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .pricing-header h3 {
        color: var(--dark-color);
        font-size: 1.3rem;
        font-weight: 700;
    }

    .price {
        font-size: 2.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    .price span {
        font-size: 1rem;
        color: var(--text-color);
        font-weight: 500;
    }

    .pricing-features ul {
        list-style: none;
        margin-bottom: 25px;
    }

    .pricing-features ul li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        font-weight: 400;
    }

    .pricing-features ul li i {
        color: var(--primary-color);
        margin-right: 10px;
    }

    .cta-button {
        display: inline-block;
        width: 100%;
        padding: 12px 0;
        background: var(--primary-color);
        color: white !important;
        border-radius: var(--border-radius);
        font-weight: 600;
        letter-spacing: 1px;
        transition: var(--transition);
        text-align: center;
    }

    .cta-button:hover {
        background: var(--accent-color);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    /* ----- Contact Section ----- */
    .contact-container {
        display: flex;
        justify-content: center;
    }

    .contact-info {
        max-width: 800px;
        width: 100%;
    }

    .contact-details {
        background: white;
        padding: 30px;
        border-radius: var(--border-radius);
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 15px;
    }

    .contact-item p {
        margin: 0;
    }

    .contact-item a {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 1rem;
        transition: var(--transition);
    }

    .contact-item a:hover {
        color: var(--accent-color);
    }

    .contact-item.phone-number a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .map-container {
        height: 350px;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* ----- Footer ----- */
    footer {
        background: #333;
        color: white;
        padding: 20px 0;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0px;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .footer-logo p {
        opacity: 0.9;
        margin-bottom: 0;
        font-size: 12px;
    }

    .social-links a {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-left: 10px;
        color: white;
        text-align: center;
        line-height: 50px;
        transition: var(--transition);
    }

    .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-5px);
    }

    /* ----- Fancybox Custom Styles ----- */
    .fancybox-bg {
        background: #000;
        opacity: 0 !important;
        transition: opacity .3s ease;
    }

    .fancybox-is-open .fancybox-bg {
        opacity: 0.9 !important;
    }

    .fancybox-navigation .fancybox-button {
        width: 60px !important;
        height: 60px !important;
        padding: 0;
        margin: 0;
        visibility: visible !important;
        opacity: 1 !important;
        color: #fff;
        background: transparent !important;
        box-shadow: none !important;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99999;
        display: block !important;
    }

    .fancybox-navigation .fancybox-button--arrow_left {
        left: 10px !important;
    }

    .fancybox-navigation .fancybox-button--arrow_right {
        right: 10px !important;
    }

    .fancybox-navigation .fancybox-button div {
        padding: 10px;
        width: 100%;
        height: 100%;
    }

    .fancybox-navigation .fancybox-button svg {
        width: 40px;
        height: 40px;
        filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.7));
    }

    .fancybox-navigation .fancybox-button svg path {
        fill: #ffffff;
        stroke-width: 2px;
    }

    .fancybox-button--arrow_left,
    .fancybox-button--arrow_right {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .fancybox-navigation .fancybox-button:hover svg path,
    .fancybox-navigation .fancybox-button:active svg path {
        fill: #4A90E2;
    }

    .fancybox-button--close {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        top: 10px;
        right: 10px;
        position: absolute;
    }

    /* ----- 404 Page ----- */
    .error-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        text-align: center;
        padding: 0 20px;
        background: linear-gradient(to bottom, #e6f2ff, #f5f9ff);
    }

    .error-container {
        background: white;
        border-radius: var(--border-radius);
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .error-code {
        font-size: 8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0;
        line-height: 1;
        opacity: 0.2;
        position: absolute;
        top: 10px;
        left: 20px;
    }

    .error-icon {
        font-size: 5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .error-title {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--dark-color);
    }

    .error-message {
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    .back-button {
        display: inline-block;
        padding: 10px 20px;
        background: var(--primary-color);
        color: white;
        border-radius: var(--border-radius);
        font-weight: 600;
        letter-spacing: 1px;
        transition: var(--transition);
        text-decoration: none;
    }

    .back-button:hover {
        background: var(--accent-color);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    /* ----- Responsive Design ----- */
    @media (max-width: 992px) {
        .pricing-card.featured {
            transform: scale(1);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-15px);
        }
    }

    @media (max-width: 768px) {
        section {
            padding: 40px 0;
        }
        
        .haqqimizda {
            padding-top: 80px;
        }
        
        .hamburger-menu {
            display: block;
        }
        
        nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: white;
            transition: all 0.3s ease;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            padding-top: 70px;
        }
        
        nav.active {
            right: 0;
        }
        
        nav ul {
            flex-direction: column;
            padding: 20px;
        }
        
        nav ul li {
            margin: 0;
            margin-bottom: 15px;
            text-align: center;
        }
        
        nav ul li a {
            font-size: 1.2rem;
            display: block;
            padding: 10px 0;
        }
        
        .about-content {
            flex-direction: column;
        }
        
        .about-image {
            max-width: 100%;
        }
        
        .cloud {
            width: 150px;
        }
        
        .cloud-container h2 {
            font-size: 2rem;
        }
        
        .features-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
        
        .fancybox-navigation .fancybox-button {
            width: 50px !important;
            height: 50px !important;
        }
        
        .fancybox-navigation .fancybox-button--arrow_left {
            left: 5px !important;
        }
        
        .fancybox-navigation .fancybox-button--arrow_right {
            right: 5px !important;
        }
        
        .fancybox-navigation .fancybox-button svg {
            width: 30px;
            height: 30px;
        }
    }

    @media (max-width: 576px) {
        .cloud-container h2 {
            font-size: 1.8rem;
        }
        
        .cloud {
            width: 120px;
            height: 60px;
        }
        
        .cloud:before {
            width: 70px;
            height: 70px;
            top: -35px;
            left: 15px;
        }
        
        .cloud:after {
            width: 60px;
            height: 60px;
            top: -30px;
            right: 15px;
        }
        
        .gallery-container {
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px;
        }
        
        .pricing-cards {
            gap: 20px;
        }
        
        .pricing-card {
            width: 100%;
            padding: 25px;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
