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

:root {
    --primary-blue: #2E5C8A;
    --medium-blue: #4A90C2;
    --light-blue: #7BB3D9;
    --pale-blue: #B8D4E8;
    --dark-blue: #1A3A5C;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --silver: #C0C0C0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation; /* Mobilde daha hızlı dokunma tepkisi */
}

/* Genel Responsive Kurallar */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch-friendly butonlar için minimum boyut */
button, 
a.button, 
.cta-button, 
.submit-button,
input[type="submit"],
input[type="button"] {
    min-height: 44px;
    min-width: 44px;
}

/* Form elemanları mobil uyumlu */
input, 
textarea, 
select {
    font-size: 16px; /* iOS zoom'u önlemek için */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Tablo responsive (varsa) */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Mobilde yatay scroll'u önle */
* {
    -webkit-tap-highlight-color: transparent;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen / Giriş Animasyonu */
.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--medium-blue) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.loader-logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.loader-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: logoScale 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.paint-brush-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: paintSplash 2.5s ease-in-out infinite;
    z-index: 1;
}

.paint-brush-effect::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(123, 179, 217, 0.2) 25%,
        rgba(74, 144, 194, 0.2) 50%,
        rgba(46, 92, 138, 0.15) 75%,
        transparent 100%
    );
    border-radius: 50%;
    animation: paintRotate 4s linear infinite;
}

.paint-brush-effect::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(123, 179, 217, 0.15) 30%,
        transparent 70%
    );
    border-radius: 50%;
    animation: paintPulse 2s ease-in-out infinite;
}

.loader-text {
    color: var(--white);
    animation: textFadeIn 1s ease-out 0.5s both;
}

.loader-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: titleGlow 2s ease-in-out infinite;
}

.loader-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--white) 0%, 
        var(--light-blue) 50%, 
        var(--white) 100%
    );
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 2.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animasyonlar */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes logoScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes paintSplash {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes paintRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes paintPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(46, 92, 138, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo-text {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.trademark-wrapper {
    position: relative;
    display: inline-block;
}

.trademark-symbol {
    position: absolute;
    top: -0.3em;
    right: -0.2em;
    width: 0.5em;
    height: 0.5em;
    object-fit: contain;
    vertical-align: baseline;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--medium-blue));
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--white) 50%, var(--light-blue) 100%);
    animation: backgroundShift 10s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 4s ease-in-out;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1);
    transition: transform 4s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.hero-image.active {
    opacity: 1;
    z-index: 2;
}

.hero-image.active img {
    transform: scale(1.05);
    animation: subtleZoom 8s ease-in-out infinite;
}

@keyframes subtleZoom {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
}

.paint-splash {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--medium-blue), var(--primary-blue));
    border-radius: 50% 40% 60% 30%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

@media (max-width: 768px) {
    .paint-splash {
        width: 250px;
        height: 250px;
        filter: blur(30px);
    }

    .paint-splash.splash-2 {
        width: 200px;
        height: 200px;
    }

    .paint-splash.splash-3 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .paint-splash {
        width: 200px;
        height: 200px;
        filter: blur(25px);
        opacity: 0.25;
    }

    .paint-splash.splash-2 {
        width: 150px;
        height: 150px;
    }

    .paint-splash.splash-3 {
        width: 130px;
        height: 130px;
    }
}

.paint-splash.splash-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
    background: radial-gradient(circle, var(--light-blue), var(--medium-blue));
    border-radius: 40% 60% 30% 50%;
}

