


/* Hero Action Buttons */
.hero-action-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.action-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.call-btn {
    background: linear-gradient(135deg, red, red);
    color: white;
}#28a745, #1e7e34

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.location-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

/* Tablet için responsive */
@media (max-width: 768px) {
    .hero-action-buttons {
        gap: 12px;
    }
    
    .action-btn {
        padding: 10px 20px;
        font-size: 15px;
        min-width: 120px;
    }
    
    .action-btn i {
        font-size: 16px;
    }
}

/* Mobil için responsive */
@media (max-width: 576px) {
    .hero-action-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin: 15px 0 20px;
    }
    
    .action-btn {
        padding: 12px 16px;
        font-size: 15px;
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }
    
    .action-btn i {
        margin-right: 10px;
        font-size: 18px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 360px) {
    .action-btn {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* Paket kartları için ek stiller */
.package-desc {
    color: #666;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: clamp(10px, 2vw, 15px);
    padding: clamp(8px, 1.5vw, 10px);
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 5px;
}

.package-features {
    list-style: none;
    margin: clamp(15px, 3vw, 20px) 0;
}

.package-features li {
    padding: clamp(6px, 1.5vw, 8px) 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: #2ecc71;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    min-width: clamp(16px, 3vw, 20px);
}

.package-features li.disabled {
    color: #95a5a6;
}

.package-features li.disabled i {
    color: #e74c3c;
}

.package-features li span {
    flex: 1;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

/* Sistem mesajları */
.system-message {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hakkımızda Bölümü */
.about {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 50px);
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #2c3e50;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: clamp(20px, 4vw, 30px);
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(20px, 4vw, 30px);
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #3498db;
    margin-bottom: clamp(10px, 2vw, 15px);
}

.feature h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    color: #2c3e50;
}

.feature p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin-bottom: 0;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Slider/Galeri Bölümü */
.slider-gallery {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #f8f9fa;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto clamp(30px, 6vw, 50px);
    overflow: hidden;
    border-radius: clamp(8px, 1.5vw, 15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: clamp(300px, 50vw, 500px);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: clamp(15px, 3vw, 30px);
    transform: translateY(0);
    transition: transform 0.3s;
}

.slide:hover .slide-caption {
    transform: translateY(-10px);
}

.slide-caption h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: clamp(5px, 1vw, 10px);
}

.slide-caption p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.8);
    color: white;
    border: none;
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.prev-btn {
    left: clamp(10px, 2vw, 20px);
}

.next-btn {
    right: clamp(10px, 2vw, 20px);
}

.slider-dots {
    position: absolute;
    bottom: clamp(10px, 2vw, 20px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(6px, 1vw, 10px);
    z-index: 10;
}

.dot {
    width: clamp(8px, 1.5vw, 12px);
    height: clamp(8px, 1.5vw, 12px);
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* Galeri Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: clamp(15px, 3vw, 20px);
    margin-top: clamp(30px, 6vw, 40px);
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.gallery-item {
    position: relative;
    border-radius: clamp(8px, 1.5vw, 10px);
    overflow: hidden;
    height: clamp(150px, 30vw, 250px);
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(52, 152, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 95%;
    max-height: 90%;
    position: relative;
}

@media (min-width: 768px) {
    .lightbox-content {
        max-width: 90%;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 5px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .lightbox-content img {
        max-height: 80vh;
    }
}

.close-lightbox {
    position: absolute;
    top: clamp(-35px, -6vw, -40px);
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: clamp(10px, 2vw, 15px);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Hizmet Paketleri */
.service-packages {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #fff;
}

.packages-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(30px, 6vw, 40px);
}

@media (min-width: 768px) {
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 1200px) {
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.package-card {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: clamp(10px, 2vw, 15px);
    padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.popular {
    border: clamp(2px, 0.4vw, 3px) solid #3498db;
}

@media (min-width: 768px) {
    .package-card.popular {
        transform: scale(1.05);
    }
}

.package-card.popular::before {
    content: 'POPÜLER';
    position: absolute;
    top: clamp(15px, 3vw, 20px);
    right: -30px;
    background-color: #3498db;
    color: white;
    padding: clamp(4px, 1vw, 5px) clamp(25px, 5vw, 30px);
    transform: rotate(45deg);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
}

@media (max-width: 480px) {
    .package-card.popular::before {
        padding: 4px 20px;
        font-size: 0.7rem;
    }
}

.package-header {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 30px);
}

.package-header h3 {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    color: #2c3e50;
    margin-bottom: clamp(8px, 1.5vw, 10px);
}

.package-price {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #3498db;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-price span {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #7f8c8d;
}

.package-features {
    list-style: none;
    margin-bottom: clamp(20px, 4vw, 30px);
    flex: 1;
}

.package-features li {
    padding: clamp(8px, 1.5vw, 10px) 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
}

.package-features li i {
    color: #2ecc71;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    min-width: clamp(18px, 3vw, 24px);
}

.package-features li.disabled {
    color: #95a5a6;
}

.package-features li.disabled i {
    color: #95a5a6;
}

.package-features li span {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.package-btn {
    display: block;
    width: 100%;
    padding: clamp(12px, 2.5vw, 15px);
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: clamp(6px, 1.5vw, 8px);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}

.package-btn:hover {
    background-color: #2980b9;
}

.package-card.popular .package-btn {
    background-color: #2c3e50;
}

.package-card.popular .package-btn:hover {
    background-color: #1a252f;
}

/* Temel Stil Ayarları - Responsive Güncellemeler */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Navigasyon - Responsive Güncellemeler */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 2.5vw, 15px) clamp(15px, 3vw, 20px);
}

}






.logo {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 700;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
}

.logo img {
    height: 50px; /* Logonun yüksekliği */
    width: auto; /* Orantılı genişlik */
    object-fit: contain;
}

/* Mobil için logo boyutunu küçült */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}


.logo i {
    color: #3498db;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(15px, 3vw, 30px);
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
}

.nav-links a:hover {
    color: #3498db;
}

.btn-login {
    background-color: #3498db;
    color: white !important;
    padding: clamp(6px, 1.5vw, 8px) clamp(15px, 3vw, 20px);
    border-radius: 5px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.menu-toggle {
    display: none;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    cursor: pointer;
    background: none;
    border: none;
    color: #2c3e50;
}

/* Hero Bölümü - Responsive Güncellemeler */
.hero {
    padding: clamp(120px, 15vw, 150px) 0 clamp(60px, 8vw, 100px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 6vw, 40px);
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: clamp(20px, 4vw, 30px);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero p {
        margin-left: 0;
        margin-right: 0;
    }
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #3498db;
    padding: clamp(10px, 2.5vw, 12px) clamp(20px, 5vw, 30px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: clamp(8px, 1.5vw, 10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Hizmetler - Responsive Güncellemeler */
.services {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: clamp(30px, 6vw, 50px);
    color: #2c3e50;
    padding: 0 clamp(10px, 2vw, 15px);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 30px);
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.service-card {
    background: #f8f9fa;
    padding: clamp(20px, 4vw, 30px);
    border-radius: clamp(8px, 1.5vw, 10px);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: #3498db;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.service-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: clamp(10px, 2vw, 15px);
    color: #2c3e50;
}

.service-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Randevu Formu - Responsive Güncellemeler */
.appointment {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #f8f9fa;
}

.appointment-form {
    background: white;
    padding: clamp(20px, 5vw, 40px);
    border-radius: clamp(8px, 1.5vw, 10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(15px, 3vw, 20px);
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: clamp(6px, 1.5vw, 8px);
    font-weight: 500;
    color: #555;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(10px, 2.5vw, 12px);
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: clamp(15px, 3vw, 20px);
    padding: clamp(12px, 2.5vw, 15px);
    border-radius: 5px;
    display: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* İletişim - Responsive Güncellemeler */
.contact {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 50px);
    align-items: start;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(20px, 4vw, 30px);
}

.contact-item i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #3498db;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.map {
    border-radius: clamp(8px, 1.5vw, 10px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 300px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer - Responsive Güncellemeler */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: clamp(30px, 6vw, 50px) 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 3vw, 20px);
}

.footer-logo {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
}

.social-icons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}

/* Responsive Tasarım - İyileştirilmiş */
@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: clamp(15px, 3vw, 20px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: clamp(12px, 2.5vw, 15px);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .hero .container {
        padding: 0 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular::before {
        padding: 3px 15px;
        font-size: 0.6rem;
        top: 10px;
        right: -25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .packages-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Yatay mod için ek düzenlemeler */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero .container {
        flex-direction: row;
    }
    
    .slider {
        height: 250px;
    }
    
    .gallery-item {
        height: 120px;
    }
}

/* Touch cihazlar için iyileştirmeler */
@media (hover: none) {
    .service-card:hover,
    .package-card:hover,
    .feature:hover,
    .gallery-item:hover img {
        transform: none;
    }
    
    .gallery-overlay {
        opacity: 0.8;
    }
    
    .slide:hover .slide-caption {
        transform: none;
    }
}


/* MOBİL HIZLI İLETİŞİM BUTONLARI */
.mobile-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* Mobilde gösterilecek butonlar */
.mobile-contact-button {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

/* Butonlar için hover efektleri */
.mobile-contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Her buton için özel renkler */
.call-button {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.location-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Buton içindeki ikonlar */
.mobile-contact-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Butonlar için tooltip */
.mobile-contact-button::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.mobile-contact-button::before {
    content: '';
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #2c3e50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-contact-button:hover::after,
.mobile-contact-button:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Ana buton (toplayıcı buton) */
.contact-main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.contact-main-button:hover {
    transform: rotate(90deg);
    background: linear-gradient(135deg, #2980b9, #1c5f85);
}

/* Butonların açılma animasyonu */
.mobile-contact-button.show {
    display: block;
    animation: buttonSlideUp 0.3s ease forwards;
}

@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .mobile-contact-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .mobile-contact-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-main-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mobile-contact-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .mobile-contact-button {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .contact-main-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mobile-contact-button::after {
        font-size: 0.7rem;
        padding: 6px 10px;
        right: 50px;
    }
}

/* Tablet cihazlar için */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-contact-buttons {
        bottom: 25px;
        right: 25px;
    }
}

/* Açık durumdaki butonlar için */
.mobile-contact-buttons.expanded .mobile-contact-button {
    display: block;
}

/* Butonların sıralanması için geçiş efektleri */
.mobile-contact-button:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-contact-button:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-contact-button:nth-child(4) {
    transition-delay: 0.3s;
}

/* Karanlık mod desteği */
@media (prefers-color-scheme: dark) {
    .mobile-contact-button::after {
        background-color: #1a252f;
        color: #ecf0f1;
    }
    
    .mobile-contact-button::before {
        border-left-color: #1a252f;
    }
}

/* Touch cihazlar için iyileştirmeler */
@media (hover: none) {
    .mobile-contact-button:hover {
        transform: none;
    }
    
    .contact-main-button:hover {
        transform: none;
    }
    
    .mobile-contact-button::after,
    .mobile-contact-button::before {
        display: none;
    }
    
    .mobile-contact-button:active {
        transform: scale(0.95);
    }
}

/* Yatay modda mobil cihazlar */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-contact-buttons {
        bottom: 5px;
        right: 5px;
    }
    
    .mobile-contact-button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .contact-main-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.call-float {
    display: block;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.call-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: white;
}

.address-btn {
    display: block;
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s;
}

.address-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: white;
}


/* Paketler ek css dosyası */

.paket-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin-top:30px;
}

.paket-card{
  border:1px solid #e5e5e5;
  border-radius:16px;
  padding:22px;
  background:#fff;
  position:relative;
}

.paket-card.featured{
  border-color:#f4c400;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.paket-badge{
  position:absolute;
  top:16px;
  right:16px;
  background:#f4c400;
  color:#000;
  font-size:12px;
  padding:6px 10px;
  border-radius:20px;
}

.paket-price{
  font-size:22px;
  font-weight:700;
  margin:10px 0;
}

.paket-hidden{
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
}

.paket-hidden.open{
  margin-top:10px;
}

.paket-toggle{
  background:none;
  border:none;
  color:#c00;
  font-weight:600;
  cursor:pointer;
  margin-top:10px;
}

.paket-cta{
  display:block;
  margin-top:18px;
  background:#c00;
  color:#fff;
  text-align:center;
  padding:12px;
  border-radius:10px;
  text-decoration:none;
}




