/*
 * Samsun Laminat Parke - Web Tasarım CSS Sistem Dosyası
 * Temiz, Minimalist, Premium Estetik: Beyaz Arka Plan, Kırmızı ve Siyah Detaylar
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --bg-white: #ffffff;
    --bg-light: #f9f9fb;
    --bg-dark: #111111;
    --bg-dark-gray: #1b1b1f;
    
    --text-dark: #111111;
    --text-muted: #5c5c64;
    --text-light: #ffffff;

    --color-red: #e31b23;
    --color-red-hover: #c11219;
    --color-red-light: #fdf2f2;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20ba56;
    --color-facebook: #1877f2;
    --color-instagram: #e1306c;
    
    --border-light: #eaeaef;
    --border-focus: #e31b23;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for mobile sticky footer */
}

@media(min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-sec {
    background-color: var(--bg-light);
}

/* Header & Nav */
.header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-red);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-red);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-red);
    color: var(--text-light);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.2);
}

.header-cta:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.3);
}

/* Mobile Nav Toggler */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Mobile Sidebar Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    z-index: 999;
    transition: var(--transition-normal);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-top: 1px solid var(--border-light);
}

.mobile-nav-overlay.open {
    left: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-red);
}

/* Hero Section */
.hero-sec {
    position: relative;
    padding: 160px 0;
    background-image: url("../assets/img/samsun-laminat-parke-slider.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.hero-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.78); /* dark overlay for text contrast */
    z-index: 1;
}

.hero-sec .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff333d; /* bright red */
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #ffffff; /* white text */
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-title span {
    color: #ff333d; /* bright red */
}

.hero-desc {
    font-size: 1.15rem;
    color: #e2e2e9; /* soft white/gray */
    margin-bottom: 35px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* General Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.3);
}

.btn-secondary {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #2b2b2b;
    transform: translateY(-2px);
}
.btn-social {
    background-color: var(--bg-dark-gray);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}
.btn-social:hover {
    background-color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.3);
}

.btn-facebook, .btn-instagram {
    background-color: var(--bg-dark-gray);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-facebook:hover, .btn-instagram:hover {
    background-color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.3);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}


/* Pulse animation for CTA */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(227, 27, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 27, 35, 0);
    }
}

/* Services section */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title h2 span {
    color: var(--color-red);
}

.section-title p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-red);
}

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-btn {
    font-weight: 700;
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-btn:hover {
    gap: 12px;
}

/* YouTube Video embedding (No 153 error code fix) */
.video-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}

.video-text h2 span {
    color: var(--color-red);
}

.video-text p {
    color: #a0a0ab;
    margin-bottom: 25px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Google Maps map section */
.map-section {
    padding: 80px 0;
}

.map-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-header:hover {
    color: var(--color-red);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.faq-item.active {
    border-color: var(--color-red);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-red);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-content-inner {
    padding-bottom: 24px;
}

.faq-content p {
    margin-bottom: 12px;
}

.faq-content ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.faq-content li {
    margin-bottom: 8px;
}

/* Catalog Page */
.page-header-desc {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    font-size: 1.2rem;
}

.page-header-desc strong a {
    color: var(--color-red);
    text-decoration: underline;
}

.page-header-desc strong a:hover {
    color: var(--color-red-hover);
}

.catalog-grid {
    columns: 4 280px;
    column-gap: 20px;
    padding: 40px 0;
}

.catalog-item {
    break-inside: avoid;
    margin-bottom: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.catalog-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-red);
}

.catalog-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.catalog-item-title {
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-white);
}

/* References Page */
.ref-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.ref-instagram-card {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.ref-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
}

.ref-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-red);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.ref-meta {
    display: flex;
    flex-direction: column;
}

.ref-username {
    font-size: 0.85rem;
    font-weight: 700;
}

.ref-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ref-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square aspect ratio like instagram */
    overflow: hidden;
}

.ref-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ref-instagram-card:hover .ref-image-wrapper img {
    transform: scale(1.05);
}

.ref-footer {
    padding: 15px;
}

.ref-actions-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.ref-actions-icons i {
    font-size: 1.15rem;
    cursor: pointer;
}

.ref-actions-icons i.fa-heart {
    color: var(--color-red);
}

.ref-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.ref-caption strong {
    color: var(--text-dark);
}

.ref-instagram-cta {
    text-align: center;
    margin: 40px auto 0 auto;
    max-width: 500px;
}

.ref-instagram-cta p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* About Us Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.about-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-img-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.7);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.about-content-text {
    font-size: 1.05rem;
}

.about-content-text p {
    margin-bottom: 20px;
}

