@font-face {
font-family: "Helvetica KW";
src: url("../assets/fonts/helvetica-regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
unicode-range: U+0000-00FF, U+0100-017F, U+2013-2026, U+20BA, U+2190-2192;
}
@font-face {
font-family: "Helvetica KW";
src: url("../assets/fonts/helvetica-bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
unicode-range: U+0000-00FF, U+0100-017F, U+2013-2026, U+20BA, U+2190-2192;
}
:root {
--color-ink: #121316;
--color-black: #0A0A0B;
--color-bg: #FFFFFF;
--color-bg-soft: #F6F6F7;
--color-red: #C8102E;
--color-red-dark: #A00C24;
--color-red-soft: #FBE9EC;
--color-text: #16171A;
--color-text-muted: #6B7076;
--color-border: #E6E6E8;
--color-success: #1FA855;
--font-sans: "Helvetica KW", Helvetica, Arial, sans-serif;
--container: 1200px;
--radius-card: 12px;
--radius-btn: 8px;
--shadow-soft: 0 8px 30px rgba(15, 42, 67, 0.08);
--shadow-lift: 0 18px 50px rgba(10, 10, 11, 0.14);
--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
--header-h: 96px;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family: var(--font-sans);
font-weight: 400;
font-size: 1rem;
line-height: 1.6;
color: var(--color-text);
background: var(--color-bg-soft);
overflow-x: hidden;
}
img {
max-width: 100%;
display: block;
}
ul {
list-style: none;
}
a {
color: inherit;
text-decoration: none;
}
h1, h2, h3 {
font-weight: 700;
line-height: 1.15;
color: var(--color-ink);
}
:focus-visible {
outline: 2px solid var(--color-red);
outline-offset: 3px;
}
.container {
max-width: var(--container);
margin: 0 auto;
padding-inline: 1.5rem;
}
[id] {
scroll-margin-top: calc(var(--header-h) + 8px);
}
.eyebrow {
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--color-red);
margin-bottom: 1rem;
}
.eyebrow--light {
color: rgba(255, 255, 255, 0.85);
}
.eyebrow--red {
color: var(--color-red);
}
.section-title {
font-size: clamp(2rem, 4.2vw, 3.1rem);
letter-spacing: -0.02em;
margin-bottom: 1rem;
}
.section-lead {
font-size: 1.0625rem;
color: var(--color-text-muted);
max-width: 34rem;
}
.btn {
display: inline-block;
font-family: var(--font-sans);
font-weight: 700;
font-size: 0.9375rem;
line-height: 1;
padding: 0.9rem 1.7rem;
border-radius: var(--radius-btn);
border: 1px solid transparent;
cursor: pointer;
transition: background-color 200ms var(--ease), color 200ms var(--ease),
border-color 200ms var(--ease), transform 200ms var(--ease);
}
.btn--lg {
padding: 1.05rem 2.1rem;
font-size: 1rem;
}
.btn--red {
background: var(--color-red);
color: #fff;
}
.btn--red:hover {
background: var(--color-red-dark);
transform: translateY(-1px);
}
.btn--dark {
background: var(--color-ink);
color: #fff;
}
.btn--dark:hover {
background: var(--color-black);
transform: translateY(-1px);
}
.btn--ghost {
background: transparent;
color: var(--color-ink);
border-color: var(--color-ink);
}
.btn--ghost:hover {
color: var(--color-red);
border-color: var(--color-red);
}
.btn--ghost-light {
background: transparent;
color: #fff;
border-color: rgba(255, 255, 255, 0.65);
}
.btn--ghost-light:hover {
border-color: #fff;
background: rgba(255, 255, 255, 0.1);
}
.site-header {
position: fixed;
inset: 0 0 auto 0;
z-index: 100;
transition: background-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.header-inner {
max-width: var(--container);
margin: 0 auto;
padding-inline: 1.5rem;
height: var(--header-h);
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
}
.brand {
display: inline-flex;
align-items: center;
position: relative;
flex-shrink: 0;
}
.brand-lockup {
display: inline-flex;
align-items: center;
gap: 0.8rem;
}
.brand-mark {
height: 62px;
width: auto;
transition: opacity 250ms var(--ease);
}
.brand-text {
display: flex;
flex-direction: column;
line-height: 1.05;
}
.brand-name {
font-size: 1.35rem;
font-weight: 700;
letter-spacing: 0.01em;
color: #fff;
transition: color 250ms var(--ease);
}
.brand-role {
font-size: 0.7rem;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 0.22em;
color: rgba(255, 255, 255, 0.8);
margin-top: 0.28rem;
transition: color 250ms var(--ease);
}
.brand-word {
display: none;
height: 34px;
width: auto;
}
.brand-mark--dark { display: none; }
.brand-mark--light { display: block; }
.site-header.scrolled {
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 1px 0 var(--color-border), 0 8px 30px rgba(15, 42, 67, 0.06);
}
.site-header.scrolled .brand-mark--dark { display: block; }
.site-header.scrolled .brand-mark--light { display: none; }
.site-header.scrolled .brand-name { color: var(--color-ink); }
.site-header.scrolled .brand-role { color: var(--color-text-muted); }
.main-nav {
display: flex;
align-items: center;
gap: 2rem;
}
.main-nav ul {
display: flex;
align-items: center;
gap: 1.6rem;
}
.nav-link {
font-size: 0.9375rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.92);
position: relative;
padding: 0.4rem 0;
white-space: nowrap;
transition: color 180ms var(--ease);
}
.nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background: var(--color-red);
transform: scaleX(0);
transform-origin: left;
transition: transform 220ms var(--ease);
}
.nav-link:hover::after {
transform: scaleX(1);
}
.site-header.scrolled .nav-link {
color: var(--color-ink);
}
.nav-cta {
white-space: nowrap;
}
.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 44px;
height: 44px;
padding: 10px;
background: transparent;
border: 0;
cursor: pointer;
z-index: 110;
}
.nav-toggle-bar {
display: block;
width: 24px;
height: 2px;
background: #fff;
transition: transform 250ms var(--ease), opacity 200ms var(--ease),
background-color 250ms var(--ease);
}
.site-header.scrolled .nav-toggle-bar,
.site-header.menu-open .nav-toggle-bar {
background: var(--color-ink);
}
.site-header.menu-open .nav-toggle-bar:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .nav-toggle-bar:nth-child(2) {
opacity: 0;
}
.site-header.menu-open .nav-toggle-bar:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.hero {
position: relative;
min-height: 100vh;
min-height: 100svh;
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--color-ink);
}
.hero-media,
.band-media {
position: absolute;
inset: 0;
overflow: hidden;
}
.parallax-img {
position: absolute;
left: 0;
top: -18%;
width: 100%;
height: 136%;
object-fit: cover;
will-change: transform;
}
.hero .parallax-img {
object-position: 58% center;
}
.hero-scrim {
position: absolute;
inset: 0;
background:
linear-gradient(103deg, rgba(8, 9, 11, 0.78) 0%, rgba(8, 9, 11, 0.42) 38%, rgba(8, 9, 11, 0.05) 62%, rgba(8, 9, 11, 0) 78%),
linear-gradient(0deg, rgba(8, 9, 11, 0.80) 0%, rgba(8, 9, 11, 0.30) 32%, rgba(8, 9, 11, 0) 55%),
linear-gradient(180deg, rgba(8, 9, 11, 0.34) 0%, rgba(8, 9, 11, 0) 22%);
}
.hero-content {
position: relative;
z-index: 2;
max-width: var(--container);
width: 100%;
margin: 0 auto;
padding: calc(var(--header-h) + 3rem) 1.5rem clamp(3.5rem, 8vh, 6.5rem);
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
will-change: transform, opacity;
}
.hero-title {
color: #fff;
font-size: clamp(1.9rem, 4vw, 3.5rem);
letter-spacing: -0.02em;
line-height: 1.1;
text-wrap: balance;
max-width: 32ch;
margin-bottom: 1.5rem;
}
.hero-sub {
color: rgba(255, 255, 255, 0.82);
font-weight: 400;
font-size: clamp(1rem, 1.5vw, 1.1875rem);
line-height: 1.55;
max-width: 44ch;
margin-bottom: 2.25rem;
}
.hero-sub-short { display: none; }
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.hero-scroll-hint {
position: absolute;
z-index: 2;
left: 50%;
bottom: 2rem;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 0.6rem;
color: rgba(255, 255, 255, 0.7);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.hero-scroll-line {
width: 1px;
height: 44px;
background: rgba(255, 255, 255, 0.5);
overflow: hidden;
position: relative;
}
.hero-scroll-line::after {
content: "";
position: absolute;
left: 0;
top: -100%;
width: 100%;
height: 100%;
background: var(--color-red);
animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
0% { top: -100%; }
60% { top: 100%; }
100% { top: 100%; }
}
.stats {
padding: 6rem 0 5rem;
background: var(--color-bg);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem 2rem;
}
.stat {
border-top: 2px solid var(--color-ink);
padding-top: 1.5rem;
position: relative;
}
.stat::before {
content: "";
position: absolute;
top: -2px;
left: 0;
width: 48px;
height: 2px;
background: var(--color-red);
}
.stat-number {
font-weight: 700;
font-size: clamp(3rem, 6vw, 4.75rem);
letter-spacing: -0.03em;
line-height: 1;
color: var(--color-ink);
font-variant-numeric: tabular-nums;
}
.stat-plus {
color: var(--color-red);
}
.stat-label {
margin-top: 0.75rem;
font-size: 0.875rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--color-text-muted);
}
.section {
padding: 7rem 0;
}
.section--soft {
background: var(--color-bg-soft);
}
#hizmetler {
padding-top: 3.75rem;
padding-bottom: 4.5rem;
}
#hizmetler .section-head {
margin-bottom: 2.25rem;
}
.section-head {
margin-bottom: 3.5rem;
}
.section-foot {
margin-top: 3.5rem;
text-align: center;
}
.section-head--center {
text-align: center;
max-width: 44rem;
margin-inline: auto;
}
.section-head--center .section-lead {
margin-inline: auto;
}
.reels-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}
.reel-card {
width: 100%;
max-width: 360px;
display: flex;
flex-direction: column;
transition: transform 260ms var(--ease);
}
.reel-card:hover {
transform: translateY(-6px);
}
.reel-frame {
position: relative;
width: 100%;
aspect-ratio: 9 / 16;
overflow: hidden;
border-radius: 18px;
background: #000;
box-shadow: var(--shadow-lift);
transition: box-shadow 260ms var(--ease);
}
.reel-card:hover .reel-frame {
box-shadow: 0 26px 60px rgba(10, 10, 11, 0.3);
}
.reel-frame iframe {
position: absolute;
top: -86px;
left: 50%;
transform: translateX(-50%) scale(1.46);
transform-origin: top center;
width: 100%;
height: calc(100% + 620px);
border: 0;
background: #000;
}
.reel-poster {
position: absolute;
inset: 0;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(130% 100% at 50% 32%, #2b2d33 0%, #141518 55%, #0a0a0b 100%);
transition: opacity 0.55s var(--ease);
}
.reel-frame.loaded .reel-poster {
opacity: 0;
pointer-events: none;
}
.reel-play {
width: 66px;
height: 66px;
border-radius: 50%;
background: var(--color-red);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 34px rgba(200, 16, 46, 0.5);
}
.reel-play svg {
width: 26px;
height: 26px;
margin-left: 3px;
}
.reel-caption {
margin-top: 1.1rem;
text-align: center;
font-size: 1.0625rem;
font-weight: 700;
letter-spacing: -0.01em;
color: var(--color-ink);
}
.reels-foot {
margin-top: 1.75rem;
text-align: center;
}
#videolar {
padding-bottom: 3.5rem;
}
#hakkimizda {
padding-top: 3.5rem;
padding-bottom: 3rem;
}
#sss {
padding-top: 3.5rem;
}
.reels-ig {
display: inline-flex;
align-items: center;
gap: 0.6rem;
font-weight: 700;
font-size: 0.9375rem;
color: var(--color-ink);
padding: 0.7rem 1.3rem;
border: 1px solid var(--color-border);
border-radius: 999px;
background: var(--color-surface);
transition: color 180ms var(--ease), border-color 180ms var(--ease),
transform 180ms var(--ease);
}
.reels-ig svg {
width: 20px;
height: 20px;
}
.reels-ig:hover {
color: var(--color-red);
border-color: var(--color-red);
transform: translateY(-2px);
}
.listing-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}
.listing-card {
background: var(--color-bg);
border: 1px solid var(--color-border);
border-radius: var(--radius-card);
overflow: hidden;
transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.listing-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lift);
}
.listing-media {
position: relative;
aspect-ratio: 16 / 10;
overflow: hidden;
}
.listing-media img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 600ms var(--ease);
}
.listing-card:hover .listing-media img {
transform: scale(1.05);
}
.badge {
position: absolute;
top: 1rem;
left: 1rem;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
padding: 0.4rem 0.8rem;
border-radius: 6px;
color: #fff;
}
.badge--sale {
background: var(--color-red);
}
.badge--rent {
background: var(--color-ink);
}
.listing-body {
padding: 1.5rem;
}
.listing-title {
font-size: 1.35rem;
letter-spacing: -0.01em;
}
.listing-location {
color: var(--color-text-muted);
font-size: 0.9375rem;
margin-top: 0.25rem;
}
.listing-price {
color: var(--color-red);
font-weight: 700;
font-size: 1.5rem;
letter-spacing: -0.01em;
margin-top: 1rem;
}
.price-period {
font-size: 0.9375rem;
font-weight: 400;
color: var(--color-text-muted);
}
.listing-meta {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--color-border);
}
.listing-meta li {
font-size: 0.8125rem;
font-weight: 700;
color: var(--color-ink);
background: var(--color-bg-soft);
padding: 0.35rem 0.7rem;
border-radius: 6px;
}
.band {
position: relative;
overflow: hidden;
background: var(--color-black);
padding: 9rem 0;
}
.band-scrim {
position: absolute;
inset: 0;
background: rgba(10, 10, 11, 0.62);
}
.band-content {
position: relative;
z-index: 2;
text-align: center;
}
.band-quote {
color: #fff;
font-weight: 700;
font-size: clamp(2.1rem, 5vw, 4rem);
letter-spacing: -0.02em;
line-height: 1.12;
max-width: 18ch;
margin: 0 auto;
}
.band-sub {
color: rgba(255, 255, 255, 0.75);
font-size: clamp(1rem, 1.5vw, 1.1875rem);
margin: 1.5rem auto 0;
max-width: 36rem;
}
.band-actions {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-top: 2.75rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
gap: 1.5rem;
}
.service-card {
background: var(--color-bg);
border-radius: var(--radius-card);
padding: 2.25rem 1.75rem;
box-shadow: var(--shadow-soft);
transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lift);
}
.service-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 12px;
background: var(--color-red-soft);
color: var(--color-red);
margin-bottom: 1.5rem;
}
.service-icon svg {
width: 28px;
height: 28px;
}
.service-title {
font-size: 1.2rem;
margin-bottom: 0.6rem;
}
.service-desc {
color: var(--color-text-muted);
font-size: 0.9375rem;
}
.about-head {
margin-bottom: 3.5rem;
}
.about-grid {
display: grid;
grid-template-columns: minmax(0, 380px) 1fr;
gap: 4rem;
align-items: start;
}
.about-media {
position: sticky;
top: calc(var(--header-h) + 2rem);
margin: 0;
max-width: 380px;
}
.about-media img {
border-radius: 18px;
aspect-ratio: 3 / 4;
width: 100%;
height: auto;
object-fit: cover;
object-position: center 90%;
box-shadow: var(--shadow-lift);
display: block;
}
.about-badge {
position: absolute;
left: 1rem;
bottom: 1rem;
background: var(--color-red);
color: #fff;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
padding: 0.55rem 1rem;
border-radius: 999px;
box-shadow: 0 8px 24px rgba(200, 16, 46, 0.32);
}
.about-body {
max-width: 60ch;
}
.about-p {
color: var(--color-text-muted);
font-size: 1.0625rem;
line-height: 1.75;
margin-bottom: 1.4rem;
}
.about-p strong {
color: var(--color-ink);
font-weight: 700;
}
.about-quote {
position: relative;
margin: 2.25rem 0;
padding-top: 2.5rem;
font-size: clamp(1.2rem, 2vw, 1.5rem);
font-weight: 700;
line-height: 1.45;
letter-spacing: -0.01em;
color: var(--color-ink);
text-wrap: balance;
}
.about-quote::before {
content: "\201C";
position: absolute;
top: -0.35rem;
left: -0.15rem;
font-size: 4rem;
line-height: 1;
color: var(--color-red);
}
.about-chips {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin: 2rem 0 2.25rem;
}
.about-chips li {
font-size: 0.8125rem;
font-weight: 700;
color: var(--color-ink);
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: 999px;
padding: 0.5rem 1.05rem;
}
.about-toggle {
display: none;
align-items: center;
gap: 0.4rem;
background: transparent;
border: 0;
color: var(--color-red);
font-family: var(--font-sans);
font-weight: 700;
font-size: 0.95rem;
cursor: pointer;
padding: 0.7rem 0;
}
.about-toggle svg {
width: 16px;
height: 16px;
transition: transform 0.3s var(--ease);
}
.about-toggle[aria-expanded="true"] svg {
transform: rotate(180deg);
}
.faq-layout {
display: grid;
grid-template-columns: 5fr 7fr;
gap: 4.5rem;
align-items: start;
}
.faq-intro {
position: sticky;
top: calc(var(--header-h) + 2.5rem);
}
.faq-intro .section-lead {
margin-bottom: 2rem;
}
.faq-cta {
margin-top: 0.5rem;
}
.faq-list {
display: flex;
flex-direction: column;
}
.faq-item {
border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
border-top: 1px solid var(--color-border);
}
.faq-item summary {
list-style: none;
cursor: pointer;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1.5rem;
padding: 1.4rem 0;
font-size: 1.0625rem;
font-weight: 700;
color: var(--color-ink);
transition: color 180ms var(--ease);
}
.faq-item summary::-webkit-details-marker {
display: none;
}
.faq-item summary:hover {
color: var(--color-red);
}
.faq-item summary::after {
content: "";
flex-shrink: 0;
width: 20px;
height: 20px;
margin-top: 3px;
background:
linear-gradient(var(--color-red), var(--color-red)) center/100% 2px no-repeat,
linear-gradient(var(--color-red), var(--color-red)) center/2px 100% no-repeat;
transition: transform 260ms var(--ease);
}
.faq-item[open] summary {
color: var(--color-red);
}
.faq-item[open] summary::after {
transform: rotate(135deg);
}
.faq-answer {
overflow: hidden;
padding-bottom: 1.4rem;
}
.faq-answer p {
color: var(--color-text-muted);
font-size: 1rem;
line-height: 1.65;
max-width: 62ch;
}
.faq-item[open] .faq-answer {
animation: faqReveal 320ms var(--ease);
}
@keyframes faqReveal {
from { opacity: 0; transform: translateY(-6px); }
to   { opacity: 1; transform: translateY(0); }
}
.site-footer {
background: var(--color-ink);
color: rgba(255, 255, 255, 0.75);
padding: 3.5rem 0 0;
}
.footer-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1fr;
gap: 2.5rem;
padding-bottom: 2.5rem;
}
.footer-logo {
height: 68px;
width: auto;
margin-bottom: 1rem;
}
.footer-slogan {
font-size: 0.9375rem;
max-width: 22rem;
}
.footer-title {
color: #fff;
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.16em;
margin-bottom: 0.9rem;
}
.footer-col ul {
display: flex;
flex-direction: column;
gap: 0.7rem;
}
.footer-col a {
font-size: 0.9375rem;
transition: color 180ms var(--ease);
}
.footer-col a:hover {
color: #fff;
}
.footer-social {
display: flex;
gap: 0.5rem;
margin-top: 0.5rem;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.12);
padding: 1.5rem 0;
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.5);
}
.page-hero {
position: relative;
min-height: 56vh;
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--color-ink);
}
.page-hero-media {
position: absolute;
inset: 0;
}
.page-hero-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: 60% center;
}
.page-hero-scrim {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(8, 9, 11, 0.5) 0%, rgba(8, 9, 11, 0.22) 42%, rgba(8, 9, 11, 0.82) 100%);
}
.page-hero-content {
position: relative;
z-index: 2;
width: 100%;
padding: calc(var(--header-h) + 4rem) 1.5rem 4rem;
}
.page-hero-title {
color: #fff;
font-size: clamp(2.2rem, 5vw, 3.8rem);
letter-spacing: -0.02em;
line-height: 1.08;
text-wrap: balance;
}
.page-hero-sub {
color: rgba(255, 255, 255, 0.85);
font-size: clamp(1rem, 1.5vw, 1.1875rem);
line-height: 1.55;
max-width: 48ch;
margin-top: 1.25rem;
}
.contact-top {
display: grid;
grid-template-columns: 7fr 5fr;
gap: 3.5rem;
align-items: stretch;
margin-bottom: 3rem;
}
.contact-form-wrap {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: 18px;
padding: 2.5rem;
box-shadow: var(--shadow-soft);
max-width: 880px;
margin-inline: auto;
}
.contact-form-title {
font-size: 1.5rem;
letter-spacing: -0.01em;
margin-bottom: 1.75rem;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.field {
display: flex;
flex-direction: column;
}
.field label {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--color-text-muted);
margin-bottom: 0.6rem;
}
.field input,
.field textarea,
.field select {
font-family: var(--font-sans);
font-size: 1rem;
color: var(--color-ink);
background: transparent;
border: 0;
border-bottom: 1px solid var(--color-border);
padding: 0.6rem 0;
transition: border-color 180ms var(--ease);
resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
outline: none;
border-bottom-color: var(--color-red);
}
.field input::placeholder,
.field textarea::placeholder {
color: var(--color-text-muted);
opacity: 0.7;
}
.field select {
appearance: none;
-webkit-appearance: none;
cursor: pointer;
padding-right: 1.5rem;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7076' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 0 center;
}
.field select:required:invalid,
.field select option[value=""] {
color: var(--color-text-muted);
}
.field select option {
color: var(--color-ink);
}
.hp-field {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
.consent {
display: flex;
align-items: flex-start;
gap: 0.7rem;
font-size: 0.875rem;
line-height: 1.55;
color: var(--color-text-muted);
cursor: pointer;
}
.consent input[type="checkbox"] {
flex-shrink: 0;
width: 18px;
height: 18px;
margin-top: 0.15rem;
accent-color: var(--color-red);
cursor: pointer;
}
.consent a {
color: var(--color-ink);
font-weight: 700;
text-decoration: underline;
text-underline-offset: 2px;
}
.consent a:hover {
color: var(--color-red);
}
.contact-submit {
align-self: flex-start;
margin-top: 0.5rem;
}
.contact-submit:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.form-note {
font-size: 0.9rem;
color: var(--color-success);
min-height: 1.2em;
margin: 0;
}
.form-note.error {
color: var(--color-red);
}
.contact-info-title {
font-size: 1.5rem;
letter-spacing: -0.01em;
padding-bottom: 1.25rem;
margin-bottom: 1.75rem;
border-bottom: 1px solid var(--color-border);
}
.info-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.info-list li {
display: flex;
gap: 1rem;
align-items: flex-start;
}
.info-icon {
flex-shrink: 0;
width: 44px;
height: 44px;
border-radius: 12px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--color-red-soft);
color: var(--color-red);
}
.info-icon svg {
width: 20px;
height: 20px;
}
.info-label {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--color-ink);
margin-bottom: 0.25rem;
}
.info-value {
color: var(--color-text-muted);
font-size: 0.9375rem;
line-height: 1.55;
}
.info-value a {
transition: color 160ms var(--ease);
}
.info-value a:hover {
color: var(--color-red);
}
.contact-map {
border-radius: 16px;
overflow: hidden;
border: 1px solid var(--color-border);
aspect-ratio: 16 / 10;
}
.contact-map--lg {
aspect-ratio: auto;
height: 100%;
min-height: 460px;
box-shadow: var(--shadow-soft);
}
.contact-map iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
filter: grayscale(0.25);
}
.legal-page {
padding-top: var(--header-h);
}
.legal {
max-width: 74ch;
}
.legal-title {
font-size: clamp(1.9rem, 4vw, 2.9rem);
letter-spacing: -0.02em;
line-height: 1.12;
text-wrap: balance;
margin-bottom: 0.75rem;
}
.legal-updated {
color: var(--color-text-muted);
font-size: 0.875rem;
margin-bottom: 2.5rem;
}
.legal h2 {
font-size: 1.25rem;
letter-spacing: -0.01em;
margin: 2.25rem 0 0.75rem;
}
.legal p {
color: var(--color-text-muted);
line-height: 1.75;
margin-bottom: 1rem;
}
.legal strong {
color: var(--color-ink);
}
.legal a {
color: var(--color-ink);
font-weight: 700;
text-decoration: underline;
text-underline-offset: 2px;
}
.legal a:hover {
color: var(--color-red);
}
.legal-list {
margin: 0 0 1.25rem;
padding-left: 1.1rem;
list-style: disc;
}
.legal-list li {
color: var(--color-text-muted);
line-height: 1.7;
margin-bottom: 0.45rem;
}
.legal-cta {
margin-top: 2.5rem;
}
.legal-cta .btn {
text-decoration: none;
}
.error-page {
padding-top: calc(var(--header-h) + 4rem);
min-height: 70vh;
display: flex;
align-items: center;
}
.error-inner {
max-width: 60ch;
}
.error-code {
font-size: clamp(3.5rem, 12vw, 7rem);
font-weight: 700;
line-height: 1;
letter-spacing: -0.04em;
color: var(--color-red);
margin-bottom: 0.5rem;
}
.error-title {
font-size: clamp(1.7rem, 4vw, 2.6rem);
letter-spacing: -0.02em;
line-height: 1.15;
text-wrap: balance;
margin-bottom: 0.9rem;
}
.error-text {
color: var(--color-text-muted);
font-size: 1.0625rem;
line-height: 1.65;
margin-bottom: 2rem;
}
.error-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2.5rem;
}
.error-links {
display: flex;
flex-wrap: wrap;
gap: 0.5rem 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid var(--color-border);
}
.error-links a {
font-size: 0.9375rem;
font-weight: 700;
color: var(--color-text-muted);
transition: color 160ms var(--ease);
}
.error-links a:hover {
color: var(--color-red);
}
.footer-bottom--solo {
border-top: 0;
padding-top: 2.5rem;
}
.wa-fab {
position: fixed;
right: 1.5rem;
bottom: 1.5rem;
z-index: 90;
width: 58px;
height: 58px;
border-radius: 50%;
background: var(--color-success);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 30px rgba(31, 168, 85, 0.4);
transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.wa-fab:hover {
transform: translateY(-3px) scale(1.04);
box-shadow: 0 14px 36px rgba(31, 168, 85, 0.5);
}
.wa-fab svg {
width: 30px;
height: 30px;
}
body.js .reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 700ms var(--ease), transform 700ms var(--ease);
transition-delay: var(--reveal-delay, 0ms);
}
body.js .reveal.in {
opacity: 1;
transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
body.js .reveal {
opacity: 1;
transform: none;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.parallax-img {
top: 0;
height: 100%;
transform: none !important;
will-change: auto;
}
.hero-content {
transform: none !important;
opacity: 1 !important;
will-change: auto;
}
}
@media (max-width: 1024px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
}
.about-grid {
gap: 3rem;
}
}
@media (max-width: 900px) {
.about-grid {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.about-media {
position: static;
max-width: 320px;
margin: 0 auto;
}
.about-media img {
aspect-ratio: 4 / 5;
}
.about-body {
max-width: none;
}
.about-head {
margin-bottom: 2.5rem;
}
.faq-layout {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.faq-intro {
position: static;
}
.contact-top {
grid-template-columns: 1fr;
gap: 2rem;
}
.contact-map--lg {
min-height: 320px;
}
}
@media (max-width: 1080px) {
.nav-toggle {
display: flex;
}
.main-nav {
position: fixed;
inset: 0;
background: var(--color-bg);
flex-direction: column;
justify-content: center;
gap: 2.5rem;
transform: translateX(100%);
transition: transform 320ms var(--ease);
z-index: 105;
visibility: hidden;
}
.main-nav.open {
transform: translateX(0);
visibility: visible;
}
.main-nav ul {
flex-direction: column;
align-items: center;
gap: 1.5rem;
}
.nav-link,
.site-header.scrolled .nav-link {
color: var(--color-ink);
font-size: 1.375rem;
font-weight: 700;
letter-spacing: -0.01em;
}
}
.deck-hint {
display: none;
}
@media (max-width: 767px) {
.services-grid.services-deck {
display: grid;
grid-template-areas: "stack";
place-items: center;
min-height: 340px;
margin-top: 0.5rem;
perspective: 1000px;
touch-action: pan-y;
}
.services-grid.services-deck .service-card {
grid-area: stack;
width: min(19rem, 82vw);
height: 210px;
margin: 0;
padding: 1.5rem 1.5rem;
overflow: hidden;
cursor: grab;
opacity: 1;
box-shadow: var(--shadow-lift);
border: 1px solid var(--color-border);
filter: grayscale(1);
transition: transform 0.7s var(--ease), filter 0.6s var(--ease),
box-shadow 0.6s var(--ease), opacity 0.5s var(--ease);
z-index: 1;
will-change: transform;
}
.services-grid.services-deck .service-card.pos-0,
.services-grid.services-deck .service-card.pos-1,
.services-grid.services-deck .service-card.pos-2,
.services-grid.services-deck .service-card.pos-3 {
transform: skewY(-8deg) translate(var(--dx, 0), var(--dy, 0)) scale(var(--sc, 1));
}
.services-grid.services-deck .service-card:active {
cursor: grabbing;
}
.services-grid.services-deck .service-desc {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.services-grid.services-deck .service-card.pos-0 {
--dx: 1.6rem; --dy: 1.2rem; --sc: 1;
z-index: 40;
filter: none;
}
.services-grid.services-deck .service-card.pos-1 {
--dx: 0.4rem; --dy: 0.3rem; --sc: 0.94;
z-index: 30;
}
.services-grid.services-deck .service-card.pos-2 {
--dx: -0.9rem; --dy: -0.7rem; --sc: 0.88;
z-index: 20;
}
.services-grid.services-deck .service-card.pos-3 {
--dx: -2.1rem; --dy: -1.6rem; --sc: 0.82;
z-index: 10;
opacity: 0.9;
}
.services-grid.services-deck .service-card.pos-0 {
box-shadow: 0 22px 55px rgba(10, 10, 11, 0.28);
}
.deck-hint {
display: block;
text-align: center;
margin-top: 1.5rem;
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--color-text-muted);
}
@media (prefers-reduced-motion: reduce) {
.services-grid.services-deck .service-card {
transition: none;
}
}
}
@media (max-width: 767px) {
:root {
--header-h: 74px;
}
.brand-word { display: none !important; }
.brand-lockup { gap: 0.6rem; }
.brand-mark { height: 48px; }
.brand-name { font-size: 1.05rem; }
.brand-role { font-size: 0.6rem; letter-spacing: 0.16em; margin-top: 0.2rem; }
.hero-sub-full { display: none; }
.hero-sub-short { display: inline; }
.section {
padding: 4.5rem 0;
}
.about-more {
overflow: hidden;
max-height: 0;
transition: max-height 0.5s var(--ease);
}
.about-more.open {
max-height: 2600px;
}
.about-toggle {
display: inline-flex;
}
.about-cta {
margin-top: 1.5rem;
}
#videolar {
padding-bottom: 1.5rem;
}
.reels-foot {
margin-top: 1rem;
}
#hakkimizda {
padding-top: 1.75rem;
padding-bottom: 1.75rem;
}
#sss {
padding-top: 2rem;
}
.about-head {
margin-bottom: 1.75rem;
}
.reels-grid {
flex-wrap: nowrap;
justify-content: flex-start;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-padding-inline: 1.5rem;
gap: 1rem;
margin-inline: -1.5rem;
padding: 0.25rem 1.5rem 1rem;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.reels-grid::-webkit-scrollbar { display: none; }
.reel-card {
flex: 0 0 83%;
max-width: 83%;
scroll-snap-align: center;
}
.contact-form-wrap { padding: 1.5rem; }
.field-row { grid-template-columns: 1fr; gap: 1.5rem; }
.page-hero { min-height: 46vh; }
.page-hero-content { padding: calc(var(--header-h) + 2.5rem) 1.5rem 2.5rem; }
.contact-submit { width: 100%; text-align: center; }
#hizmetler {
padding-top: 2.25rem;
padding-bottom: 2.75rem;
}
#hizmetler .section-head {
margin-bottom: 1.25rem;
}
.services-grid.services-deck {
min-height: 300px;
margin-top: 0;
}
.deck-hint {
margin-top: 0.75rem;
}
.stats {
padding: 4rem 0 3.5rem;
}
.stats-grid {
grid-template-columns: 1fr;
gap: 2.25rem;
}
.band {
padding: 6rem 0;
}
.parallax-img {
top: 0;
height: 100%;
}
.hero .parallax-img {
object-position: 68% center;
}
.hero-actions .btn,
.band-actions .btn {
width: 100%;
text-align: center;
}
.hero-scroll-hint {
display: none;
}
.site-footer {
padding-top: 2.25rem;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
gap: 1.5rem 1.25rem;
padding-bottom: 1.5rem;
}
.footer-brand {
grid-column: 1 / -1;
}
div.footer-col {
grid-column: 1 / -1;
}
.footer-logo {
height: 54px;
margin-bottom: 0.6rem;
}
.footer-slogan {
font-size: 0.875rem;
}
.footer-title {
margin-bottom: 0.6rem;
}
.footer-col ul {
gap: 0.45rem;
}
.footer-col a,
.footer-contact li {
font-size: 0.875rem;
}
.footer-bottom {
padding: 1rem 0;
}
.wa-fab {
right: 1rem;
bottom: 1rem;
width: 52px;
height: 52px;
}
}