/* ============================================
   KOKTEN MEDIA - Modern Digital Agency Theme
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #6C3CE1;
    --primary-light: #8B5CF6;
    --primary-dark: #5B21B6;
    --secondary: #00D4AA;
    --accent: #FF6B6B;
    --dark: #0F0F1A;
    --dark-light: #1A1A2E;
    --dark-card: #16162A;
    --text: #B8B8D0;
    --text-light: #E0E0F0;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #6C3CE1 0%, #00D4AA 100%);
    --gradient-2: linear-gradient(135deg, #6C3CE1 0%, #FF6B6B 100%);
    --gradient-3: linear-gradient(180deg, #0F0F1A 0%, #1A1A2E 100%);
    --shadow-glow: 0 0 40px rgba(108, 60, 225, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
body {
    background: var(--dark) !important;
    color: var(--text) !important;
    font-family: 'Poppins', sans-serif !important;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

a {
    transition: var(--transition);
}

/* === Preloader === */
.preloader {
    background: var(--dark) !important;
}
.preloader-inner .loader {
    border-color: var(--primary) !important;
    border-top-color: var(--secondary) !important;
}

/* === Header === */
.kokten-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    padding: 15px 0;
}

.kokten-header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108, 60, 225, 0.2);
    padding: 10px 0;
}

.kokten-header .header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kokten-header .logo img {
    height: 50px;
    transition: var(--transition);
}

.kokten-header.scrolled .logo img {
    height: 40px;
}

.kokten-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kokten-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.3px;
}

.kokten-nav a:hover,
.kokten-nav a.active {
    color: var(--white);
    background: rgba(108, 60, 225, 0.15);
}

.kokten-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.kokten-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

.header-phone i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(108, 60, 225, 0.2);
    color: var(--primary-light);
    font-size: 16px;
}

.header-phone:hover {
    color: var(--white);
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-1);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.6);
    color: var(--white) !important;
}

.btn-gradient::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: 0.5s;
}

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

.btn-outline-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-light) !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-glow:hover {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(108, 60, 225, 0.5);
    color: var(--white);
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* === Hero Section === */
.kokten-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-top: 80px;
}

.kokten-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

.kokten-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-stat-item h3 span {
    color: var(--secondary);
}

.hero-stat-item p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    min-height: 500px;
}

.hero-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: heroCircle 6s ease-in-out infinite;
}

