* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-dark: #0f172a;
    --brand-primary: #ea580c;
    --brand-secondary: #0ea5e9;
    --brand-accent: #facc15;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes pan-slow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pan-slow {
    animation: pan-slow 30s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 2s ease-in-out infinite;
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-up {
    animation: slide-in-up 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.group:hover .group-hover\:animate-wiggle {
    animation: wiggle 0.3s ease-in-out;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(234, 88, 12, 0.4);
    border-radius: 0.375rem;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    animation: slide-in-up 0.8s ease-out forwards;
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--brand-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #c2410c;
    transform: translateY(-4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator:hover {
    color: white;
}

.service-card {
    position: relative;
    display: block;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.service-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--brand-dark), rgba(15, 23, 42, 0.6), transparent);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    width: 100%;
    transform: translateY(1rem);
    transition: transform 0.3s;
}

.service-card:hover .service-card-content {
    transform: translateY(0);
}

.service-card-icon {
    width: 4rem;
    height: 4rem;
    background: var(--brand-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.875rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card-desc {
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}

.service-card:hover .service-card-desc {
    opacity: 1;
}

.service-card-link {
    display: flex;
    align-items: center;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s 0.2s;
}

.service-card:hover .service-card-link {
    opacity: 1;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--brand-primary), #c2410c);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seo-article {
    max-width: none;
}

.seo-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.seo-article h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.seo-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.seo-article ul {
    list-style: none;
    margin: 1.5rem 0;
}

.seo-article li {
    margin-bottom: 0.75rem;
}

.location-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.location-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 24rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.inner-header {
    padding-top: 5rem; /* Mobilde daha az padding */
    padding-bottom: 2rem;
    background: var(--brand-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .inner-header {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
}

/* Breadcrumb Wrapper - Mobilde Scrollable */
.breadcrumb-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.breadcrumb-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.breadcrumb {
    display: inline-flex; /* flex yerine inline-flex */
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem; /* Mobilde daha küçük */
    color: #9ca3af;
    padding: 0.5rem 0;
    min-width: 100%; /* En az tam genişlik */
}

@media (min-width: 640px) {
    .breadcrumb {
        font-size: 0.875rem;
    }
}

.breadcrumb a {
    transition: color 0.3s;
    flex-shrink: 0; /* Linklerin küçülmesini engelle */
}

.breadcrumb a:hover {
    color: white;
}

.article-content {
    color: #374151;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.article-content ul {
    margin: 1rem 0;
}

.social-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.share-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-4px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.faq-item {
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.faq-item[open] {
    border-color: var(--brand-primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    padding: 1rem;
    color: var(--brand-dark);
}

.faq-item[open] .faq-question {
    color: var(--brand-primary);
}

.faq-answer {
    color: #4b5563;
    padding: 1rem;
    padding-top: 0;
    animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.sidebar-card.dark {
    background: var(--brand-dark);
    color: white;
}

.sidebar-title {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.sidebar-card.dark .sidebar-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #4b5563;
}

.sidebar-link:hover {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-link.active {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

.sidebar-location-link {
    display: block;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-location-link:hover {
    color: var(--brand-primary);
}

.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-primary) rgba(255, 255, 255, 0.1);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 3px;
}

.cta-box {
    background: linear-gradient(135deg, var(--brand-primary), #c2410c);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.4);
    animation: pulse-slow 2s ease-in-out infinite;
}

.cta-button {
    display: block;
    background: white;
    color: var(--brand-primary);
    font-weight: 900;
    font-size: 1.25rem;
    padding: 0.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social:hover {
    background: var(--brand-primary);
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 4rem;
    height: 4rem;
    background: #25d366;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
}

.phone-float {
    position: fixed;
    bottom: 6.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 4rem;
    height: 4rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-slow 2s ease-in-out infinite;
}

.phone-float:hover {
    background: #c2410c;
    transform: scale(1.1);
}

.contact-mini-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .contact-mini-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-mini-card i {
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.phone-card {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: white;
}

.phone-card i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.whatsapp-card i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.card-value:hover {
    text-decoration: underline;
}

.whatsapp-cta-card {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

.whatsapp-icon-big {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.whatsapp-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.whatsapp-cta-desc {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #25d366;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .mobile-sticky-bottom {
        display: none;
    }
}

.mobile-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-sticky-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #20ba5a;
}

.phone-btn {
    background: var(--brand-primary);
}

.phone-btn:hover {
    background: #c2410c;
}

@media (min-width: 1024px) {
    .whatsapp-float {
        display: flex;
    }
    .phone-float {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .whatsapp-float {
        display: none;
    }
    .phone-float {
        display: none;
    }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--brand-dark);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 50;
    transform: translateX(100%);  /* Bu sat覺r kalacak */
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-menu-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-menu-overlay a:hover {
    color: var(--brand-primary);
}
#closeMobileMenu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

#closeMobileMenu:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}
.mobile-menu-link {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(234, 88, 12, 0.2);
}
/* === MOBİLE NAVBAR FIX === */
@media (max-width: 1023px) {
    /* Navbar yüksekliğini sabitle */
    #navbar {
        height: 56px !important;
    }
    
    /* Logo metnini mobilde küçült - ARTIK GİZLEME */
    #navbar .flex.items-center.gap-2 > div {
        display: block !important;
    }
    
    #navbar .flex.items.items-center.gap-2 > div > div:first-child {
        font-size: 14px !important; /* Logo yazısını küçült */
    }
    
    #navbar .flex.items-center.gap-2 > div > div:last-child {
        display: none !important; /* Sadece alt yazıyı gizle */
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    /* Tablet'te logo metnini göster ama küçük */
    #navbar .flex.items-center.gap-2 > div {
        display: block;
    }
}

/* === BREADCRUMB RESPONSIVE === */
@media (max-width: 640px) {
    .breadcrumb {
        justify-content: flex-start; /* Sola yasla */
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Tüm elemanları göster ama scroll edilebilir */
    .breadcrumb-wrapper {
        max-width: 100vw;
    }
    
    /* Font'u daha da küçült mobilde */
    .breadcrumb {
        font-size: 11px !important;
        gap: 0.25rem;
    }
    
    /* İkonları küçült */
    .breadcrumb i {
        font-size: 9px;
    }
}

/* === INNER HEADER TITLE === */
.inner-header h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 640px) {
    .inner-header h1 {
        line-height: 1.3;
        max-width: 100%;
    }
}