/* 
 * Quba Perde - Styles.css
 * Son Güncelleme: 2024 - Turuncu arka plan kaldırıldı
 * Dükkan fotoğrafı daha görünür hale getirildi
 * Contact card profesyonelleştirildi
 */

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(10px)) {
    .header {
        background: rgba(255, 255, 255, 0.98);
    }
}

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

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d2691e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #cd853f 0%, #d2691e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.5);
}

.scroll-to-top.show {
    display: flex;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo h1 {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #d2691e;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation Active States */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 999;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    color: white;
    z-index: 5;
    position: relative;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff6b35 0%, #d2691e 100%);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: locationPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-location-badge:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.hero-badge i {
    color: #ffd700;
}

.hero-location-badge i {
    color: #ffd700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: iconGlow 2s ease-in-out infinite;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding: 0 0.2em;
    border-radius: 8px;
    text-shadow: none;
    animation: highlightGlow 3s ease-in-out infinite;
}

.title-line.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.1) 50%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 8px;
    z-index: -1;
    transform: scale(1.05);
    filter: blur(2px);
}

@keyframes highlightGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    50% { 
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
}

@keyframes locationPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7);
    }
}

@keyframes iconGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    }
}

@keyframes locationGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
        color: #ffd700;
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
        color: #ffed4e;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-text-section {
    flex: 1;
    max-width: 600px;
}

.hero-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(210, 105, 30, 0.15);
    border: 2px solid rgba(210, 105, 30, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d2691e, #cd853f, #d2691e);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d2691e, #cd853f);
    border-radius: 2px;
}

.contact-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d2691e;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.3px;
}

.contact-header p {
    color: #d2691e;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.hero-contact {
    margin-top: 1.5rem;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 250px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.hero-phone::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;
}

.hero-phone:hover::before {
    left: 100%;
}

.hero-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.phone-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.phone-label {
    display: none;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.hero-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-phone i {
    font-size: 1.2rem;
    color: #4CAF50;
}

.hero-phone span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    border: 2px solid #d2691e;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #cd853f 0%, #d2691e 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.6);
}

.btn-outline {
    background: transparent;
    color: #d2691e;
    border: 2px solid #d2691e;
    font-size: 0.9rem;
    padding: 8px 20px;
}

.btn-outline:hover {
    background: #d2691e;
    color: white;
}

/* Eski hero-social stilleri kaldırıldı - artık contact-buttons kullanılıyor */

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: white;
    width: 100%;
    max-width: 250px;
    height: 60px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-btn::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;
}

.social-btn:hover::before {
    left: 100%;
}

.instagram-btn {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.social-btn i {
    font-size: 1.4rem;
    flex-shrink: 0;
    font-weight: 900;
}

.social-btn span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}