.paint-splash.splash-3 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 15%;
    animation-delay: -4s;
    background: radial-gradient(circle, var(--primary-blue), var(--dark-blue));
    border-radius: 60% 30% 50% 40%;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--dark-blue);
    padding: 2rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes neonGlow {
    0%, 100% {
        background-position: 0% center;
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
    }
    50% {
        background-position: 200% center;
        filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8)) 
                drop-shadow(0 0 30px rgba(74, 144, 194, 0.5));
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(46, 92, 138, 0.3);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent; /* Mobilde tıklama vurgusunu kaldır */
    touch-action: manipulation;
    cursor: pointer;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 92, 138, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pale-blue) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--medium-blue));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-blue);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(46, 92, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pale-blue), var(--light-blue));
    transition: left 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 92, 138, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--dark-blue);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-image: url('resimlerim/MAVI_G~2.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 212, 232, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 0;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio .section-title {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 0 30px rgba(46, 92, 138, 0.4);
    background: none;
    -webkit-text-fill-color: var(--white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.portfolio .section-title::after {
    background: linear-gradient(90deg, var(--white), var(--white));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.portfolio .section-subtitle {
    position: relative;
    z-index: 2;
    color: var(--white);
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5),
                 0 2px 8px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(46, 92, 138, 0.4);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(46, 92, 138, 0.25),
                0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    cursor: pointer;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 92, 138, 0.1), rgba(74, 144, 194, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(46, 92, 138, 0.35),
                0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, var(--pale-blue), var(--light-blue));
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.05) contrast(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(26, 58, 92, 0.95) 0%,
        rgba(26, 58, 92, 0.85) 50%,
        rgba(26, 58, 92, 0) 100%);
    padding: 2.5rem 2rem 2rem;
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
    padding-bottom: 2.5rem;
    background: linear-gradient(to top, 
        rgba(26, 58, 92, 0.98) 0%,
        rgba(46, 92, 138, 0.9) 50%,
        rgba(74, 144, 194, 0.7) 100%);
}

.portfolio-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--medium-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay::before {
    transform: scaleX(1);
}

.portfolio-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.portfolio-overlay h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--medium-blue), var(--light-blue));
    border-radius: 2px;
    transition: height 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay h3::before {
    height: 100%;
}

