/* ============================================
   Armoni Koltuk Döşeme - Ana Stil Dosyası
   Profesyonel Kurumsal Tasarım
   ============================================ */

:root {
    --primary: #b8860b;
    --primary-dark: #8b6508;
    --primary-light: #d4a017;
    --secondary: #1a1a2e;
    --dark: #0f0f23;
    --dark-light: #16213e;
    --accent: #e94560;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-cream: #fdf6e3;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-info span {
    margin-right: 20px;
    display: inline-block;
}
.top-info i {
    color: var(--primary);
    margin-right: 6px;
}
.top-social a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    font-size: 1rem;
    transition: var(--transition);
}
.top-social a:hover { color: var(--primary); }

/* ===== NAVBAR ===== */
#mainNav {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
#mainNav.scrolled {
    padding: 8px 0;
    background: rgba(15, 15, 35, 0.98);
}
.navbar-brand .logo-img {
    max-height: 50px;
    transition: var(--transition);
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}
.btn-whatsapp {
    background: #25d366;
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.9rem;
}
.btn-whatsapp:hover {
    background: #128c7e;
    color: white !important;
    transform: translateY(-2px);
}

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; }
.heroSwiper { width: 100%; height: 85vh; min-height: 500px; }
.heroSwiper .swiper-slide { position: relative; overflow: hidden; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,35,0.85), rgba(26,26,46,0.6));
}
.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
}
.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    background: rgba(184, 134, 11, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--primary);
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after { font-size: 18px; }
.heroSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}
.heroSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
.section-padding { padding: 80px 0; }
.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}
.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--white);
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
}
.feature-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== ABOUT HOME ===== */
.about-image-wrapper {
    position: relative;
    display: inline-block;
}
.about-image-wrapper img {
    border-radius: var(--radius-lg);
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.85rem;
    opacity: 0.9;
}
.about-content { padding-left: 20px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.about-feature-item {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}
.about-feature-item i {
    color: var(--primary);
    margin-right: 8px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.1); }
.service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    z-index: 2;
}
.service-body {
    padding: 30px 20px 20px;
}
.service-body h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}
.service-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-link:hover { color: var(--primary-dark); }
.service-link i { transition: transform 0.3s; }
.service-link:hover i { transform: translateX(5px); }

/* ===== STATS SECTION ===== */
.stats-section {
    background: url('../img/stats-bg.jpg') center/cover fixed;
    background-color: var(--secondary);
    position: relative;
    padding: 80px 0;
}
.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,35,0.92), rgba(26,26,46,0.88));
}
.stat-item { padding: 20px; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-number::after { content: '+'; }
.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.gallery-filter { margin-bottom: 30px; }
.filter-btn {
    background: transparent;
    border: 2px solid var(--border);
    padding: 8px 24px;
    border-radius: 50px;
    margin: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(184, 134, 11, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; margin-bottom: 10px; }
.gallery-overlay span { font-size: 0.9rem; font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    color: white;
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}
.cta-buttons .btn { margin: 5px 10px; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--secondary);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), transparent);
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(184,134,11,0.15), transparent 60%);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== SERVICE DETAIL ===== */
.service-detail-img img { border-radius: var(--radius-lg); }
.service-detail-content h2 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 20px;
}
.content-body { line-height: 1.8; color: var(--text-light); }
.content-body p { margin-bottom: 15px; }

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.sidebar-widget .widget-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.service-list { list-style: none; padding: 0; }
.service-list li { margin-bottom: 8px; }
.service-list li a {
    color: var(--text);
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}
.service-list li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 20px;
}
.service-list li a i { margin-right: 8px; color: var(--primary); }
.cta-widget {
    background: linear-gradient(135deg, var(--secondary), var(--dark-light));
    color: white;
}
.cta-widget .widget-title { border: none; }
.cta-widget h4 { color: white; font-family: var(--font-heading); margin-bottom: 10px; }
.cta-widget p { opacity: 0.8; margin-bottom: 15px; }

/* ===== CONTACT ===== */
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
}
.contact-info-card h5 {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}
.contact-info-card a { color: var(--text); }
.contact-info-card a:hover { color: var(--primary); }
.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 10px;
}
.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
.map-wrapper { height: 100%; min-height: 400px; }
.map-placeholder {
    background: var(--bg-light);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--text-muted);
}
.map-placeholder i { font-size: 3rem; margin-bottom: 15px; }

/* ===== WHY US ===== */
.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--primary);
    color: white;
}
.why-card h5 { font-weight: 600; color: var(--secondary); margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ===== ERROR PAGE ===== */
.error-page { min-height: 50vh; display: flex; align-items: center; }
.error-code {
    font-size: 8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 30px; }
.widget-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.footer-contact li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 4px;
    min-width: 16px;
}
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .heroSwiper { height: 60vh; }
    .slide-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .features-bar { margin-top: 0; }
    .about-content { padding-left: 0; margin-top: 30px; }
    .experience-badge { right: 10px; bottom: -10px; padding: 15px; }
    .experience-badge .number { font-size: 2rem; }
    .top-bar .row { text-align: center; }
    .top-bar .text-end { text-align: center !important; margin-top: 5px; }
}
@media (max-width: 767px) {
    .heroSwiper { height: 50vh; min-height: 350px; }
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content p { font-size: 1rem; }
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .page-header h1 { font-size: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .cta-content h2 { font-size: 1.8rem; }
    .top-info span { display: block; margin-bottom: 3px; }
    .about-features { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .scroll-top { bottom: 80px; right: 20px; }
}
@media (max-width: 576px) {
    .heroSwiper { height: 45vh; min-height: 300px; }
    .slide-content h1 { font-size: 1.5rem; }
    .btn-lg { padding: 10px 20px; font-size: 0.9rem; }
    .navbar-brand .logo-img { max-height: 40px; }
}