@keyframes heroCircle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.floating-card:nth-child(1) { top: 2%;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.floating-card:nth-child(2) { top: 28%; right: -8%; animation-delay: 0.6s; }
.floating-card:nth-child(3) { top: 28%; left: -8%;  animation-delay: 1.2s; }
.floating-card:nth-child(4) { bottom: 28%; right: -8%; animation-delay: 1.8s; }
.floating-card:nth-child(5) { bottom: 28%; left: -8%; animation-delay: 2.4s; }

.floating-card:nth-child(1) { animation-name: floatX; }
@keyframes floatX {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-15px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card .fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fc-icon.web { background: rgba(108, 60, 225, 0.2); color: var(--primary-light); }
.fc-icon.seo { background: rgba(0, 212, 170, 0.2); color: var(--secondary); }
.fc-icon.google { background: rgba(255, 107, 107, 0.2); color: var(--accent); }
.fc-icon.social { background: rgba(59, 130, 246, 0.2); color: #60A5FA; }
.fc-icon.meta { background: rgba(236, 72, 153, 0.2); color: #F472B6; }

.floating-card .fc-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.floating-card .fc-sub {
    font-size: 11px;
    color: var(--text);
    margin-top: 2px;
}

/* === Services Section (Slider Altı) === */
.kokten-services-bar {
    position: relative;
    z-index: 10;
    margin-top: -30px;
    margin-bottom: 20px;
    padding: 0 30px;
}

.services-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(108, 60, 225, 0.15);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-bar-item {
    padding: 35px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    display: block;
}

.service-bar-item:last-child {
    border-right: none;
}

.service-bar-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-bar-item:hover::before {
    transform: scaleX(1);
}

.service-bar-item:hover {
    background: rgba(108, 60, 225, 0.08);
}

.service-bar-item .sb-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    transition: var(--transition);
}

.service-bar-item:nth-child(1) .sb-icon { background: rgba(108, 60, 225, 0.15); color: var(--primary-light); }
.service-bar-item:nth-child(2) .sb-icon { background: rgba(0, 212, 170, 0.15); color: var(--secondary); }
.service-bar-item:nth-child(3) .sb-icon { background: rgba(255, 107, 107, 0.15); color: var(--accent); }
.service-bar-item:nth-child(4) .sb-icon { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.service-bar-item:nth-child(5) .sb-icon { background: rgba(236, 72, 153, 0.15); color: #F472B6; }

.service-bar-item:hover .sb-icon {
    transform: scale(1.1);
}

.service-bar-item .sb-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.service-bar-item .sb-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* === Section Styles === */
.kokten-section {
    padding: 100px 0;
    position: relative;
}

.kokten-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 60, 225, 0.1);
    border: 1px solid rgba(108, 60, 225, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    max-width: 600px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-1);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
}

.about-experience-badge h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 4px 0 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(108, 60, 225, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(108, 60, 225, 0.1);
}

.about-feature i {
    color: var(--secondary);
    font-size: 16px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

/* === Services Detail Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    text-decoration: none !important;
    display: block;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 60, 225, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--dark-card), transparent);
}

.service-card-body {
    padding: 28px;
    position: relative;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(108, 60, 225, 0.3);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.service-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-card-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* === Gallery / Portfolio === */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(108, 60, 225, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .po-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    margin-left: auto;
    margin-bottom: auto;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.portfolio-overlay .po-icon:hover {
    background: var(--white);
    color: var(--primary);
}

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* === Stats / Counter Section === */
.kokten-stats {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.kokten-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(108,60,225,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.stat-card:last-child::after {
    display: none;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    background: rgba(108, 60, 225, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(108, 60, 225, 0.2);
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

/* === Footer === */
.kokten-footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(108, 60, 225, 0.1);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-brand .logo img {
    height: 45px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 60, 225, 0.1);
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(108, 60, 225, 0.15);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(108, 60, 225, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
}

.footer-contact-item .fci-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.footer-contact-item .fci-text a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-contact-item .fci-text a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--text);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

/* === Whatsapp Button === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    z-index: 9998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* === CTA Section === */
.kokten-cta {
    background: var(--gradient-1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.kokten-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--white);
    color: var(--primary) !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* === Responsive === */
@media (max-width: 1200px) {
    .services-bar-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-bar-item:nth-child(4),
    .service-bar-item:nth-child(5) {
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .floating-card:nth-child(3),
    .floating-card:nth-child(4),
    .floating-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 991px) {
    .kokten-nav { display: none; }
    .mobile-toggle { display: flex; }
    .header-phone { display: none; }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-desc { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { display: none !important; }
    .hero-visual { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .kokten-section {
        padding: 70px 0;
    }

    .services-bar-inner {
        grid-template-columns: 1fr;
    }

    .service-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .service-bar-item .sb-icon {
        margin: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .portfolio-item {
        height: 200px;
    }

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

    .stat-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-stats { display: none !important; }

    .kokten-services-bar {
        margin-top: -30px;
    }
}

/* Mobile Sticky Footer */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-card);
    border-top: 1px solid rgba(108, 60, 225, 0.2);
    display: none;
    z-index: 9999;
    padding: 12px 0;
}

.mobile-sticky-bar .msb-inner {
    display: flex;
    justify-content: space-around;
}

.mobile-sticky-bar a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
}

.mobile-sticky-bar .msb-whatsapp {
    background: #25D366;
}

.mobile-sticky-bar .msb-call {
    background: var(--primary);
}

@media (max-width: 767px) {
    .mobile-sticky-bar { display: block; }
    .whatsapp-float { display: none !important; }
    body { padding-bottom: 70px; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.98);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu-overlay nav a {
    display: block;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    padding: 16px 0;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.mobile-menu-overlay nav a:hover {
    color: var(--primary-light);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Page Banner === */
.kokten-page-banner {
    background: var(--dark-light);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.kokten-page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin: 12px 0 20px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.page-breadcrumb a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--primary-light);
}

.page-breadcrumb i {
    font-size: 10px;
    color: var(--primary-light);
}

.page-breadcrumb span {
    color: var(--primary-light);
    font-weight: 500;
}

/* === Blog Layout === */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Blog Card Horizontal */
.blog-card-horizontal {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.blog-card-horizontal:hover {
    border-color: rgba(108, 60, 225, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.blog-card-img {
    overflow: hidden;
    height: 100%;
    min-height: 240px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card-horizontal:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.blog-card-meta span {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary-light);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-light);
}

.blog-card-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--dark-card);
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(108, 60, 225, 0.4);
}

/* === Sidebar === */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(108, 60, 225, 0.2);
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 6px;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-links li a:hover,
.sidebar-links li.active a {
    background: rgba(108, 60, 225, 0.1);
    color: var(--primary-light);
}

.sidebar-links li a i {
    font-size: 10px;
    color: var(--primary-light);
}

/* Sidebar Post */
.sidebar-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-img {
    width: 80px;
    min-width: 80px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sidebar-post-img:hover img {
    transform: scale(1.1);
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-date {
    font-size: 12px;
    color: var(--primary-light);
    display: block;
    margin-bottom: 4px;
}

.sidebar-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.sidebar-post-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-post-content h4 a:hover {
    color: var(--primary-light);
}

/* Sidebar Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 60, 225, 0.08);
    border: 1px solid rgba(108, 60, 225, 0.15);
    border-radius: 50px;
    color: var(--text);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-tags a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* === Blog Detail === */
.blog-detail-article {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.blog-detail-img {
    height: 400px;
    overflow: hidden;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    padding: 28px 32px 0;
}

.blog-detail-meta span {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--primary-light);
}

.blog-detail-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    padding: 16px 32px 0;
    line-height: 1.3;
}

.blog-detail-body {
    padding: 24px 32px 32px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.9;
}

.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4 {
    color: var(--white);
    margin: 28px 0 14px;
}

.blog-detail-body p {
    margin-bottom: 16px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.blog-detail-body li {
    margin-bottom: 8px;
}

.blog-detail-body a {
    color: var(--primary-light);
}

.blog-detail-body img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

/* === Contact Layout === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-side .section-header {
    margin-bottom: 36px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(108, 60, 225, 0.3);
    transform: translateX(5px);
}

.cic-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(108, 60, 225, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
}

.contact-info-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px;
}

.contact-info-card a,
.contact-info-card span {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-light);
}

.contact-social {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Contact Form */
.contact-form-side {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.06);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.1);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B8B8D0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-card);
    color: var(--text-light);
}

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

.form-alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.form-alert.success {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--secondary);
}

.form-alert.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--accent);
}

/* === Detail Layout (hizmet-detay) === */
.detail-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.detail-content {
    min-width: 0;
}

.detail-hero-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
    height: 400px;
}

.detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.detail-body {
    font-size: 15px;
    color: var(--text);
    line-height: 1.9;
}

.detail-body h2,
.detail-body h3,
.detail-body h4 {
    color: var(--white);
    margin: 28px 0 14px;
}

.detail-body p {
    margin-bottom: 16px;
}

.detail-body ul,
.detail-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.detail-body li {
    margin-bottom: 8px;
}

.detail-body a {
    color: var(--primary-light);
}

.detail-body img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--gradient-1);
    border-radius: var(--radius);
    padding: 32px 24px;
}

/* Detail CTA Box */
.detail-cta-box {
    margin-top: 40px;
    padding: 36px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(108, 60, 225, 0.2);
}

.detail-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.detail-cta-box p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 24px;
}

/* === FAQ Accordion === */
.detail-faq {
    margin-top: 40px;
}

.faq-item {
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(108, 60, 225, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.faq-question i {
    color: var(--primary-light);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-question {
    background: rgba(108, 60, 225, 0.08);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/* === Detail Page Enhanced === */

/* Detail Hero Badge */
.detail-hero-img {
    position: relative;
}

.detail-hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(108, 60, 225, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Detail Share Bar */
.detail-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dsb-label {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dsb-label i {
    color: var(--primary-light);
}

.dsb-links {
    display: flex;
    gap: 8px;
}

.dsb-links a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: var(--transition);
}

.dsb-links a.dsb-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.dsb-links a.dsb-tw:hover { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.dsb-links a.dsb-li:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.dsb-links a.dsb-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }

/* Sidebar Features */
.sf-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sf-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(108, 60, 225, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-light);
}

.sf-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.sf-item span {
    font-size: 12px;
    color: var(--text);
}

/* Sidebar CTA Enhanced */
.sidebar-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--white);
}

.sidebar-cta h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.sidebar-cta-btn:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    transform: translateY(-2px);
}

/* Detail FAQ Header */
.detail-faq-header {
    margin-bottom: 24px;
}

.detail-faq-header .section-badge {
    margin-bottom: 12px;
}

.detail-faq-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.detail-faq-header p {
    font-size: 14px;
    color: var(--text);
}

/* Detail CTA Box Enhanced */
.dcb-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.dcb-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(108, 60, 225, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-light);
}

.dcb-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Related Services Grid */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-service-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.related-service-card:hover {
    border-color: rgba(108, 60, 225, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.rsc-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.rsc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-service-card:hover .rsc-img img {
    transform: scale(1.08);
}

.rsc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 60, 225, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.related-service-card:hover .rsc-overlay {
    opacity: 1;
}

.rsc-btn {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rsc-body {
    padding: 20px 24px;
}

.rsc-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.4;
}

.rsc-body p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* === Blog Detail Enhanced === */

/* Blog Detail Topbar */
.blog-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.blog-detail-topbar .blog-detail-meta {
    padding: 0;
}

.blog-detail-share {
    display: flex;
    gap: 6px;
}

.blog-detail-share a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: var(--transition);
}

.blog-detail-share a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Blog Detail Tags */
.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.bdt-label {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 4px;
}

.bdt-label i {
    color: var(--primary-light);
}

.blog-detail-tags a {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(108, 60, 225, 0.08);
    border: 1px solid rgba(108, 60, 225, 0.15);
    border-radius: 50px;
    color: var(--text);
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-detail-tags a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Blog Author Box */
.blog-author-box {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    margin: 0;
    background: rgba(108, 60, 225, 0.04);
    border-top: 1px solid rgba(108, 60, 225, 0.1);
}

.bab-avatar {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(108, 60, 225, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 60, 225, 0.1);
}

.bab-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.bab-info {
    flex: 1;
}

.bab-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bab-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 4px 0 8px;
}

.bab-info p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
    margin: 0 0 12px;
}

.bab-social {
    display: flex;
    gap: 8px;
}

.bab-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text);
    background: rgba(255,255,255,0.06);
    text-decoration: none;
    transition: var(--transition);
}

.bab-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Blog Nav Posts (Previous/Next) */
.blog-nav-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.bnp-item {
    display: block;
    padding: 24px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: var(--transition);
}

.bnp-item:hover {
    border-color: rgba(108, 60, 225, 0.3);
    transform: translateY(-3px);
}

.bnp-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.bnp-next .bnp-label {
    justify-content: flex-end;
}

.bnp-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.5;
}

.bnp-next {
    text-align: right;
}

/* Blog Comments Section */
.blog-comments-section {
    margin-top: 28px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.bcs-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bcs-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.bcs-header h3 i {
    color: var(--primary-light);
}

.bcs-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 50px;
    background: rgba(108, 60, 225, 0.15);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
}

/* Comment Items */
.bcs-list {
    padding: 24px 28px;
}

.comment-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-item:first-child {
    padding-top: 0;
}

.ci-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(108, 60, 225, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-light);
}

