/* ================================================================
   GÜVENLİK ŞİRKETİ (ELITE CORPORATE SECURITY THEME)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;700;800;900&display=swap');

/* --- Elite Tokens --- */
.elite-sec-theme {
	--es-bg: #F5F7F9;              /* Platinum Off-White */
	--es-surface: #FFFFFF;         /* Pure White */
	--es-dark: #0A192F;            /* Midnight Navy / Oxford Blue */
	--es-dark-light: #112240;      /* Lighter Navy */
	--es-primary: #D97706;         /* Premium Gold / Amber */
	--es-primary-hover: #F59E0B;
	--es-text: #64748B;            /* Soft Slate */
	--es-text-dark: #1E293B;       /* Deep Slate */
	--es-border: #E2E8F0;
	
	--es-font-body: 'Inter', sans-serif;
	--es-font-heading: 'Montserrat', sans-serif;
	
	background-color: var(--es-bg);
	color: var(--es-text);
	font-family: var(--es-font-body);
	font-size: 16px;
	line-height: 1.8;
	overflow-x: hidden;
}

.elite-sec-theme * { box-sizing: border-box; }
.elite-sec-theme img { display: block; max-width: 100%; }

.es-container {
	margin: 0 auto;
	padding: 0 40px;
	width: min(1300px, 100%);
	position: relative;
	z-index: 5;
}

.center-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; }

/* ================================================================
   TYPOGRAPHY & WATERMARKS
   ================================================================ */
.es-kicker {
	color: var(--es-primary);
	display: inline-block;
	font-family: var(--es-font-heading);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	padding-left: 50px;
}
.es-kicker::before {
	content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 35px; height: 2px; background: var(--es-primary);
}

.elite-sec-theme h2 {
	color: var(--es-dark);
	font-family: var(--es-font-heading);
	font-size: clamp(35px, 4.5vw, 50px);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 25px;
	letter-spacing: -1px;
}
.elite-sec-theme h2 em { color: var(--es-primary); font-style: normal; }

.es-divider {
	width: 80px; height: 4px;
	background: var(--es-dark);
	margin: 15px auto 30px;
}
.es-divider.left { margin-left: 0; }

.es-watermark {
	position: absolute;
	top: 50px;
	left: -50px;
	font-family: var(--es-font-heading);
	font-size: 250px;
	font-weight: 900;
	color: var(--es-dark);
	opacity: 0.03;
	line-height: 1;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	letter-spacing: -5px;
}
.es-watermark-right { left: auto; right: -50px; text-align: right; }

/* ================================================================
   BUTTONS
   ================================================================ */
.es-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 15px;
	font-family: var(--es-font-heading); font-size: 14px; font-weight: 700;
	padding: 20px 45px; text-decoration: none; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	text-transform: uppercase; letter-spacing: 2px; border-radius: 0;
	position: relative; overflow: hidden; z-index: 1;
}
.es-btn--primary { background: var(--es-primary); color: #fff !important; }
.es-btn--primary::before {
	content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: var(--es-dark); z-index: -1; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.es-btn--primary:hover::before { width: 100%; }
.es-btn--primary:hover { color: #fff !important; }

.es-btn--outline { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,0.3); }
.es-btn--outline:hover { background: #fff; color: var(--es-dark) !important; border-color: #fff; }
.es-btn--outline i { transition: transform 0.3s; }
.es-btn--outline:hover i { transform: translateX(5px); }

/* ================================================================
   ELITE ENVATO SLIDER
   ================================================================ */
.envato-universal-slider {
	position: relative; width: 100%; height: 90vh; min-height: 700px; max-height: 900px; overflow: hidden; background: var(--es-dark);
}
.eus-wrapper { position: relative; width: 100%; height: 100%; }
.eus-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 1.2s ease, visibility 1.2s ease; display: flex; align-items: center; justify-content: flex-start; }
.eus-slide.active { opacity: 1; visibility: visible; }

.eus-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.eus-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 10s ease; filter: grayscale(30%); }
.eus-slide.active .eus-bg img { transform: scale(1); }
.eus-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(10,25,47,0.9) 0%, rgba(10,25,47,0.4) 100%); }

.eus-content { position: relative; z-index: 2; width: 100%; }
.eus-content-inner { max-width: 850px; border-left: 4px solid var(--es-primary); padding-left: 50px; }