.about-italic-services {
    font-style: italic;
    background-color: var(--bg-light);
    border-left: 4px solid var(--color-red);
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
}

.about-content-text a strong {
    color: var(--color-red);
}

.about-content-text a strong:hover {
    color: var(--color-red-hover);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-red-light);
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-body h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-body p,
.contact-info-body a {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-info-body a:hover {
    color: var(--color-red);
}

.contact-social-channels {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-btn.facebook { background-color: var(--color-facebook); }
.social-btn.instagram { background-color: var(--color-instagram); }
.social-btn.whatsapp { background-color: var(--color-whatsapp); }

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(0.9);
}

/* Blog Listing */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.blog-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-red);
}

.blog-card-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 30px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.blog-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-card-link {
    font-weight: 700;
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card-link:hover {
    gap: 12px;
}

/* Single Blog Page & Elements */
.blog-post-container {
    max-width: 800px;
    margin: 40px auto;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content h1 {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content em {
    font-style: italic;
    background-color: var(--bg-light);
    border-left: 4px solid var(--color-red);
    padding: 10px 15px;
    display: block;
    margin-bottom: 24px;
    font-size: 1rem;
}

.checkmark-list {
    margin-bottom: 30px;
    padding-left: 0;
}

.checkmark-list.col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.checkmark-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-red);
    font-size: 1rem;
}

/* Blog layouts and elements */
.cta-box-center {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.cta-box-center p {
    margin-bottom: 15px !important;
    font-weight: 700;
}

.cta-inline {
    background-color: var(--bg-light);
    border-left: 4px solid var(--color-red);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.cta-inline p {
    margin-bottom: 0 !important;
    font-weight: 700;
}

.blog-image-wrapper {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.blog-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-image-wrapper.text-center img {
    margin: 0 auto;
}

.max-width-600 {
    max-width: 600px;
}

.blog-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.blog-images-grid .grid-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.blog-images-grid .grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-images-grid .grid-item span {
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    border-top: 1px solid var(--border-light);
}

.blog-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.blog-images-gallery .gallery-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.blog-images-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-cta-box {
    margin: 30px 0;
    padding: 20px;
    background-color: #fdf2f2;
    border: 1px solid #fbd5d5;
    border-radius: 8px;
    text-align: center;
}

.instagram-link-text {
    color: var(--color-instagram);
}

.instagram-link-text:hover {
    text-decoration: underline;
}

.blog-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.blog-social-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    flex: 1 1 120px;
    max-width: 200px;
}

.blog-social-buttons .btn i {
    font-size: 1rem;
    line-height: 1;
}

/* Footer Section */
.footer-sec {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 44px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: var(--color-red);
}

.footer-about-text {
    color: #a0a0ab;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background-color: var(--color-red);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    color: #a0a0ab;
    font-size: 0.95rem;
}

.footer-link-item:hover {
    color: var(--color-red);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    color: #a0a0ab;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--color-red);
    margin-top: 4px;
}

.footer-contact-item a:hover {
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #5c5c64;
    font-size: 0.85rem;
}

/* Floating WhatsApp Button for Desktop */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--color-whatsapp-hover);
}

/* Mobile Sticky Bottom Navigation */
.mobile-fixed-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    z-index: 998;
    grid-template-columns: 1fr 1fr;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.mobile-menu-item.call-btn {
    background-color: var(--color-red);
    color: var(--text-light);
}

.mobile-menu-item.whatsapp-btn {
    background-color: var(--color-whatsapp);
    color: var(--text-light);
}

.mobile-menu-item i {
    font-size: 1.25rem;
}

/* Admin Dashboard CSS Styles */
.admin-login-wrapper {
    max-width: 420px;
    margin: 100px auto;
    padding: 40px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.admin-form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.1);
}

.admin-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.admin-alert-danger {
    background-color: #fde8e8;
    color: #9b1c1c;
    border: 1px solid #fbd5d5;
}

.admin-alert-success {
    background-color: #def7ec;
    color: #03543f;
    border: 1px solid #bcf0da;
}

.admin-dashboard-container {
    padding: 40px 0;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.admin-nav-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.admin-nav-brand span {
    color: var(--color-red);
}

.admin-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.admin-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
    background-color: rgba(0,0,0,0.01);
}

.admin-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.admin-action-btn.edit {
    background-color: var(--bg-dark);
}

.admin-action-btn.delete {
    background-color: var(--color-red);
}