/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    margin-bottom: 1rem;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 105, 30, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(210, 105, 30, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.feature-highlight span {
    color: #ffd700;
    font-weight: 700;
}



/* Blog Page Styles */
.blog-hero {
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.blog-hero-stats .stat-item {
    text-align: center;
}

.blog-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.blog-hero-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Blog Categories */
.blog-categories {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid rgba(210, 105, 30, 0.1);
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    border: 2px solid #d2691e;
    background: transparent;
    color: #d2691e;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-tab:hover,
.category-tab.active {
    background: #d2691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

/* Blog Main */
.blog-main {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(210, 105, 30, 0.15);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #d2691e;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #d2691e;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(210, 105, 30, 0.1);
    color: #d2691e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #d2691e;
    color: white;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #cd853f;
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.blog-load-more {
    text-align: center;
}

.blog-load-more .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(210, 105, 30, 0.1);
    border-bottom: 1px solid rgba(210, 105, 30, 0.1);
}

.blog-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.blog-cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-cta-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Blog Section (for main page) */
.blog {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 105, 30, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(210, 105, 30, 0.2);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #d2691e;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #d2691e;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(210, 105, 30, 0.1);
    color: #d2691e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #d2691e;
    color: white;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #cd853f;
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.reviews-title-section {
    flex: 1;
    text-align: left;
}

.reviews-title-section .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.reviews-title-section .section-title::after {
    left: 0;
    transform: none;
}

.reviews-title-section .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.google-business-badge {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 0;
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.2);
    color: white;
    min-width: 350px;
}

.google-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.google-logo i {
    font-size: 2.5rem;
    color: white;
}

.badge-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.google-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.google-view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.review-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-card.fade-out {
    animation: fadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* Farklı animasyon varyasyonları */
.review-card:nth-child(1) {
    animation: slideInLeft 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card:nth-child(2) {
    animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card:nth-child(3) {
    animation: slideInRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: translateX(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    border-color: #d2691e;
}

.review-card:hover::before {
    background: linear-gradient(135deg, #d2691e 0%, #e67e22 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar i {
    font-size: 1.5rem;
    color: #666;
}

.reviewer-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
    margin-top: auto;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #34A853;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-verified i {
    font-size: 1rem;
}

.more-reviews {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.more-reviews .btn {
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
    transition: all 0.3s ease;
}

.more-reviews .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4);
    scale: 1.05;
}

.reviews-progress {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border-radius: 3px;
    transition: width 0.05s linear;
    position: relative;
    will-change: width;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s ease-in-out infinite;
    will-change: transform;
    border-radius: 3px;
}

@keyframes shimmer {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

.progress-time {
    color: #d2691e;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.progress-time.urgent {
    color: #e74c3c;
    font-size: 1.2rem;
    animation: pulse-urgent 0.8s infinite;
    will-change: transform;
}

.progress-fill.complete {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

@keyframes pulse-urgent {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(1.02);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.05);
        opacity: 1;
    }
    75% {
        transform: scale(1.02);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Work Categories Section */
.work-categories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-container {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: white;
    text-align: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #cd853f 0%, #d2691e 100%);
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-placeholder .click-hint {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.category-info {
    padding: 1.5rem 2rem 2rem 2rem;
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.category-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.category-features i {
    color: #d2691e;
    font-size: 0.9rem;
}

/* Plicell Card Special Styles */
.plicell-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plicell-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.plicell-card:hover .videos-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210, 105, 30, 0.1);
    pointer-events: none;
}

.video-container {
    height: 400px;
    width: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border-radius: 15px;
    margin: 1rem auto;
    aspect-ratio: 9/16;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 1;
    position: relative;
}

.click-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 1.2rem 2rem;
    background: #d2691e;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    width: 100%;
}

.click-hint:hover {
    background: #cd853f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.5);
    scale: 1.05;
}

.click-hint i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    color: white;
}

.click-hint span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #d2691e;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-content-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature:last-child {
    margin-bottom: 0;
}

.about-feature:hover {
    background: rgba(210, 105, 30, 0.05);
    transform: translateX(5px);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-feature .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.about-feature .feature-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 2rem 0 3rem;
    background: #f8f9fa;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: auto;
}

.contact-item i {
    font-size: 1.5rem;
    color: #d2691e;
    width: 40px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.map-link:hover {
    color: #cd853f;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d2691e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-phone,
.footer-email {
    color: #bdc3c7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: #d2691e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d2691e;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #d2691e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #cd853f;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: relative;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        z-index: 999;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .header {
        padding: 1.5rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    /* Blog Mobile Styles */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .blog-card {
        margin: 0 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Blog Mobile Styles */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .blog-card {
        margin: 0 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 7rem 0 3rem 0;
        min-height: auto;
    }
    
    .hero-content {
        order: 1;
        margin-top: 2rem;
        padding: 1.5rem;
        margin-left: 0;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-text-section {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact-section {
        align-items: center;
        width: 100%;
    }
    
    .contact-card {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
    }
    
    .contact-buttons {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-self: center;
        justify-self: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        font-weight: 800;
        text-shadow: 
            0 2px 6px rgba(255, 107, 53, 0.15),
            0 3px 12px rgba(255, 107, 53, 0.1);
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-contact {
        text-align: center;
        margin-top: 1.2rem;
    }
    
    .hero-phone {
        font-size: 1rem;
        padding: 0.7rem 1.3rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        text-align: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-self: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-location-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.2rem;
        font-weight: 700;
    }
    
    /* Social Buttons */
    .social-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-btn {
        width: 160px;
        height: 50px;
        gap: 0.8rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .social-btn i {
        font-size: 1.5rem;
    }
    
    .social-btn span {
        font-size: 0.9rem;
    }
    
    /* Features Section */
    .features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Work Categories */
    .work-categories {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .video-container {
        height: 320px;
        width: 220px;
        margin: 0.8rem auto;
        background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    }
    
    .category-info {
        padding: 1.5rem;
    }
    
    .category-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .category-info p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .category-features {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .category-features span {
        font-size: 0.9rem;
    }
    
    .click-hint {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Reviews Section */
    .reviews-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .reviews-title-section {
        text-align: center;
    }
    
    .reviews-title-section .section-title {
        text-align: center;
    }
    
    .reviews-title-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .reviews-title-section .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .google-business-badge {
        min-width: auto;
        width: 100%;
        padding: 2rem;
    }
    
    .reviews-progress {
        padding: 0.8rem 1.2rem;
        margin: 1.2rem 0;
        max-width: 350px;
    }
    
    /* Tablet'te animasyonları optimize et */
    .review-card {
        animation-duration: 0.4s;
    }
    
    .review-card:nth-child(1) {
        animation: slideInLeft 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .review-card:nth-child(2) {
        animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .review-card:nth-child(3) {
        animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .more-reviews {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .video-placeholder {
        padding: 1.2rem;
    }
    
    .video-placeholder i {
        font-size: 2.8rem;
        margin-bottom: 0.9rem;
    }
    
    .video-placeholder p {
        font-size: 1.05rem;
        font-weight: 600;
    }
    
    /* About Section */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-content-box {
        padding: 2rem;
    }
    
    .about-feature {
        margin-bottom: 1.5rem;
        padding: 0.8rem;
    }
    
    .about-feature .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-feature .feature-icon i {
        font-size: 1.3rem;
    }
    
    .about-feature .feature-text h4 {
        font-size: 1rem;
    }
    
    .about-feature .feature-text p {
        font-size: 0.85rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.95rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        align-items: flex-start;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        padding: 1rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    /* Mobile Navigation */
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        z-index: 999;
    }
    
    /* Hero Section */
    .hero {
        padding: 7rem 0 3rem 0;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        order: 1;
        margin-top: 2rem;
        padding: 1.5rem;
        margin-left: 0;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-text-section {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact-section {
        align-items: center;
        width: 100%;
    }
    
    .contact-buttons {
        align-items: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: 800;
        text-shadow: 
            0 1px 4px rgba(255, 107, 53, 0.15),
            0 2px 8px rgba(255, 107, 53, 0.1);
        letter-spacing: 0.3px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .hero-contact {
        text-align: center;
        margin-top: 1rem;
    }
    
    .hero-phone {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-phone i {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 200px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-self: center;
        justify-self: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.7rem;
    }
    
    .hero-location-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    /* Social Buttons */
    .social-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .social-btn {
        width: 200px;
        height: 50px;
        gap: 0.8rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .social-btn i {
        font-size: 1.5rem;
    }
    
    .social-btn span {
        font-size: 0.9rem;
    }
    
    /* Features Section */
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Work Categories */
    .work-categories {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .video-container {
        height: 250px;
        width: 180px;
        margin: 0.5rem auto;
        background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    }
    
    .category-info {
        padding: 1.2rem;
    }
    
    .category-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .category-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .category-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .category-features span {
        font-size: 0.85rem;
    }
    
    .click-hint {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Video placeholder mobile styles */
    .video-placeholder {
        padding: 1rem;
    }
    
    .video-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Reviews Section */
    .reviews-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .reviews-title-section {
        text-align: center;
    }
    
    .reviews-title-section .section-title {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .reviews-title-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .reviews-title-section .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
    }
    
    .google-business-badge {
        min-width: auto;
        width: 100%;
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .google-logo {
        width: 60px;
        height: 60px;
    }
    
    .google-logo i {
        font-size: 2rem;
    }
    
    .badge-info h3 {
        font-size: 1.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-footer {
        padding-top: 1rem;
    }
    
    .reviews-progress {
        padding: 0.8rem 1.2rem;
        margin: 1.2rem 0;
        max-width: 300px;
    }
    
    .progress-text {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .progress-time {
        font-size: 0.9rem;
    }
    
    .progress-time.urgent {
        font-size: 1.1rem;
    }
    
    /* Mobilde animasyonları optimize et */
    .review-card {
        animation-duration: 0.35s;
    }
    
    .review-card:nth-child(1) {
        animation: slideInLeft 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .review-card:nth-child(2) {
        animation: slideInUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .review-card:nth-child(3) {
        animation: slideInRight 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .more-reviews {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .more-reviews .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* About Section */
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-box {
        padding: 1.5rem;
    }
    
    .about-feature {
        margin-bottom: 1.2rem;
        padding: 0.8rem;
    }
    
    .about-feature .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-feature .feature-icon i {
        font-size: 1.2rem;
    }
    
    .about-feature .feature-text h4 {
        font-size: 0.95rem;
    }
    
    .about-feature .feature-text p {
        font-size: 0.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
        align-items: flex-start;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Curtain Animation Mobile */
    .curtain-title {
        font-size: 2rem;
    }
    
    .curtain-subtitle {
        font-size: 1.2rem;
    }
    
    .curtain-location {
        font-size: 1.1rem;
        margin-top: 0.8rem;
    }
    
    .curtain-logo-img {
        width: 60px;
        height: 60px;
    }
}

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

.feature-card,
.category-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Curtain Opening Animation */
.curtain-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.curtain-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    transform: translateX(0);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.curtain-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #cd853f 0%, #d2691e 100%);
    transform: translateX(0);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.curtain-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.5s ease 0.5s;
}

.curtain-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.curtain-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.curtain-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.curtain-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 2px;
}

.curtain-location {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    animation: locationGlow 2s ease-in-out infinite;
}

/* Curtain Animation States */
.curtain-animation.animate .curtain-left {
    transform: translateX(-100%);
}

.curtain-animation.animate .curtain-right {
    transform: translateX(100%);
}

.curtain-animation.animate .curtain-content {
    opacity: 1;
    transform: scale(1);
}

.curtain-animation.hide {
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease;
}







/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Blog Article Styles */
.blog-article {
    padding: 2rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.article-header {
    background: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #d2691e;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta span {
    color: #666;
    font-size: 0.9rem;
}

.article-meta i {
    margin-right: 0.5rem;
    color: #d2691e;
}

.article-category {
    display: inline-block;
    background: #d2691e;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.article-image {
    text-align: center;
    margin-bottom: 2rem;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content h2 {
    font-size: 2rem;
    color: #333;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    border-left: 4px solid #d2691e;
    padding-left: 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #444;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.article-content strong {
    color: #d2691e;
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, #d2691e 0%, #b8860b 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

.article-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    border: none;
    padding: 0;
}

.article-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

.article-footer {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.article-tags {
    margin-bottom: 2rem;
}

.article-tags .tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.article-tags .tag:hover {
    background: #d2691e;
    color: white;
}

.article-navigation {
    text-align: center;
}

.article-navigation .btn {
    background: #d2691e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.article-navigation .btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* Mobile Responsive Blog Article */
@media (max-width: 768px) {
    .article-header {
        padding: 2rem 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-content {
        padding: 2rem 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .article-cta {
        padding: 1.5rem 1rem;
    }
    
    .article-cta h3 {
        font-size: 1.5rem;
    }
    
    .curtain-location {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .curtain-location {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
        margin-top: 0.8rem;
    }
}

/* Location Link Styles */
.location-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 25;
    pointer-events: auto;
}

.location-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-location-badge .location-link:hover {
    transform: scale(1.02);
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.curtain-location .location-link:hover {
    color: #ffed4e;
    text-shadow: 0 0 15px rgba(255, 237, 78, 0.8);
    transform: scale(1.05);
}
