s/* ========================================
   CSS RESET & VARIABLES
======================================== */

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

:root {
    /* Bold & Vibrant Colors */
    --primary-color: #FF6B35;
    --primary-light: #FF8C61;
    --primary-dark: #E85A2A;
    --secondary-color: #FFD23F;
    --accent-color: #7B2CBF;
    --accent-light: #9D4EDD;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    --gradient-secondary: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
    --gradient-hero: linear-gradient(135deg, #FF6B35 0%, #E85A2A 50%, #7B2CBF 100%);

    /* Neutrals */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-color: #2d2d2d;
    --text-light: #6c757d;
    --border-color: #e9ecef;

    /* Shadows */
    --shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 15px 45px rgba(255, 107, 53, 0.25);
    --shadow-colored: 0 20px 60px rgba(123, 44, 191, 0.3);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: var(--shadow);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white-color);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 5px;
    transition: var(--transition);
}

/* ========================================
   SLIDER
======================================== */

.slider {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white-color);
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.5);
    z-index: 1;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInUp 1s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: slideInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    animation: slideInUp 1s ease 0.4s both;
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.slide-content .btn:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--white-color);
    transition: var(--transition);
    z-index: 3;
}

.slider-btn:hover {
    background: var(--primary-color);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

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

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

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* ========================================
   SECTIONS
======================================== */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 20px;
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-image {
    position: relative;
    display: flex;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ========================================
   SERVICES SECTION
======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--white-color);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.service-duration i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-call {
    background: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   PRICING SECTION
======================================== */

.pricing-section {
    background: var(--light-color);
}

.pricing-table {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-item {
    background: var(--white-color);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pricing-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.pricing-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-note {
    text-align: center;
    padding: 20px;
    background: var(--white-color);
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ========================================
   GALLERY SECTION
======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay h4 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white-color);
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-card {
    background: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

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

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient-primary);
    transform: rotate(5deg) scale(1.05);
}

.contact-card-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon i {
    color: var(--white-color);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-card-content p {
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.contact-card-content a {
    color: var(--text-color);
    transition: var(--transition);
}

.contact-card-content a:hover {
    color: var(--primary-color);
}

.contact-info-item {
    margin-bottom: 15px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.highlight-card {
    background: var(--gradient-primary);
    color: var(--white-color);
    flex-direction: column;
    align-items: stretch;
}

.highlight-card::before {
    display: none;
}

.highlight-card .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.highlight-card .contact-card-icon i {
    color: var(--white-color);
}

.highlight-card .contact-card-content h4,
.highlight-card .contact-card-content p,
.highlight-card .contact-card-content a {
    color: var(--white-color);
}

.contact-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.9rem;
}

.contact-card-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-section {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    grid-column: span 2;
}

.social-section h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-links-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dbb 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-form-wrapper h3,
.contact-map-wrapper h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

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

.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 50px 0 20px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p,
.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-content {
        gap: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil ekranlar */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--white-color);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

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

    .logo a {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    /* Slider */
    .slider {
        height: 80vh;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .slide-content .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

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

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

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-badge {
        right: 15px;
        bottom: 15px;
        padding: 20px;
        font-size: 0.9rem;
    }

    .about-badge i {
        font-size: 1.7rem;
    }

    .about-text h3 {
        font-size: 1.7rem;
    }

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

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image {
        height: 220px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .service-price {
        font-size: 1.3rem;
    }

    /* Pricing */
    .pricing-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .pricing-name {
        font-size: 1rem;
    }

    .pricing-price {
        font-size: 1.3rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .social-section {
        grid-column: span 1;
    }

    .contact-info h3,
    .contact-form-wrapper h3,
    .contact-map-wrapper h3 {
        font-size: 1.6rem;
    }

    .map-container {
        height: 400px;
    }

    .map-placeholder {
        height: 400px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

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

    .social-links-modern {
        gap: 12px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 25px;
        right: 25px;
    }
}

/* Küçük mobil ekranlar */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Slider */
    .slider {
        height: 70vh;
    }

    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

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

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

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

    /* About */
    .about-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        display: inline-block;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    /* Services */
    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing-item {
        padding: 18px;
    }

    .pricing-name {
        font-size: 0.95rem;
    }

    .pricing-price {
        font-size: 1.2rem;
    }

    .pricing-note {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item {
        height: 250px;
    }

    /* Contact */
    .contact-item h4 {
        font-size: 0.95rem;
    }

    .contact-item p,
    .contact-item a {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    /* Social Links */
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 360px) {
    .slide-title {
        font-size: 1.3rem;
    }

    .slide-description {
        font-size: 0.85rem;
    }

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

    .logo a {
        font-size: 1.1rem;
    }

    .nav-menu {
        width: 80%;
    }
}
