/* ================================================================
   FOTOĞRAF STÜDYOSU (ENVATO PREMIUM THEME STYLE)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- Envato Photo Tokens --- */
.envato-photo-theme {
	--ep-bg: var(--kececidigital-bg-light, #F5F7FA);              /* Very light cool gray */
	--ep-surface: var(--kececidigital-bg-card, #FFFFFF);         /* Pure white cards */
	--ep-primary: var(--kececidigital-primary, #FF5722);         /* Vivid Studio Orange */
	--ep-primary-hover: var(--kececidigital-primary-hover, #E64A19);
	--ep-dark: var(--kececidigital-heading, #1A1A1A);            /* Matte Black / Deep Charcoal */
	--ep-text: var(--kececidigital-text, #555555);            /* Body gray */
	--ep-border: var(--kececidigital-border, #EAEAEA);
	--ep-shadow: 0 20px 50px rgba(0,0,0,0.06); /* Premium soft shadow */
	--ep-radius: 6px;              /* Slightly sharper rounded corners */
	
	--ep-font-heading: 'Montserrat', sans-serif;
	--ep-font-body: 'Open Sans', sans-serif;
	
	background-color: var(--ep-bg);
	color: var(--ep-text);
	font-family: var(--ep-font-body);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
}

.envato-photo-theme * { box-sizing: border-box; }
.envato-photo-theme img { display: block; max-width: 100%; }

.ep-container {
	margin: 0 auto;
	padding: 0 20px;
	width: min(1200px, 100%);
	position: relative;
	z-index: 5;
}

/* ================================================================
   TYPOGRAPHY & UTILITIES
   ================================================================ */
.ep-section-title { margin-bottom: 50px; }
.ep-section-title.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.ep-subtitle {
	display: inline-block;
	font-family: var(--ep-font-heading);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ep-primary);
	margin-bottom: 15px;
}

.envato-photo-theme h2 {
	font-family: var(--ep-font-heading);
	font-size: clamp(32px, 4vw, 32px);
	font-weight: 800;
	color: var(--ep-dark);
	line-height: 1.2;
	margin: 0 0 20px;
	letter-spacing: -1px;
}
.envato-photo-theme h2 span { color: var(--ep-primary); }

.ep-divider {
	width: 60px; height: 4px;
	background-color: var(--ep-primary);
	margin: 20px 0;
	border-radius: 2px;
}
.ep-divider.center { margin: 20px auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.ep-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--ep-font-heading); font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 1px;
	padding: 18px 35px; border-radius: var(--ep-radius);
	text-decoration: none; transition: all 0.3s ease;
}

.ep-btn--primary {
	background: var(--ep-primary); color: #fff !important;
	box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}
.ep-btn--primary:hover {
	background: var(--ep-primary-hover); transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(255, 87, 34, 0.4);
}

.ep-btn--outline {
	background: transparent; border: 2px solid #fff; color: #fff !important;
}
.ep-btn--outline:hover {
	background: #fff; color: var(--ep-dark) !important;
}

/* ================================================================
   HERO SLIDER (KEN BURNS)
   ================================================================ */
.ep-hero {
	position: relative; width: 100%; height: 95vh; min-height: 650px;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.ep-hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.ep-kenburns {
	width: 100%; height: 100%; object-fit: cover;
	animation: kenburns 20s ease-out infinite alternate;
}
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

.ep-hero__overlay {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(26, 26, 26, 0.75); /* Dark overlay */
}

.ep-hero__content {
	position: relative; z-index: 2; max-width: 800px; text-align: center; margin: 0 auto;
	animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

.ep-kicker { display: inline-block; background: var(--ep-primary); color: #fff; font-family: var(--ep-font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 5px 15px; border-radius: 3px; margin-bottom: 25px; }
.ep-title { font-family: var(--ep-font-heading); font-size: clamp(40px, 6vw, 65px); font-weight: 800; color: #fff; line-height: 1.1; margin: 0 0 25px; letter-spacing: -2px; }
.ep-title span { color: var(--ep-primary); }
.ep-desc { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.ep-hero__actions { display: flex; gap: 20px; justify-content: center; }
.ep-hero-card {
	display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
	margin-top: 28px; padding: 16px 24px; border-radius: var(--ep-radius);
	background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.18);
}
.ep-hero-card span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.78; }
.ep-hero-card strong { font-family: var(--ep-font-heading); font-size: 16px; font-weight: 800; }

/* ================================================================
   OVERLAPPING STATS
   ================================================================ */
.ep-stats-overlap { position: relative; margin-top: -60px; z-index: 10; margin-bottom: 80px; }
.ep-stats__grid {
	display: flex; justify-content: space-between; background: var(--ep-surface);
	padding: 40px; border-radius: var(--ep-radius); box-shadow: var(--ep-shadow);
}
.ep-stat-card { flex: 1; text-align: center; border-right: 1px solid var(--ep-border); }
.ep-stat-card:last-child { border-right: none; }
.ep-stat-card strong { display: block; font-family: var(--ep-font-heading); font-size: 45px; font-weight: 800; color: var(--ep-primary); line-height: 1; margin-bottom: 10px; }
.ep-stat-card span { font-size: 14px; font-weight: 600; color: var(--ep-dark); text-transform: uppercase; }

/* ================================================================
   ABOUT US
   ================================================================ */
.ep-about { padding: 60px 0 100px; }
.ep-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.ep-about__visual { position: relative; }
.epa-img-box { position: relative; border-radius: var(--ep-radius); overflow: hidden; box-shadow: var(--ep-shadow); }
.epa-img-box img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.epa-floating-badge {
	position: absolute; bottom: 40px; left: -30px;
	background: var(--ep-surface); padding: 25px; border-radius: var(--ep-radius); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	display: flex; align-items: center; gap: 20px; border-left: 5px solid var(--ep-primary);
}
.epa-badge-icon { width: 50px; height: 50px; background: rgba(255,87,34,0.1); color: var(--ep-primary); display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 50%; }
.epa-badge-text span { display: block; font-size: 12px; color: var(--ep-text); text-transform: uppercase; font-weight: 600; }
.epa-badge-text strong { display: block; font-family: var(--ep-font-heading); font-size: 18px; color: var(--ep-dark); }

.ep-prose { font-size: 16px; margin-bottom: 40px; }

.epa-features { display: flex; flex-direction: column; gap: 25px; }
.epa-feat-item { display: flex; gap: 20px; align-items: flex-start; }
.epa-feat-icon { width: 30px; height: 30px; background: var(--ep-primary); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; margin-top: 3px; font-size: 12px; }
.epa-feat-text h4 { font-family: var(--ep-font-heading); font-size: 18px; color: var(--ep-dark); font-weight: 700; margin: 0 0 5px; }
.epa-feat-text p { margin: 0; font-size: 14px; }

/* ================================================================
   SERVICES (BOXED CARDS)
   ================================================================ */
.ep-services { padding: 100px 0; background: var(--ep-surface); }
.ep-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.eps-card {
	background: var(--ep-bg); padding: 50px 40px; border-radius: var(--ep-radius);
	text-align: center; transition: all 0.4s ease; border: 1px solid transparent;
}
.eps-card:hover { transform: translateY(-10px); background: #fff; box-shadow: var(--ep-shadow); border-color: var(--ep-border); }

.eps-icon {
	width: 70px; height: 70px; margin: 0 auto 25px;
	background: #fff; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	display: flex; align-items: center; justify-content: center;
	font-size: 28px; color: var(--ep-primary); transition: all 0.4s ease;
}
.eps-card:hover .eps-icon { background: var(--ep-primary); color: #fff; }

.eps-card h3 { font-family: var(--ep-font-heading); font-size: 20px; color: var(--ep-dark); font-weight: 700; margin: 0 0 15px; }
.eps-card p { margin: 0 0 25px; font-size: 15px; }

.eps-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ep-font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--ep-primary); text-decoration: none; }
.eps-link:hover { color: var(--ep-dark); }

/* ================================================================
   WHY US (DARK SECTION)
   ================================================================ */
.ep-why { padding: 100px 0; background: var(--ep-dark); color: #fff; }
.ep-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.epw-list { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }
.epw-item { display: flex; gap: 20px; align-items: flex-start; }
.epw-item i { font-size: 24px; color: var(--ep-primary); margin-top: 5px; }
.epw-item h4 { font-family: var(--ep-font-heading); font-size: 18px; color: #fff; font-weight: 700; margin: 0 0 5px; }
.epw-item p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.7); }

.ep-why__visual { position: relative; }
.epw-image-wrap { position: relative; border-radius: var(--ep-radius); overflow: hidden; }
.epw-image-wrap img { width: 100%; aspect-ratio: 1/1; object-fit: cover; opacity: 0.8; }
.epw-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 90px; height: 90px; background: var(--ep-primary); border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-size: 24px; cursor: pointer;
	box-shadow: 0 0 0 15px rgba(255,87,34,0.3); transition: all 0.3s;
}
.epw-play:hover { background: #fff; color: var(--ep-primary); box-shadow: 0 0 0 20px rgba(255,255,255,0.2); }

/* ================================================================
   REVIEWS
   ================================================================ */
.ep-reviews { padding: 100px 0; background: var(--ep-bg); }
.ep-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.epr-card {
	background: var(--ep-surface); padding: 40px; border-radius: var(--ep-radius);
	box-shadow: var(--ep-shadow); position: relative;
}
.epr-quote-mark { position: absolute; top: 40px; right: 40px; color: var(--ep-primary); font-size: 40px; opacity: 0.1; }
.epr-text { font-size: 16px; font-style: italic; color: var(--ep-text); margin-bottom: 30px; line-height: 1.8; position: relative; z-index: 2; }
.epr-author { display: flex; align-items: center; gap: 15px; }
.epr-avatar { width: 50px; height: 50px; background: var(--ep-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ep-primary); font-size: 20px; }
.epr-info strong { display: block; font-family: var(--ep-font-heading); font-size: 16px; color: var(--ep-dark); font-weight: 700; }
.epr-info span { font-size: 12px; color: var(--ep-primary); font-weight: 600; text-transform: uppercase; }

/* ================================================================
   BLOG (CARD LAYOUT)
   ================================================================ */
.ep-blog { padding: 100px 0; background: #fff; border-top: 1px solid var(--ep-border); }
.ep-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.epb-card { background: var(--ep-surface); border-radius: var(--ep-radius); overflow: hidden; border: 1px solid var(--ep-border); transition: all 0.3s; }
.epb-card:hover { transform: translateY(-5px); box-shadow: var(--ep-shadow); border-color: transparent; }
.epb-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.epb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.epb-card:hover .epb-img img { transform: scale(1.05); }
.epb-tag { position: absolute; top: 20px; left: 20px; background: var(--ep-primary); color: #fff; font-family: var(--ep-font-heading); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 6px 14px; border-radius: 3px; }
.epb-content { padding: 30px; }
.epb-content h3 { font-family: var(--ep-font-heading); font-size: 18px; font-weight: 700; margin: 0 0 15px; line-height: 1.4; }
.epb-content h3 a { color: var(--ep-dark); text-decoration: none; transition: color 0.3s; }
.epb-content h3 a:hover { color: var(--ep-primary); }
.epb-content p { font-size: 15px; margin-bottom: 20px; }
.epb-readmore { font-family: var(--ep-font-heading); font-size: 12px; font-weight: 700; color: var(--ep-primary); text-decoration: none; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.epb-readmore:hover { color: var(--ep-dark); }
.ep-blog__actions { display: flex; justify-content: center; margin-top: 45px; }

/* ================================================================
   CTA
   ================================================================ */
.ep-cta { padding: 90px 0; background: var(--ep-dark); color: #fff; text-align: center; }
.ep-cta h2 { color: #fff; max-width: 760px; margin: 0 auto 32px; }
.ep-cta h2 span { color: var(--ep-primary); }

/* ================================================================
   FAQ & CONTACT
   ================================================================ */
.ep-contact-faq { padding: 100px 0; background: var(--ep-bg); }
.ep-contact-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.ep-accordion { display: flex; flex-direction: column; gap: 15px; }
.ep-acc-item { background: #fff; border-radius: var(--ep-radius); border: 1px solid var(--ep-border); overflow: hidden; }
.ep-acc-head { padding: 20px 25px; font-family: var(--ep-font-heading); font-size: 16px; font-weight: 700; color: var(--ep-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ep-acc-head::-webkit-details-marker { display: none; }
.ep-acc-icon { color: var(--ep-primary); transition: transform 0.3s; }
.ep-acc-item[open] .ep-acc-icon { transform: rotate(180deg); }
.ep-acc-item[open] .ep-acc-head { color: var(--ep-primary); }
.ep-acc-body { padding: 0 25px 25px; font-size: 15px; }

.ep-contact-box { background: var(--ep-primary); color: #fff; padding: 50px; border-radius: var(--ep-radius); box-shadow: 0 20px 40px rgba(255,87,34,0.2); }
.ep-kicker-light { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; font-family: var(--ep-font-heading); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; margin-bottom: 20px; }
.ep-contact-box h3 { font-family: var(--ep-font-heading); font-size: 32px; font-weight: 800; color: #fff; margin: 0 0 15px; letter-spacing: -1px; }
.ep-contact-box p { font-size: 16px; margin-bottom: 40px; color: rgba(255,255,255,0.9); }
.epc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 30px; }
.epc-list li { display: flex; gap: 20px; align-items: center; }
.epcl-icon { width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ep-primary); }
.epcl-info span { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; opacity: 0.9; }
.epcl-info strong { display: block; font-size: 18px; font-family: var(--ep-font-heading); font-weight: 700; }
.ep-map-box { position: relative; margin-top: 24px; border-radius: var(--ep-radius); overflow: hidden; background: var(--ep-surface); box-shadow: var(--ep-shadow); }
.ep-map-box iframe, .ep-map-box img { width: 100%; height: 260px; border: 0; object-fit: cover; }
.ep-map-box span {
	position: absolute; inset: auto 20px 20px; padding: 10px 14px; border-radius: var(--ep-radius);
	background: rgba(26,26,26,0.82); color: #fff; font-size: 13px; font-weight: 700;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
	.ep-stats__grid { flex-wrap: wrap; gap: 20px; justify-content: center; }
	.ep-stat-card { border-right: none; min-width: 45%; border-bottom: 1px solid var(--ep-border); padding-bottom: 20px; }
	
	.ep-about__grid, .ep-why__grid, .ep-contact-faq__grid { grid-template-columns: 1fr; gap: 60px; }
	.epa-floating-badge { left: 20px; }
	
	.ep-services__grid, .ep-reviews__grid, .ep-blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.ep-title { font-size: 40px; }
	.ep-hero__actions { flex-direction: column; }
	.ep-hero-card { width: 100%; }
	.ep-stat-card { min-width: 100%; border-bottom: none; }
	.ep-services__grid, .ep-reviews__grid, .ep-blog__grid { grid-template-columns: 1fr; }
	.ep-contact-box { padding: 40px 30px; }
}