.ci-avatar.ci-admin {
    background: rgba(0, 212, 170, 0.1);
    color: var(--secondary);
}

.ci-content {
    flex: 1;
    min-width: 0;
}

.ci-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ci-header strong {
    font-size: 14px;
    color: var(--text-light);
}

.ci-date {
    font-size: 12px;
    color: var(--text);
    opacity: 0.6;
}

.ci-admin-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0, 212, 170, 0.12);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ci-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.ci-admin-reply {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 212, 170, 0.03);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary);
}

.ci-admin-reply .ci-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
}

/* Comments Empty State */
.bcs-empty {
    text-align: center;
    padding: 48px 28px;
    color: var(--text);
}

.bcs-empty i {
    font-size: 40px;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 12px;
    display: block;
}

.bcs-empty p {
    font-size: 14px;
    margin: 0;
}

/* Comment Form */
.bcs-form {
    padding: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.01);
}

.bcs-form h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.bcs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bcs-form .form-group input,
.bcs-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.bcs-form .form-group input::placeholder,
.bcs-form .form-group textarea::placeholder {
    color: var(--text);
}

.bcs-form .form-group input:focus,
.bcs-form .form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.06);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.1);
}

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

/* Blog FAQ inside article */
.blog-faq-section {
    padding: 0 32px 32px;
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    gap: 0;
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 12px 48px 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.sidebar-search input::placeholder {
    color: var(--text);
}

.sidebar-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.1);
}