.eus-slide .eus-kicker, .eus-slide .eus-title, .eus-slide .eus-desc, .eus-slide .eus-actions { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.eus-slide.active .eus-kicker { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.eus-slide.active .eus-title { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.eus-slide.active .eus-desc { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.eus-slide.active .eus-actions { opacity: 1; transform: translateY(0); transition-delay: 1s; }

.eus-kicker { display: inline-block; color: var(--es-primary); font-family: var(--es-font-heading); font-size: 14px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 25px; }
.eus-title { color: #fff; font-family: var(--es-font-heading); font-size: clamp(40px, 6vw, 70px); font-weight: 900; line-height: 1.1; margin: 0 0 30px; letter-spacing: -2px; text-transform: uppercase; }
.eus-title strong { color: var(--es-primary); display: block; }
.eus-desc { color: rgba(255,255,255,0.7); font-size: 18px; margin: 0 0 50px; line-height: 1.7; font-weight: 300; }
.eus-actions { display: flex; gap: 20px; }

.eus-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.4s; }
.eus-arrow:hover { background: #fff; color: var(--es-dark); transform: translateY(-50%) scale(1.1); border-color: #fff; }
.eus-prev { left: 40px; }
.eus-next { right: 40px; }
.eus-pagination { display: none; }

/* ================================================================
   QUICK STATS (FLOATING)
   ================================================================ */ 
.es-stats-card { display: flex; background: var(--es-surface); box-shadow: 0 30px 60px rgba(10,25,47,0.08); }
.es-stat-item { flex: 1; padding: 50px 30px; text-align: center; border-right: 1px solid var(--es-border); position: relative; overflow: hidden; }
.es-stat-item:last-child { border-right: none; }
.es-stat-item::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--es-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.es-stat-item:hover::before { transform: scaleX(1); }
.es-stat-item strong { display: block; font-family: var(--es-font-heading); font-size: 50px; color: var(--es-dark); font-weight: 900; line-height: 1; margin-bottom: 10px; letter-spacing: -2px; }
.es-stat-item span { font-size: 14px; color: var(--es-text); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* ================================================================
   ABOUT US
   ================================================================ */
.es-about { padding: 100px 0 150px; position: relative; }
.es-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.esa-visual { position: relative; }
.esa-image-main { position: relative; z-index: 2; box-shadow: 0 40px 80px rgba(10,25,47,0.15); }
.esa-image-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.esa-image-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent 50%, rgba(10,25,47,0.5) 100%); }

.esa-badge { position: absolute; bottom: -40px; right: -40px; background: var(--es-dark); color: #fff; padding: 40px; display: flex; align-items: center; gap: 20px; z-index: 3; border-bottom: 4px solid var(--es-primary); }
.esa-badge i { font-size: 40px; color: var(--es-primary); }
.esa-badge strong { display: block; font-family: var(--es-font-heading); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.esa-badge span { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 2px; }

.esa-prose { font-size: 17px; margin-bottom: 40px; }

.esa-points { display: flex; flex-direction: column; gap: 30px; }
.esap-item { display: flex; gap: 25px; align-items: flex-start; }
.esap-icon { width: 60px; height: 60px; background: var(--es-surface); box-shadow: 0 10px 30px rgba(10,25,47,0.05); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--es-primary); flex-shrink: 0; border-radius: 50%; }
.esap-item strong { display: block; font-family: var(--es-font-heading); font-size: 18px; color: var(--es-dark-light); font-weight: 800; margin-bottom: 8px; }
.esap-item p { margin: 0; font-size: 15px; }

/* ================================================================
   SERVICES
   ================================================================ */
.es-services { padding: 150px 0; background: var(--es-dark); color: #fff; position: relative; }
.es-services .es-kicker { color: var(--es-primary); }
.es-services h2 { color: #fff; }
.es-services .es-divider { background: #fff; }

.es-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; }

.ess-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 60px 40px; position: relative; transition: all 0.5s ease; overflow: hidden; text-decoration: none; display: block; }
.ess-card:hover { background: var(--es-primary); border-color: var(--es-primary); transform: translateY(-10px); }

.ess-num { position: absolute; top: 20px; right: 30px; font-family: var(--es-font-heading); font-size: 60px; font-weight: 900; color: rgba(255,255,255,0.05); transition: color 0.5s; line-height: 1; }
.ess-card:hover .ess-num { color: rgba(255,255,255,0.3); }

.ess-icon { font-size: 40px; color: var(--es-primary); margin-bottom: 30px; transition: color 0.5s; }
.ess-card:hover .ess-icon { color: #fff; }

.ess-card h3 { font-family: var(--es-font-heading); font-size: 22px; font-weight: 800; margin: 0 0 20px; color: #fff; }
.ess-card p { margin: 0; font-size: 15px; color: rgba(255,255,255,0.6); transition: color 0.5s; }
.ess-card:hover p { color: rgba(255,255,255,0.9); }

.ess-accent { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: #fff; transition: width 0.5s; }
.ess-card:hover .ess-accent { width: 100%; }

/* ================================================================
   WHY CHOOSE US (SPLIT BACKGROUND)
   ================================================================ */
.es-why { padding: 150px 0; position: relative; z-index: 1; }
.es-why-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--es-dark); z-index: -1; }

.es-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.esw-copy { padding-right: 40px; }
.esw-desc { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 50px; font-weight: 300; }

.esw-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.esw-item { display: flex; flex-direction: column; gap: 20px; }
.esw-icon { width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--es-primary); border-radius: 50%; }
.esw-item h3 { font-family: var(--es-font-heading); font-size: 18px; color: #fff; font-weight: 800; margin: 0 0 10px; }
.esw-item p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.5); }

.esw-visual { position: relative; margin-top: 100px; }
.esw-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 40px 80px rgba(10,25,47,0.2); }
.esw-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; background: rgba(255,255,255,0.9); border: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--es-primary); cursor: pointer; transition: all 0.4s; box-shadow: 0 0 0 15px rgba(255,255,255,0.2); }
.esw-play:hover { background: var(--es-primary); color: #fff; box-shadow: 0 0 0 25px rgba(217,119,6,0.3); }

.es-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease; }
.es-modal.is-open { opacity: 1; visibility: visible; }
.es-modal__backdrop { position: absolute; inset: 0; background: rgba(10,25,47,0.86); }
.es-modal__dialog { position: relative; z-index: 1; width: min(1000px, 100%); aspect-ratio: 16/9; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.es-modal__dialog iframe { width: 100%; height: 100%; display: block; border: 0; }
.es-modal__close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.25s ease, color 0.25s ease; }
.es-modal__close:hover { background: #fff; color: var(--es-dark); }

/* ================================================================
   REVIEWS
   ================================================================ */
.es-reviews { padding: 150px 0; position: relative; }

.es-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; }

.esr-card { background: var(--es-surface); padding: 60px 40px; box-shadow: 0 20px 50px rgba(10,25,47,0.05); position: relative; }
.esr-quote-icon { position: absolute; top: -25px; left: 40px; width: 50px; height: 50px; background: var(--es-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 10px 20px rgba(217,119,6,0.3); }
.esr-card p { font-size: 16px; font-style: italic; margin: 0 0 40px; line-height: 1.8; color: var(--es-text-dark); font-weight: 500; }
.esr-author strong { display: block; font-family: var(--es-font-heading); font-size: 18px; color: var(--es-dark); font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }
.esr-author span { font-size: 13px; color: var(--es-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ================================================================
   BLOG
   ================================================================ */
.es-blog { padding: 100px 0 150px; }

.es-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }

.esb-card { background: var(--es-surface); display: flex; flex-direction: column; transition: all 0.4s; border: 1px solid transparent; box-shadow: 0 10px 30px rgba(10,25,47,0.03); }
.esb-card:hover { border-color: var(--es-primary); box-shadow: 0 30px 60px rgba(10,25,47,0.08); transform: translateY(-10px); }

.esb-content { padding: 50px 40px 30px; flex-grow: 1; }
.esb-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--es-primary); letter-spacing: 2px; margin-bottom: 20px; position: relative; padding-left: 20px; }
.esb-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 2px; background: var(--es-primary); }
.esb-card h3 { font-family: var(--es-font-heading); font-size: 22px; color: var(--es-dark); font-weight: 800; margin: 0 0 20px; line-height: 1.4; }
.esb-card h3 a { color: inherit; text-decoration: none; transition: color 0.3s; }
.esb-card h3 a:hover { color: var(--es-primary); }
.esb-card p { margin: 0; font-size: 15px; }

.esb-footer { padding: 30px 40px; border-top: 1px solid var(--es-border); }
.esb-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--es-font-heading); font-size: 14px; font-weight: 800; color: var(--es-dark); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.esb-card:hover .esb-link { color: var(--es-primary); }
.esb-card:hover .esb-link i { transform: translateX(10px); }
.esb-link i { transition: transform 0.4s; }