.portfolio-overlay p {
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 50%, var(--pale-blue) 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(46, 92, 138, 0.3);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 92, 138, 0.1), rgba(74, 144, 194, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-text h3 .company-name {
    color: var(--primary-blue);
    font-size: 1.1em;
    font-weight: 700;
    display: block;
}

.about-text h3 .service-title {
    color: var(--dark-blue);
    font-size: 0.85em;
    font-weight: 600;
    display: block;
    opacity: 0.9;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(46, 92, 138, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(46, 92, 138, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.feature-item p {
    font-size: 1rem;
    color: var(--dark-blue);
    opacity: 0.8;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-image: url('resimlerim/MAVI_G~4.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 212, 232, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    position: relative;
    z-index: 2;
}

.testimonials .section-subtitle {
    color: var(--dark-blue);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 92, 138, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pale-blue), var(--light-blue));
    transition: left 0.5s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    left: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 92, 138, 0.25);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: rotate(360deg) scale(1.1);
}

.testimonial-avatar svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark-blue);
    position: relative;
    z-index: 1;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--dark-blue);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating .star {
    color: var(--gold);
    font-size: 1.3rem;
    margin-right: 0.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating .star:nth-child(1) { animation-delay: 0s; }
.testimonial-rating .star:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating .star:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating .star:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-blue);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: Georgia, serif;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pale-blue) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(46, 92, 138, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(46, 92, 138, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-item p {
    color: var(--dark-blue);
    opacity: 0.8;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(46, 92, 138, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--pale-blue);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(46, 92, 138, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 92, 138, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.footer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-instagram-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.footer-instagram-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.footer-instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.footer-instagram-icon:hover svg {
    transform: scale(1.1);
}

/* Web Tasarım Ajansı Bölümü */
.web-design-credit {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.web-design-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.web-design-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.web-design-icon svg {
    width: 28px;
    height: 28px;
}

.web-design-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.web-design-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.web-design-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    letter-spacing: 0.5px;
}

.web-design-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.web-design-link::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;
}

.web-design-link:hover::before {
    left: 100%;
}

.web-design-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link-text {
    position: relative;
    z-index: 1;
}

.link-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.web-design-link:hover .link-arrow {
    transform: translateX(5px);
}

.web-design-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 400;
}

.instagram-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.instagram-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.instagram-icon:hover svg {
    transform: scale(1.1);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

/* Responsive Design */

/* Tablet ve küçük ekranlar (1024px ve altı) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Loading Screen Responsive */
    .loader-logo-wrapper {
        width: 150px;
        height: 150px;
    }

    .loader-logo {
        width: 120px;
        height: 120px;
    }

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

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

    .loader-progress {
        width: 250px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .title-line {
        display: block;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Sections */
    .services,
    .portfolio,
    .about,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

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

    .service-card p {
        font-size: 0.95rem;
    }

    /* Portfolio */
    .portfolio {
        background-attachment: scroll; /* Mobilde fixed background performans sorunu yaratabilir */
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .portfolio-image {
        height: 280px;
    }

    .portfolio-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.4rem;
        padding-left: 1rem;
    }

    .portfolio-overlay p {
        font-size: 0.9rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-text h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .about-text h3 .company-name {
        font-size: 1.1em;
    }
    
    .about-text h3 .service-title {
        font-size: 0.85em;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonials {
        background-attachment: scroll;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-header {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-info h4 {
        font-size: 1.1rem;
    }

    .testimonial-info p {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
    }

    .submit-button {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-instagram-icon {
        width: 45px;
        height: 45px;
    }

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

    .web-design-credit {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .web-design-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .web-design-icon {
        width: 45px;
        height: 45px;
    }

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

    .web-design-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .web-design-label {
        font-size: 0.8rem;
    }

    .web-design-subtitle {
        font-size: 0.75rem;
    }

    .instagram-icon {
        width: 45px;
        height: 45px;
    }

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

/* Küçük mobil cihazlar (480px ve altı) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Loading Screen Responsive */
    .loader-logo-wrapper {
        width: 120px;
        height: 120px;
    }

    .loader-logo {
        width: 100px;
        height: 100px;
    }

    .loader-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .loader-subtitle {
        font-size: 0.9rem;
    }

    .loader-progress {
        width: 200px;
    }

    .loader-content {
        gap: 1.5rem;
    }

    /* Navigation */
    .navbar .container {
        padding: 0.75rem 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .trademark-symbol {
        width: 0.45em;
        height: 0.45em;
        top: -0.25em;
    }

    .logo-image {
        height: 35px;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }

    .cta-button {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .mouse {
        width: 25px;
        height: 40px;
    }

    /* Sections */
    .services,
    .portfolio,
    .about,
    .testimonials,
    .contact {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* Services */
    .services-grid {
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
    }

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

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

    /* Portfolio */
    .portfolio-grid {
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .portfolio-item {
        border-radius: 15px;
    }

    .portfolio-image {
        height: 250px;
    }

    .portfolio-overlay {
        padding: 1.75rem 1.25rem 1.25rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.25rem;
        padding-left: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .portfolio-overlay p {
        font-size: 0.85rem;
    }

    /* About */
    .about-content {
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .about-text h3 .company-name {
        font-size: 1.1em;
    }
    
    .about-text h3 .service-title {
        font-size: 0.85em;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .about-features {
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .testimonial-rating {
        text-align: center;
        margin-bottom: 1rem;
    }

    .testimonial-rating .star {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        text-align: center;
    }

    /* Contact */
    .contact-content {
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .contact-info {
        gap: 1.25rem;
    }

    .info-item {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }

    .info-icon svg {
        width: 28px;
        height: 28px;
    }

    .info-item h3 {
        font-size: 1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .submit-button {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    /* Footer */
    .footer {
        padding: 1.25rem 0;
        font-size: 0.85rem;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-copyright {
        gap: 0.75rem;
    }

    .footer-instagram-icon {
        width: 40px;
        height: 40px;
    }

    .footer-instagram-icon svg {
        width: 20px;
        height: 20px;
    }

    .web-design-credit {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .web-design-icon {
        width: 40px;
        height: 40px;
    }

    .web-design-icon svg {
        width: 20px;
        height: 20px;
    }

    .web-design-link {
        font-size: 0.95rem;
        padding: 0.35rem 0.7rem;
    }

    .web-design-label {
        font-size: 0.75rem;
    }

    .web-design-subtitle {
        font-size: 0.7rem;
    }

    .instagram-icon {
        width: 40px;
        height: 40px;
    }

    .instagram-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Ekstra küçük ekranlar için ek iyileştirmeler */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .service-card,
    .testimonial-card {
        padding: 1.25rem;
    }
}

/* Çok küçük ekranlar (320px ve altı) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .service-card,
    .testimonial-card,
    .contact-form {
        padding: 1.5rem 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-card,
.portfolio-item,
.about-image,
.feature-item,
.testimonial-card {
    animation: fadeIn 0.6s ease forwards;
}