.sidebar-search button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 40px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-search button:hover {
    background: var(--primary-dark);
}

/* Related Posts Grid */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-post-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.related-post-card:hover {
    border-color: rgba(108, 60, 225, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.rpc-img {
    height: 200px;
    overflow: hidden;
}

.rpc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post-card:hover .rpc-img img {
    transform: scale(1.08);
}

.rpc-body {
    padding: 20px 24px;
}

.rpc-date {
    font-size: 12px;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.rpc-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.4;
}

.rpc-body p {
    font-size: 13px;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.6;
}

.rpc-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.related-post-card:hover .rpc-link {
    color: var(--secondary);
    gap: 10px;
}

/* === Vizyon / Misyon Cards (Hakkımızda) === */
.vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.vm-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.vm-card:hover {
    border-color: rgba(108, 60, 225, 0.3);
    transform: translateY(-4px);
}

.vm-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-card h3 i {
    color: var(--primary-light);
}

.vm-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/* === Subpage Responsive === */
@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        position: static;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
        order: 2;
    }

    .detail-content {
        order: 1;
    }

    .vm-cards {
        grid-template-columns: 1fr;
    }

    .related-services-grid,
    .related-posts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-nav-posts {
        grid-template-columns: 1fr;
    }

    .blog-detail-topbar {
        padding: 16px 24px;
    }

    .blog-detail-tags {
        padding: 20px 24px;
    }

    .blog-author-box {
        padding: 24px;
    }

    .blog-faq-section {
        padding: 0 24px 24px;
    }
}