.admin-action-btn:hover {
    filter: brightness(0.9);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle,
    .hero-actions {
        justify-content: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ref-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .desktop-nav,
    .header-cta,
    .floating-whatsapp {
        display: none !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-fixed-menu {
        display: grid;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .ref-instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content h1 { font-size: 1.8rem; }
    .blog-post-content h2 { font-size: 1.5rem; }
}

/* ==========================================================================
   Services Section Dark & Hero Slider Styles (Mockup Alignment)
   ========================================================================== */
.services-sec-dark {
    background-color: var(--bg-dark-gray); /* #1b1b1f */
    color: var(--text-light); /* #ffffff */
    padding: 80px 0 0 0; /* flat alignment for images on bottom */
    overflow: hidden;
}

.services-list-dark {
    max-width: 900px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-list-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.service-list-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    color: var(--color-red);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-list-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.service-list-content p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.services-img-col {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* square ratio default */
    overflow: hidden;
}

.services-img-col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
    border: none;
}

.services-img-col img:hover {
    transform: scale(1.05);
}

/* Hero Slider Image Styling */
.hero-slider-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
}

.hero-slider-img {
    width: 100%;
    max-height: 380px; /* keep it compact */
    object-fit: cover;
    display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .services-list-dark {
        gap: 25px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .service-list-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .service-list-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .service-list-content h3 {
        font-size: 1.25rem;
    }
    
    .service-list-content p {
        font-size: 0.95rem;
    }
    
    .services-images-row {
        grid-template-columns: repeat(2, 1fr); /* 2x2 on mobile */
    }
    
    .hero-slider-container {
        max-width: 90%;
        margin-top: 20px;
    }
}

/* ==========================================================================
   Service Images Overlay (Clickable) & Footer Photos
   ========================================================================== */

.services-img-col a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(227,27,35,0.9), transparent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.services-img-col:hover .services-img-overlay {
    opacity: 1;
}

.services-img-col:hover img {
    transform: scale(1.07);
}

/* Footer thumbnail photos */
.footer-photos-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.footer-photo-thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 4/3;
}

.footer-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.footer-photo-thumb:hover img {
    transform: scale(1.05);
}

/* Blog and footer grid: 2 cols on tablet */
@media (max-width: 991px) {
    .blog-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Lightbox Modal Styles
   ========================================================================== */

.lightbox-trigger {
    cursor: zoom-in;
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeInModal 0.25s ease;
}

.lightbox-modal.active {
    display: flex;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: block;
    margin: 0 auto;
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    color: #e2e2e9;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 600;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background-color: var(--color-red);
}

/* ==========================================================================
   Hizmet Bölgelerimiz - Service Areas Section
   ========================================================================== */

.service-areas-sec {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.samsun-map-container {
    background: #fdf2f2;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.district-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.district-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.district-card:hover {
    border-color: var(--color-red);
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.12);
    transform: translateY(-3px);
}

.district-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.district-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.district-card .fa-arrow-right {
    margin-left: auto;
    color: var(--color-red);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.district-card:hover .fa-arrow-right {
    transform: translateX(4px);
}

.district-dot-small {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #9ca3af;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.25);
}

.district-dot-green {
    background-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: pulseDotSmall 2s ease-in-out infinite;
}

@keyframes pulseDotSmall {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

/* Responsive */
@media (max-width: 991px) {
    .district-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .district-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra Mobile Fixes */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    /* Fix Hero font sizes and spacing */
    .hero-sec {
        padding: 120px 0 60px 0 !important;
    }
    .hero-sec h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    .hero-sec p {
        font-size: 1rem !important;
    }
    
    /* Ensure Footer links don't overlap */
    .footer-col-about, .footer-col-links, .footer-col-services, .footer-col-contact {
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Give padding at bottom to prevent floating action bar covering content */
    body {
        padding-bottom: 0 !important;
    }
    .footer-sec {
        padding-bottom: 105px !important;
    }
    
    /* Make video iframe responsive without squeezing */
    .video-container iframe {
        min-height: 250px;
    }
    
    /* Fix service item text cut-off */
    .service-item-dark p {
        overflow: visible;
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    /* Override misplaced 991px rules */
    .blog-list-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer Mobile Alignment */
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    .footer-photos-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .footer-photo-thumb {
        width: 100%;
        max-width: 350px;
    }
    .footer-sec {
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links {
        align-items: center;
    }
    .footer-contact-list {
        align-items: center;
    }
    .footer-socials {
        justify-content: center;
    }
}
    .footer-logo {
        justify-content: center;
    }
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links {
        align-items: center;
    }
    .footer-contact-list {
        align-items: center;
    }
    .footer-socials {
        justify-content: center;
    }
}