/* ================================================================
   FAQ & CONTACT COMPACT
   ================================================================ */
.es-faq-contact { padding: 150px 0; background: var(--es-surface); border-top: 1px solid var(--es-border); }
.es-faq-contact__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: flex-start; }

.esf-accordion { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.esf-card { border-bottom: 1px solid var(--es-border); }
.esf-head { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; cursor: pointer; list-style: none; font-family: var(--es-font-heading); font-size: 18px; font-weight: 700; color: var(--es-dark); transition: color 0.3s; }
.esf-head::-webkit-details-marker { display: none; }
.esf-card[open] .esf-head { color: var(--es-primary); border-bottom: none; }

.esf-head i { font-size: 16px; color: var(--es-primary); transition: transform 0.4s; }
.esf-card[open] .esf-head i { transform: rotate(45deg); }

.esf-body { padding: 0 0 30px 0; }
.esf-body p { margin: 0; font-size: 16px; }

.esc-panel-wrap { position: relative; }
.esc-panel-wrap::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 2px solid var(--es-primary); z-index: 1; }
.esc-panel { background: var(--es-dark); padding: 60px 50px; position: relative; z-index: 2; color: #fff; box-shadow: 0 30px 60px rgba(10,25,47,0.1); }

.esc-panel h3 { font-family: var(--es-font-heading); font-size: 28px; font-weight: 800; margin: 0 0 20px; }
.esc-panel p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 16px; }