@media (max-width: 767px) {
    .kokten-page-banner {
        padding: 130px 0 60px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .blog-card-horizontal {
        grid-template-columns: 1fr;
    }

    .blog-card-img {
        height: 200px;
        min-height: auto;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-detail-img {
        height: 250px;
    }

    .blog-detail-title {
        font-size: 22px;
        padding: 14px 20px 0;
    }

    .blog-detail-meta {
        padding: 20px 20px 0;
    }

    .blog-detail-body {
        padding: 16px 20px 24px;
    }

    .detail-hero-img {
        height: 250px;
    }

    .detail-title {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }

    .detail-cta-box {
        padding: 24px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-answer p {
        padding: 0 16px 14px;
    }

    .related-services-grid,
    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .detail-share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dcb-content {
        flex-direction: column;
    }

    .dcb-actions {
        flex-direction: column;
    }

    .dcb-actions .btn-gradient,
    .dcb-actions .btn-outline-glow {
        width: 100%;
        justify-content: center;
    }

    .blog-detail-topbar {
        flex-direction: column;
        padding: 16px 20px;
    }

    .blog-detail-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .blog-detail-tags {
        padding: 16px 20px;
    }

    .blog-author-box {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .bab-avatar {
        margin: 0 auto;
    }

    .bab-social {
        justify-content: center;
    }

    .blog-nav-posts {
        grid-template-columns: 1fr;
    }

    .bnp-next {
        text-align: left;
    }

    .bnp-next .bnp-label {
        justify-content: flex-start;
    }

    .bcs-form-row {
        grid-template-columns: 1fr;
    }

    .bcs-header,
    .bcs-list,
    .bcs-form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-faq-section {
        padding: 0 20px 20px;
    }

    .blog-detail-title {
        padding: 14px 20px 0;
    }

    .blog-detail-body {
        padding: 16px 20px 24px;
    }
}

/* === Teklif Modal === */
.teklif-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.teklif-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.teklif-modal {
    background: var(--dark-card);
    border: 1px solid rgba(108, 60, 225, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(108, 60, 225, 0.15);
}

.teklif-modal-overlay.active .teklif-modal {
    transform: translateY(0) scale(1);
}

.teklif-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.teklif-modal-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Modal Header */
.teklif-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.tmh-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.3);
}

.teklif-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.teklif-modal-header p {
    font-size: 14px;
    color: var(--text);
}

/* Modal Form */
.teklif-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tmf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tmf-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.tmf-group label i {
    color: var(--primary-light);
    margin-right: 4px;
    font-size: 11px;
}

.tmf-group input,
.tmf-group select,
.tmf-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.tmf-group input::placeholder,
.tmf-group textarea::placeholder {
    color: #64748b;
}

.tmf-group input:focus,
.tmf-group select:focus,
.tmf-group textarea:focus {
    border-color: var(--primary);
    background: rgba(108, 60, 225, 0.06);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.1);
}

.tmf-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B8B8D0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.tmf-group select option {
    background: var(--dark-card);
    color: var(--text-light);
}

.tmf-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.teklif-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.3);
    margin-top: 4px;
}

.teklif-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 60, 225, 0.4);
}

.teklif-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Alert */
.tmf-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tmf-success {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--secondary);
}

.tmf-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--accent);
}

/* Modal Footer */
.teklif-modal-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.teklif-modal-footer span {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.teklif-modal-footer i {
    color: var(--secondary);
    font-size: 11px;
}

/* Modal Scrollbar */
.teklif-modal::-webkit-scrollbar {
    width: 4px;
}

.teklif-modal::-webkit-scrollbar-thumb {
    background: rgba(108, 60, 225, 0.3);
    border-radius: 2px;
}

/* Modal Responsive */
@media (max-width: 576px) {
    .teklif-modal {
        padding: 24px;
        border-radius: 16px;
    }

    .tmf-row {
        grid-template-columns: 1fr;
    }

    .teklif-modal-header h3 {
        font-size: 20px;
    }

    .teklif-modal-footer {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Hide old template elements */
.vs-header,
.vs-menu-wrapper,
.popup-search-box,
.footer-wrapper,
.sticky-footer,
.whatsapp.desktop,
.vs-hero,
.service-layout1,
.about-layout1,
.service-layout3,
.counter-layout2,
.image-gallery,
.preloader {
    display: none !important;
}
