/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: url('/images/BG.png') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    transition: overflow 0.3s ease;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    padding: 40px 0 20px 0;
    background: transparent;
    position: relative;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 80px;
    width: auto;
    position: relative;
    top: 0px;
    object-fit: contain;
}

/* Navigation Styles */
.navigation {
    margin-top: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    color: #1234b1;
    text-decoration: none;
    font-size: 24px;
    font-family: '!PaulMaul Regular', 'Bahnschrift Light', 'Bahnschrift', sans-serif;
    font-weight: 350;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a69bd, #0f2a8a);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0f2a8a;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu Styles */
.hamburger-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: #1234b1;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: white;
}

.hamburger-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: white;

}

/* Mobile Navigation Styles */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 75, 152, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding-top: 120px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-navigation.mobile-nav-open {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 30px;
    align-items: center;
    padding: 20px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-family: '!PaulMaul Regular', 'Bahnschrift Light', 'Bahnschrift', sans-serif;
    font-weight: 350;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
}

/* Tablet specific styles */
@media (max-width: 992px) and (min-width: 769px) {
    .header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .navigation {
        display: none;
    }
    
    .mobile-navigation {
        display: block;
    }
    
    .hero-text {
        text-align: center;
        position: static;
        left: 0;
        top: 0;
    }
    
    .hero-description {
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    background: url('/images/BG.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 80px;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Hero Text */
.hero-text {
    max-width: 600px;
    position: relative;
    top: -30px;
    left: -20px;
}

.hero-title {
    font-size: 62px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 35px;
}

.title-line1 {
    color: #4a69bd;
    font-weight: bold;
    display: block;
}

.title-line2 {
    color: #4a69bd;
    font-weight: normal;
    display: block;
}

.hero-description {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 45px;
    opacity: 0.8;
}

.cta-button {
    background: #4a69bd;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: #3c5aa6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 105, 189, 0.3);
}

/* Phone Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 330px;
    height: auto;
    position: relative;
    top: 0px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    object-fit: contain;
    animation: phoneFloat 3s ease-in-out infinite;
}

/* Telefon zıplama animasyonu */
@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Background Watermark */
.watermark {
    position: absolute;
    font-size: 800px;
    font-weight: bold;
    color: #f2f4f8;
    opacity: 0.3;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* About Section */
.about-section {
    background: url('/images/biz-kimiz_bg.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0 0 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    gap: 0px;
    align-items: center;
    width: 100%;
}

/* About Text */
.about-text {
    max-width: 100%;
    color: white;
    width: 100%;
}

.about-title {
    font-size: 64px;
    font-weight: bold;
    color: #044b98;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.about-description {
    color: #044b98;
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

/* Laptop Image */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-image {
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    object-fit: contain;
    position: relative;
    right: 20px;
    animation: laptopFloat 4s ease-in-out infinite;
}

/* Laptop hareket animasyonu */
@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Mobil cihazlar için daha yumuşak animasyonlar */
@keyframes phoneFloatMobile {
    0%, 100% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes laptopFloatMobile {
    0%, 100% {
        transform: translateY(0px) scale(1.2);
    }
    50% {
        transform: translateY(-6px) scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px 0 15px 0;
    }
    
    .hero-section {
        padding: 30px 0 60px;
        min-height: 60vh;
    }
    
    .header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-btn {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .navigation {
        display: none;
    }
    
    /* Show mobile navigation */
    .mobile-navigation {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
        max-width: 100%;
        position: static;
        left: 0;
        top: 0;
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-image {
        order: 1;
        max-width: 160px !important;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .phone-image {
        max-width: 160px !important;
        width: 160px !important;
        transform: rotate(5deg);
        margin-top: 50px;
        animation: phoneFloatMobile 2.5s ease-in-out infinite;
    }
    
    .watermark {
        font-size: 400px;
        left: -100px;
    }
    
    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        order: 1;
        max-width: 100%;
    }
    
    .about-image {
        display: none;
    }
    
    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0 10px 0;
    }
    
    .hero-section {
        padding: 30px 0 50px;
        min-height: 60vh;
    }
    
    .container {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
        text-align: center;
        margin: 0 auto 30px;
        max-width: 350px;
    }
    
    .hero-text {
        text-align: center;
        position: static;
        left: 0;
        top: 0;
        order: 2;
        margin-top: 50px;
    }
    
    .hero-image {
        order: 1;
        max-width: 140px !important;
        margin: 0 auto;
    }
    
    .cta-button {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .phone-image {
        max-width: 140px !important;
        width: 140px !important;
    }
    
    .watermark {
        font-size: 300px;
        left: -80px;
    }
    
    .mobile-nav-link {
        font-size: 24px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 80px 0 0 0;
        min-height: 90vh;
    }
    
    .about-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .about-description {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Services Section */
.services-section {
    background: url('/images/hizmetler_bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-title {
    font-size: 64px;
    font-weight: bold;
    color: #044b98;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #2d4de0 0%, #1e3bb3 100%);
    border-radius: 30px;
    padding: 40px 30px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 77, 224, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 77, 224, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.service-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Services Section Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-title {
        font-size: 48px;
        margin-bottom: 50px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0 80px 0;
        min-height: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-title {
        font-size: 36px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0 60px 0;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Themes Section */
.themes-section {
    background: url('/images/temalar_bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.themes-title {
    font-size: 64px;
    font-weight: bold;
    color: #044b98;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0;
    color: #044b98;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.theme-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    position: relative;
}

.theme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.theme-card:hover .theme-img {
    transform: scale(1.05);
}

.theme-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.theme-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.theme-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #044b98;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.theme-description {
    font-size: 16px;
    line-height: 1.6;
    color: #044b98;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.9;
}

.theme-button {
    background: transparent;
    color: #044b98;
    border: 2px solid #044b98;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.theme-button:hover {
    background: #044b98;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 75, 152, 0.3);
}

/* Themes Section Responsive */
@media (max-width: 992px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .themes-title {
        font-size: 48px;
        margin-bottom: 50px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .themes-section {
        padding: 60px 0 80px 0;
        min-height: auto;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .themes-title {
        font-size: 36px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    
    .theme-card {
        min-height: 400px;
    }
    
    .theme-content {
        padding: 25px 20px;
    }
    
    .theme-image {
        height: 160px;
    }
    
    .theme-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .theme-description {
        font-size: 15px;
    }
    
    .theme-button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .themes-section {
        padding: 40px 0 60px 0;
    }
    
    .themes-title {
        font-size: 28px;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    
    .theme-card {
        min-height: 350px;
        border-radius: 20px;
    }
    
    .theme-content {
        padding: 20px 15px;
    }
    
    .theme-image {
        height: 140px;
        border-radius: 20px 20px 0 0;
    }
    
    .theme-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .theme-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .theme-button {
        font-size: 13px;
        padding: 8px 20px;
    }
}

/* Contact Section */
.contact-section {
    background: url('/images/iletisim_bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-title {
    font-size: 64px;
    font-weight: bold;
    color: #044b98;
    text-align: left;
    margin-bottom: 60px;
    margin-top: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #044b98;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #044b98;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2d4de0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(45, 77, 224, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
    min-height: 20px;
}

.submit-button {
    background: linear-gradient(135deg, #2d4de0 0%, #1e3bb3 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    align-self: center;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e3bb3 0%, #2d4de0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 77, 224, 0.4);
}

/* Contact Map Styles */
.contact-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #044b98;
    height: fit-content;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Right Side Container */
.contact-right-side {
    display: flex;
    flex-direction: column;
}

.contact-map-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.contact-map-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: -130px;
    right: 70px;
}

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 48px;
        margin-bottom: 50px;
        margin-top: 30px;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-right-side {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 80px 0;
        min-height: auto;
    }
    
    .contact-title {
        font-size: 36px;
        margin-bottom: 40px;
        margin-top: 20px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .contact-map iframe {
        height: 350px;
    }
    
    .contact-map-header {
        display: none; /* Hide logo on mobile */
    }
    
    .contact-map-logo {
        display: none; /* Hide logo on mobile */
    }
    
    .contact-right-side {
        order: 2;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    
    .contact-form-container {
        padding: 15px;
        border-radius: 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-row {
        gap: 15px;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .submit-button {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-map {
        border-radius: 15px;
        border-width: 2px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-map iframe {
        height: 300px;
        width: 100%;
    }
    
    .contact-map-header {
        display: none; /* Hide logo on mobile */
    }
    
    .contact-map-logo {
        display: none; /* Hide logo on mobile */
    }
    
    .contact-right-side {
        order: 2;
        width: 100%;
    }
    
    .error-message {
        font-size: 12px;
    }
}

/* Blog Section */
.blog-section {
    background: url('/images/blog_bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 64px;
    font-weight: bold;
    color: #044b98;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.blog-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.slider-arrow {
    background: linear-gradient(135deg, #2d4de0 0%, #1e3bb3 100%);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(45, 77, 224, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #1e3bb3 0%, #2d4de0 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(45, 77, 224, 0.4);
}

.blog-cards-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
}

.blog-cards-container {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    width: calc(100% + 200px);
}

.blog-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px 25px;
    text-align: center;
    background-color: #044b98;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 500;
    color: white;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.blog-card-title:hover {
    color: #f0f0f0;
    background-color: transparent;
    text-decoration: none;
}

.blog-card-title-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Blog Section Responsive */
@media (max-width: 992px) {
    .blog-slider {
        gap: 20px;
    }
    
    .blog-cards-container {
        gap: 30px;
    }
    
    .blog-card {
        flex: 0 0 280px;
    }
    
    .blog-title {
        font-size: 48px;
        margin-bottom: 50px;
        margin-top: 30px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0 80px 0;
        min-height: auto;
    }
    
    .blog-slider {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .blog-cards-wrapper {
        flex: 1;
        max-width: calc(100vw - 130px); /* Viewport width minus arrows and gaps */
        overflow: hidden;
    }
    
    .blog-cards-container {
        gap: 15px;
        flex-direction: row;
        width: calc(300px * 5 + 15px * 4); /* Fixed card width * cards + gaps */
        transition: transform 0.5s ease;
    }
    
    .blog-card {
        flex: 0 0 280px;
        width: 280px;
        max-width: 280px;
        margin: 0;
    }
    
    .slider-arrow {
        position: static;
        flex-shrink: 0;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .blog-title {
        font-size: 36px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0 60px 0;
    }
    
    .blog-title {
        font-size: 28px;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    
    .blog-slider {
        gap: 10px;
    }
    
    .blog-cards-wrapper {
        max-width: calc(100vw - 100px); /* Smaller for mobile */
    }
    
    .blog-cards-container {
        gap: 10px;
        width: calc(250px * 5 + 10px * 4); /* Smaller cards for mobile */
    }
    
    .blog-card {
        border-radius: 20px;
        flex: 0 0 240px;
        width: 240px;
        max-width: 240px;
    }
    
    .blog-content {
        padding: 25px 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Footer Section */
.footer-section {
    background: url('/images/footer_bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

/* Footer Left - Logo & Social Media */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #2d4de0;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 10px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column:last-child .footer-column-title {
    text-align: left;
    margin-left: 32px; /* İkon genişliği + gap kadar sola kaydır */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.contact-item svg {
    fill: white;
    flex-shrink: 0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 30px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-column-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-column:last-child .footer-column-title {
        margin-left: 0;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
        gap: 10px;
    }
    
    .footer-contact {
        align-items: center;
        gap: 12px;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 15px;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .footer-link:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo-image {
        height: 60px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column:last-child .footer-column-title {
        margin-left: 0;
        text-align: center;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobil Zoom ve Yatay Kaydırma Sorunu Çözümü */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Container ve wrapper sınıfları için özel kurallar */
    .container, 
    .hero-content,
    .about-content,
    .services-grid,
    .themes-grid,
    .contact-content,
    .footer-content {
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Resimler için özel kurallar */
    img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Grid sistemleri için özel kurallar */
    .hero-content,
    .about-content {
        display: block !important;
        width: 100% !important;
    }
    
    .services-grid,
    .themes-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 20px !important;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    
    /* Yazı boyutları zoom sırasında problem yaratmaması için */
    .hero-title {
        font-size: clamp(24px, 6vw, 32px) !important;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        font-size: clamp(16px, 4vw, 18px) !important;
        line-height: 1.5 !important;
    }
    
    /* Telefon ve laptop resimleri için özel kurallar */
    .phone-image,
    .laptop-image {
        max-width: 90% !important;
        width: auto !important;
        height: auto !important;
    }
    
}

/* Cart Styles */
.cart-button-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1234b1;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
}

.cart-button:hover {
    background: #0f2a8a;
    transform: translateY(-2px);
}

.cart-count {
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

/* Theme Card Updates */
.theme-price {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #6B46C1;
    margin: 15px 0 10px 0;
}

.theme-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.theme-button {
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.details-btn {
    background: #1234b1;
    color: white;
}

.details-btn:hover {
    background: #0f2a8a;
    transform: translateY(-2px);
}

.add-to-cart-btn {
    background: #1234b1;
    color: white;
}

.add-to-cart-btn:hover {
    background: #0f2a8a;
    transform: translateY(-2px);
}

/* Cart Page Styles */
.cart-page {
    min-height: 100vh;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
}

.cart-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.back-to-home {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1234b1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    color: #0f2a8a;
    transform: translateX(-4px);
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.item-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.item-description {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F3F4F6;
    border-radius: 8px;
    padding: 8px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #1234b1;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #0f2a8a;
    transform: scale(1.1);
}

.quantity {
    font-weight: 700;
    font-size: 16px;
    color: #1F2937;
    min-width: 30px;
    text-align: center;
}

.item-price {
    font-size: 20px;
    font-weight: 700;
    color: #6B46C1;
    min-width: 100px;
    text-align: right;
}

.remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #EF4444;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #DC2626;
    transform: scale(1.1);
}

/* Cart Summary */
.summary-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.summary-row span:first-child {
    color: #6B7280;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #1F2937;
}

.total-row {
    border-top: 2px solid #E5E7EB;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
}

.total-row span {
    color: #6B46C1 !important;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-btn {
    background: #1234b1;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.checkout-btn:hover {
    background: #0f2a8a;
    transform: translateY(-2px);
}

.continue-shopping {
    text-align: center;
    color: #1234b1;
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    color: #0f2a8a;
    background: rgba(18, 52, 177, 0.1);
    border-radius: 6px;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.empty-cart-icon {
    margin-bottom: 24px;
    color: #9CA3AF;
}

.empty-cart-title {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.empty-cart-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.shop-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    background: linear-gradient(135deg, #553C9A 0%, #7C2D91 100%);
    transform: translateY(-2px);
}

/* Message Container */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

@media screen and (max-width: 768px) {
    .message-container {
        top: 15px;
        right: 15px;
        left: 15px;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    max-width: 400px;
    margin: 0 auto;
    z-index: 10000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.success-notification {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.error-notification {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    font-weight: 700;
}

.notification-text {
    flex: 1;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .cart-button-container {
        margin-left: 10px;
    }
    
    .cart-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .cart-text {
        display: none;
    }
    
    /* Cart Page Mobile */
    .cart-page {
        padding: 20px 0;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .cart-title {
        font-size: 28px;
        margin: 0;
    }
    
    .back-to-home {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Cart Items Mobile */
    .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px 16px;
        margin-bottom: 15px;
    }
    
    .item-info {
        margin-bottom: 15px;
    }
    
    .item-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .item-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .item-controls {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Quantity Controls Mobile */
    .quantity-controls {
        order: 1;
        background: #F3F4F6;
        border-radius: 8px;
        padding: 6px;
        gap: 10px;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .quantity {
        font-size: 16px;
        min-width: 25px;
        font-weight: 600;
    }
    
    /* Item Price Mobile */
    .item-price {
        order: 2;
        text-align: center;
        min-width: auto;
        flex: 1;
    }
    
    .price-per-item {
        font-size: 12px;
        color: #6B7280;
        margin-bottom: 4px;
        font-weight: 500;
    }
    
    .total-item-price {
        font-size: 18px;
        font-weight: 700;
        color: #6B46C1;
    }
    
    /* Remove Button Mobile */
    .remove-btn {
        order: 3;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .remove-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Cart Summary Mobile */
    .summary-card {
        padding: 20px 16px;
        margin: 0;
        border-radius: 10px;
    }
    
    .summary-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .summary-details {
        margin-bottom: 25px;
    }
    
    .summary-row {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #F3F4F6;
    }
    
    .summary-row:last-child {
        border-bottom: none;
    }
    
    .total-row {
        font-size: 18px;
        font-weight: 700;
        padding: 15px 0;
        border-top: 2px solid #E5E7EB;
        margin-top: 10px;
    }
    
    /* Summary Actions Mobile */
    .summary-actions {
        gap: 15px;
    }
    
    .checkout-btn {
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .continue-shopping {
        padding: 12px 16px;
        font-size: 14px;
        text-align: center;
        border-radius: 8px;
    }
    
    /* Empty Cart Mobile */
    .empty-cart {
        padding: 60px 20px;
        text-align: center;
    }
    
    .empty-cart-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .empty-cart-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .empty-cart-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .shop-now-btn {
        padding: 14px 24px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
}

/* Tablet Responsive for Cart */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .cart-page {
        padding: 30px 0;
    }
    
    .cart-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 35px;
    }
    
    .cart-header {
        margin-bottom: 35px;
    }
    
    .cart-title {
        font-size: 32px;
    }
    
    .cart-item {
        padding: 22px;
        flex-direction: row;
        align-items: center;
    }
    
    .item-info h3 {
        font-size: 19px;
    }
    
    .item-controls {
        flex-wrap: nowrap;
        gap: 18px;
    }
    
    .quantity-controls {
        gap: 11px;
        padding: 7px;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    
    .item-price {
        min-width: 90px;
        text-align: right;
    }
    
    .total-item-price {
        font-size: 19px;
    }
    
    .remove-btn {
        width: 38px;
        height: 38px;
    }
    
    .summary-card {
        padding: 22px;
    }
    
    .summary-title {
        font-size: 24px;
    }
    
    .checkout-btn {
        padding: 15px 22px;
        font-size: 15px;
    }
}

/* Extra Small Mobile Devices */
@media screen and (max-width: 480px) {
    .cart-page {
        padding: 15px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .cart-header {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .cart-title {
        font-size: 24px;
    }
    
    .back-to-home {
        font-size: 13px;
    }
    
    .cart-item {
        padding: 16px 12px;
        gap: 16px;
    }
    
    .item-info h3 {
        font-size: 16px;
    }
    
    .item-description {
        font-size: 12px;
    }
    
    .item-controls {
        gap: 12px;
    }
    
    .quantity-controls {
        gap: 8px;
        padding: 5px;
    }
    
    .quantity-btn {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    .quantity {
        font-size: 14px;
        min-width: 22px;
    }
    
    .total-item-price {
        font-size: 16px;
    }
    
    .remove-btn {
        width: 32px;
        height: 32px;
    }
    
    .remove-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .summary-card {
        padding: 18px 14px;
    }
    
    .summary-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .summary-row {
        padding: 10px 0;
        font-size: 15px;
    }
    
    .total-row {
        font-size: 17px;
        padding: 12px 0;
    }
    
    .checkout-btn {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .continue-shopping {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .empty-cart {
        padding: 50px 16px;
    }
    
    .empty-cart-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .empty-cart-title {
        font-size: 22px;
    }
    
    .empty-cart-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .shop-now-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .theme-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .theme-button {
        flex: 1;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0;
    }
    
    .notification-content {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .notification-text {
        font-size: 14px;
    }
    
    .notification-icon {
        font-size: 18px;
    }
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-cart.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #1234b1;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(18, 52, 177, 0.4);
    transition: all 0.3s ease;
    position: relative;
    margin-right: 8px;
}

.floating-cart-link:hover {
    background: #0f2a8a;
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(18, 52, 177, 0.6);
}

.floating-cart-link svg {
    width: 28px;
    height: 28px;
}

.floating-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.floating-cart-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-cart-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.floating-cart-close svg {
    width: 16px;
    height: 16px;
}

/* Floating Cart Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.floating-cart.show {
    animation: bounceIn 0.5s ease-out;
}

/* Mobile responsive for floating cart */
@media screen and (max-width: 768px) {
    .floating-cart {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-cart-link {
        width: 56px;
        height: 56px;
    }
    
    .floating-cart-link svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-cart-count {
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }
    
    .floating-cart-close {
        width: 28px;
        height: 28px;
    }
}

/* Customer Form Styles */
.customer-form {
    margin-top: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #044b98;
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #044b98;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.customer-form .form-group {
    margin-bottom: 20px;
}

.customer-form .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #044b98;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.customer-form .form-group input,
.customer-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.customer-form .form-group input:focus,
.customer-form .form-group textarea:focus {
    outline: none;
    border-color: #044b98;
    box-shadow: 0 0 0 3px rgba(4, 75, 152, 0.1);
}

.customer-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive for customer form */
@media (max-width: 768px) {
    .customer-form {
        margin-top: 20px;
        padding: 20px;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .customer-form .form-group {
        margin-bottom: 15px;
    }
    
    .customer-form .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .customer-form .form-group input,
    .customer-form .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .customer-form {
        margin-top: 15px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .customer-form .form-group {
        margin-bottom: 12px;
    }
    
    .customer-form .form-group input,
    .customer-form .form-group textarea {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .alert {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* Online Satış Section */
.online-sales-section {
    padding: 80px 0;
    background: url('/images/product_bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 600px;
}

.online-sales-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 52, 177, 0.1);
    z-index: 1;
}

.online-sales-section .container {
    position: relative;
    z-index: 2;
}

.online-sales-title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #1234b1;
    margin-bottom: 60px;
    font-family: '!PaulMaul Regular', 'Bahnschrift Light', 'Bahnschrift', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.online-sales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.sales-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.sales-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 52, 177, 0.05), rgba(18, 52, 177, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sales-card:hover::before {
    opacity: 1;
}

.sales-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 52, 177, 0.2);
    border-color: #1234b1;
}

.sales-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    flex-shrink: 0;
}

.sales-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.sales-card:hover .sales-img {
    transform: scale(1.05);
}

.sales-card-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.sales-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #1234b1;
    margin-bottom: 15px;
    font-family: '!PaulMaul Regular', 'Bahnschrift Light', 'Bahnschrift', sans-serif;
    line-height: 1.3;
}

.sales-card-price {
    font-size: 26px;
    font-weight: bold;
    color: #1234b1;
    margin-bottom: 20px;
}

.sales-card-button {
    background: #1234b1;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: '!PaulMaul Regular', 'Bahnschrift Light', 'Bahnschrift', sans-serif;
    margin-top: auto;
}

.sales-card-button:hover {
    background: #0e2a8a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(18, 52, 177, 0.3);
}

/* Tablet responsive */
@media (max-width: 768px) {
    .online-sales-section {
        padding: 60px 0;
    }
    
    .online-sales-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .online-sales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 600px;
    }
    
    .sales-card {
        height: 350px;
    }
    
    .sales-card-content {
        padding: 20px 15px;
    }
    
    .sales-card-image {
        height: 180px;
        flex-shrink: 0;
    }
    
    .sales-img {
        height: 180px;
    }
    
    .sales-card-title {
        font-size: 20px;
    }
    
    .sales-card-price {
        font-size: 24px;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .online-sales-section {
        padding: 40px 0;
        background-attachment: scroll;
    }
    
    .online-sales-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .online-sales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }
    
    .sales-card {
        height: 320px;
        border-radius: 15px;
    }
    
    .sales-card-content {
        padding: 20px 15px;
    }
    
    .sales-card-image {
        height: 150px;
        border-radius: 15px 15px 0 0;
        flex-shrink: 0;
    }
    
    .sales-img {
        height: 150px;
    }
    
    .sales-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .sales-card-price {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .sales-card-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}