.esc-items { display: flex; flex-direction: column; gap: 35px; margin-bottom: 50px; }
.esci-row { display: flex; gap: 20px; align-items: center; }
.esci-row i { font-size: 30px; color: var(--es-primary); }
.esci-row span { display: block; font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.esci-row strong { display: block; font-family: var(--es-font-heading); font-size: 18px; font-weight: 700; }

.esc-panel .es-btn { width: 100%; border-color: transparent; }

.esc-map { grid-column: 1 / -1; min-height: 420px; overflow: hidden; background: var(--es-dark); box-shadow: 0 30px 60px rgba(10,25,47,0.08); }
.esc-map iframe,
.esc-map img { width: 100%; height: 420px; display: block; border: 0; object-fit: cover; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
	.eus-title { font-size: 50px; }
	.esa-badge { bottom: -20px; right: -20px; padding: 25px; }
}

@media (max-width: 1024px) {
	.eus-content-inner { padding-left: 0; border-left: none; text-align: center; margin: 0 auto; }
	.eus-slide .eus-kicker, .eus-slide .eus-title, .eus-slide .eus-desc, .eus-slide .eus-actions { transform: translateY(30px); margin-left: auto; margin-right: auto; }
	.eus-actions { justify-content: center; }
	.eus-kicker::before { display: none; }
	.eus-kicker { padding-left: 0; }
	.eus-arrow { display: none; }
	
	.es-stats-card { flex-direction: column; }
	.es-stat-item { border-right: none; border-bottom: 1px solid var(--es-border); padding: 30px; }
	.es-stat-item::before { width: 3px; height: 100%; bottom: 0; transform: scaleY(0); transform-origin: top; transition: transform 0.5s ease; }
	.es-stat-item:hover::before { transform: scaleY(1); }
	
	.es-about__grid, .es-why__grid, .es-faq-contact__grid { grid-template-columns: 1fr; gap: 60px; }
	.esa-visual { margin-bottom: 40px; }
	
	.es-services__grid, .es-reviews__grid, .es-blog__grid { grid-template-columns: repeat(2, 1fr); }
	
	.es-why-bg { height: 100%; }
	.esw-visual { margin-top: 0; }
	
	.flex-between { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
	.eus-actions { flex-direction: column; }
	.es-services__grid, .es-reviews__grid, .es-blog__grid, .esw-list { grid-template-columns: 1fr; }
	.es-watermark { font-size: 150px; top: 0; }
}
