* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #f3f4f6;
color: #111827;
line-height: 1.6;
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
display: block;
}
.container {
width: 100%;
max-width: 1180px;
margin: 0 auto;
padding: 0 16px;
}
.site-header {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(14px);
background: rgba(255, 255, 255, 0.94);
border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 0;
}
.logo a {
display: inline-flex;
align-items: center;
gap: 8px;
}
.logo-img {
height: 80px;
width: auto;
display: block;
}
.main-nav > ul {
list-style: none;
display: flex;
align-items: center;
gap: 18px;
}
.main-nav a {
font-size: 0.95rem;
color: #111827;
padding: 6px 10px;
border-radius: 999px;
transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.main-nav a:hover {
background: rgba(229, 231, 235, 0.9);
transform: translateY(-1px);
}
.main-nav a.active {
background: linear-gradient(135deg, #f97316, #fb923c);
color: #0b1120;
}
.has-submenu {
position: relative;
}
.submenu {
position: absolute;
top: 120%;
left: 50%;
min-width: 230px;
display: flex;
flex-direction: column;
background: #ffffff;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.95);
box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
padding: 10px 8px;
opacity: 0;
visibility: hidden;
transform: translate(-50%, 8px);
transition: all 0.25s ease;
}
.has-submenu:hover .submenu {
opacity: 1;
visibility: visible;
transform: translate(-50%, 0);
}
.submenu li {
margin: 0;
}
.submenu a {
display: block;
padding: 6px 10px;
border-radius: 10px;
font-size: 0.9rem;
white-space: nowrap;
}
.submenu a:hover {
background: rgba(243, 244, 246, 0.9);
}
.nav-toggle {
display: none;
width: 40px;
height: 40px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.6);
background: transparent;
display: none;
align-items: center;
justify-content: center;
gap: 5px;
flex-direction: column;
cursor: pointer;
}
.nav-toggle span {
width: 18px;
height: 2px;
background: #111827;
border-radius: 999px;
transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) {
transform: translateY(4px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
transform: translateY(-4px) rotate(-45deg);
}
.hero {
 padding: 90px 0 60px;
 background-color: #f9fafb;
 background-image: url("../img/hero-tekirdag-fayans-ustasi.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
}
.hero-inner {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
align-items: center;
gap: 40px;
position: relative;
z-index: 1;
}
.hero::before {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.55);
z-index: 0;
}
.hero-content h1 {
font-size: 2.2rem;
line-height: 1.25;
margin-bottom: 14px;
color: #111827;
}
.hero-content p {
font-size: 1rem;
color: #4b5563;
max-width: 640px;
margin-bottom: 22px;
}
.hero-cta {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 22px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
border-radius: 999px;
font-size: 0.95rem;
font-weight: 500;
border: none;
cursor: pointer;
transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.primary-btn {
background: linear-gradient(135deg, #f97316, #fb923c);
color: #0b1120;
box-shadow: 0 18px 45px rgba(248, 113, 22, 0.4);
}
.primary-btn:hover {
transform: translateY(-2px);
box-shadow: 0 24px 60px rgba(248, 113, 22, 0.6);
}
.secondary-btn {
background: transparent;
border: 1px solid rgba(148, 163, 184, 0.8);
color: #e5e7eb;
}
.secondary-btn:hover {
background: rgba(15, 23, 42, 0.9);
}
.full-width {
width: 100%;
}
.hero-badges {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
gap: 12px;
}
.badge-item {
padding: 10px 12px;
border-radius: 14px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: #ffffff;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.badge-item strong {
display: block;
font-size: 0.9rem;
color: #f97316;
margin-bottom: 4px;
}
.badge-item span {
font-size: 0.8rem;
color: #6b7280;
}
.hero-image {
position: relative;
}
.hero-card {
padding: 20px 18px;
border-radius: 22px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: #ffffff;
box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
transform: translateY(0);
animation: floatCard 8s ease-in-out infinite;
}
.hero-card p {
font-size: 0.92rem;
color: #4b5563;
margin-bottom: 12px;
}
.hero-card ul {
list-style: none;
margin-bottom: 10px;
}
.hero-card li {
font-size: 0.86rem;
color: #4b5563;
margin-bottom: 5px;
position: relative;
padding-left: 16px;
}
.hero-card li::before {
content: "";
position: absolute;
left: 0;
top: 9px;
width: 6px;
height: 6px;
border-radius: 999px;
background: linear-gradient(135deg, #f97316, #fb923c);
}
.card-link {
display: inline-flex;
font-size: 0.88rem;
color: #38bdf8;
margin-top: 4px;
}
.card-link:hover {
color: #0ea5e9;
}
@keyframes floatCard {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
.section {
padding: 70px 0;
}
.section h2 {
font-size: 1.8rem;
margin-bottom: 12px;
color: #111827;
}
.section-intro {
max-width: 700px;
color: #4b5563;
margin-bottom: 26px;
font-size: 0.98rem;
}
.grid {
display: grid;
gap: 22px;
}
.service-grid {
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
padding: 20px 18px;
border-radius: 20px;
background: #ffffff;
border: 1px solid rgba(209, 213, 219, 0.9);
box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
transform: translateY(0);
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card h3 {
font-size: 1.1rem;
color: #111827;
margin-bottom: 10px;
}
.service-card p {
font-size: 0.9rem;
color: #4b5563;
}
.service-card:hover {
transform: translateY(-6px);
box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
border-color: #f97316;
}
.locations {
background: #f9fafb;
}
.location-grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
align-items: flex-start;
}
.location-column h3 {
font-size: 1.05rem;
color: #111827;
margin-bottom: 10px;
}
.location-column ul {
list-style: none;
}
.location-column li {
font-size: 0.9rem;
color: #4b5563;
margin-bottom: 6px;
}
.location-column a {
color: #38bdf8;
}
.location-column a:hover {
color: #0ea5e9;
}
.gallery {
background: #ffffff;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 16px;
}
.gallery-item {
border-radius: 18px;
overflow: hidden;
background: #ffffff;
border: 1px solid rgba(209, 213, 219, 0.9);
box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
display: flex;
flex-direction: column;
}
.gallery-item img {
width: 100%;
height: 190px;
object-fit: cover;
display: block;
}
.gallery-item figcaption {
padding: 8px 12px 10px;
font-size: 0.85rem;
color: #4b5563;
}
.about-gallery {
margin-top: 24px;
}
.videos {
background: #f9fafb;
}
.videos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
}
.video-card {
border-radius: 22px;
overflow: hidden;
background: #ffffff;
border: 1px solid rgba(209, 213, 219, 0.9);
box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
transform: translateY(0);
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.video-card:hover {
transform: translateY(-6px);
box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
border-color: rgba(249, 115, 22, 0.65);
}
.showcase-video {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
background: #0b1120;
}
@media (max-width: 640px) {
.showcase-video {
height: 240px;
}
}
.highlight {
background: #ffffff;
}
.highlight-inner {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
gap: 26px;
align-items: stretch;
}
.highlight-text p {
color: #4b5563;
margin-bottom: 10px;
font-size: 0.95rem;
}
.highlight-box {
padding: 20px 18px;
border-radius: 22px;
background: #fff7ed;
border: 1px solid rgba(248, 113, 22, 0.4);
box-shadow: 0 26px 70px rgba(248, 113, 22, 0.18);
}
.highlight-box h3 {
font-size: 1.1rem;
margin-bottom: 8px;
color: #fed7aa;
}
.highlight-box p {
font-size: 0.92rem;
color: #7c2d12;
margin-bottom: 5px;
}
.faq {
background: #f9fafb;
}
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 18px;
}
.faq-item {
padding: 18px 16px;
border-radius: 18px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: #ffffff;
}
.faq-item h3 {
font-size: 1rem;
margin-bottom: 6px;
color: #111827;
}
.faq-item p {
font-size: 0.9rem;
color: #4b5563;
}
.contact {
background: #ffffff;
}
.contact-inner {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
gap: 30px;
align-items: flex-start;
}
.contact-info p {
color: #4b5563;
margin-bottom: 10px;
font-size: 0.95rem;
}
.contact-info ul {
list-style: none;
}
.contact-info li {
font-size: 0.9rem;
color: #111827;
margin-bottom: 6px;
}
.contact-form-wrapper {
padding: 20px 18px;
border-radius: 22px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: #f9fafb;
box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}
.contact-form-wrapper h3 {
font-size: 1.1rem;
margin-bottom: 10px;
color: #111827;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 10px;
}
.form-row input,
.form-row textarea {
width: 100%;
padding: 10px 12px;
border-radius: 12px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: #ffffff;
color: #111827;
font-size: 0.9rem;
outline: none;
transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-row input:focus,
.form-row textarea:focus {
border-color: #f97316;
box-shadow: 0 0 0 1px rgba(248, 113, 22, 0.4);
background: #ffffff;
}
.form-note {
font-size: 0.8rem;
color: #6b7280;
margin-top: 6px;
}
.site-footer {
border-top: 1px solid rgba(209, 213, 219, 0.9);
background: #111827;
}
.footer-inner {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 22px;
padding: 30px 0 18px;
}
.footer-logo-link {
display: inline-flex;
align-items: center;
margin-bottom: 8px;
}
.footer-logo {
height: 72px;
width: auto;
display: block;
}
.footer-col h3 {
font-size: 1rem;
margin-bottom: 8px;
color: #e5e7eb;
}
.footer-col p {
font-size: 0.86rem;
color: #9ca3af;
}
.footer-col ul {
list-style: none;
}
.footer-col li {
margin-bottom: 6px;
}
.footer-col a {
font-size: 0.86rem;
color: #38bdf8;
}
.footer-col a:hover {
color: #0ea5e9;
}
.footer-bottom {
border-top: 1px solid rgba(55, 65, 81, 0.9);
}
.footer-bottom-inner {
display: flex;
flex-direction: column;
gap: 3px;
align-items: center;
justify-content: center;
padding: 10px 0 16px;
}
.footer-bottom p {
font-size: 0.8rem;
color: #9ca3af;
}
.footer-bottom a {
color: #9ca3af;
text-decoration: none;
}
.footer-bottom a:hover {
color: #e5e7eb;
text-decoration: underline;
}
.page-hero {
padding: 80px 0 50px;
background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 55%), radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 52%), #f9fafb;
}
.page-hero-title {
font-size: 2rem;
margin-bottom: 10px;
color: #111827;
}
.page-hero-subtitle {
font-size: 0.98rem;
color: #4b5563;
max-width: 680px;
}
.page-badge-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 18px;
}
.page-badge {
padding: 6px 10px;
border-radius: 999px;
border: 1px solid rgba(209, 213, 219, 0.9);
font-size: 0.8rem;
color: #374151;
background: #ffffff;
}
.page-section {
padding: 50px 0;
}
.page-grid {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
gap: 26px;
align-items: flex-start;
}
.page-grid h2 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.page-grid p {
font-size: 0.9rem;
color: #4b5563;
margin-bottom: 8px;
}
.page-aside {
padding: 18px 16px;
border-radius: 20px;
border: 1px solid rgba(209, 213, 219, 0.9);
background: #f9fafb;
}
.page-aside h3 {
font-size: 1.05rem;
margin-bottom: 8px;
}
.page-aside ul {
list-style: none;
}
.page-aside li {
font-size: 0.88rem;
color: #4b5563;
margin-bottom: 5px;
}
.page-list {
list-style: none;
margin-top: 6px;
}
.page-list li {
font-size: 0.9rem;
color: #4b5563;
margin-bottom: 5px;
padding-left: 16px;
position: relative;
}
.page-list li::before {
content: "";
position: absolute;
left: 0;
top: 9px;
width: 6px;
height: 6px;
border-radius: 999px;
background: linear-gradient(135deg, #f97316, #fb923c);
}
.reveal {
opacity: 0;
transform: translateY(18px);
transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
body,
html {
overflow-x: hidden;
}
.nav-overlay {
display: none;
pointer-events: none;
}
.mobile-menu {
display: none;
}
.fab-stack {
position: fixed;
right: 18px;
bottom: 18px;
display: grid;
gap: 10px;
z-index: 140;
}
.fab-btn {
width: 56px;
height: 56px;
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
transform: translateY(0);
transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
will-change: transform;
}
.fab-btn:hover {
transform: translateY(-2px);
box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}
.fab-btn:active {
transform: translateY(0);
filter: brightness(0.98);
}
.fab-btn svg {
width: 28px;
height: 28px;
display: block;
}
.fab-btn.fab-call {
background: linear-gradient(135deg, #f97316, #fb923c);
}
.fab-btn.fab-call svg {
fill: #0b1120;
}
.fab-btn.fab-wa {
background: #25D366;
}
.fab-btn.fab-wa svg {
fill: #ffffff;
}
@keyframes fabPulse {
0% { transform: translateY(0) scale(1); }
40% { transform: translateY(-2px) scale(1.03); }
100% { transform: translateY(0) scale(1); }
}
.fab-btn.fab-call {
animation: fabPulse 2.8s ease-in-out infinite;
}
.fab-btn.fab-wa {
animation: fabPulse 3.1s ease-in-out infinite;
animation-delay: 0.18s;
}
@media (max-width: 640px) {
.fab-stack {
right: 14px;
bottom: 14px;
}
.fab-btn {
width: 54px;
height: 54px;
}
}
@media (max-width: 960px) {
.hero-inner {
grid-template-columns: minmax(0, 1fr);
}
.highlight-inner {
grid-template-columns: minmax(0, 1fr);
}
.contact-inner {
grid-template-columns: minmax(0, 1fr);
}
.page-grid {
grid-template-columns: minmax(0, 1fr);
}
}
@media (max-width: 820px) {
.main-nav {
display: none;
}
body.menu-open {
overflow: hidden;
}
body.menu-open .site-header {
z-index: 100;
}
.nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 98;
opacity: 0;
visibility: hidden;
transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-overlay.visible {
display: block;
pointer-events: auto;
opacity: 1;
visibility: visible;
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #ffffff;
z-index: 99;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
padding: 72px 24px 32px 24px;
box-sizing: border-box;
direction: ltr;
text-align: left;
}
.mobile-menu.is-open {
display: block;
}
.mobile-menu ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}
.mobile-menu > ul > li {
display: block;
margin: 0;
padding: 0;
border-bottom: 1px solid #e5e7eb;
}
.mobile-menu > ul > li:last-child {
border-bottom: none;
}
.mobile-menu > ul > li > a {
display: block;
padding: 16px 0;
font-size: 1rem;
font-weight: 500;
color: #111827;
text-decoration: none;
}
.mobile-menu > ul > li > a:hover,
.mobile-menu > ul > li > a.active {
color: #0b1120;
background: rgba(249, 115, 22, 0.15);
}
.mobile-menu .has-submenu > a {
padding-right: 36px;
position: relative;
}
.mobile-menu .has-submenu > a::after {
content: "";
position: absolute;
right: 0;
top: 50%;
margin-top: -4px;
width: 8px;
height: 8px;
border-right: 2px solid #111827;
border-bottom: 2px solid #111827;
transform: rotate(45deg);
transition: transform 0.2s ease;
}
.mobile-menu .has-submenu.open > a::after {
transform: rotate(-135deg);
margin-top: -2px;
}
.mobile-menu .submenu {
display: none;
position: static;
left: auto;
right: auto;
top: auto;
transform: none;
box-shadow: none;
list-style: none;
margin: 0;
padding: 6px 0 10px 0;
border: none;
background: #f9fafb;
border-radius: 12px;
margin-top: 8px;
margin-bottom: 8px;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
opacity: 1;
visibility: visible;
transition: none;
}
.mobile-menu .has-submenu:hover .submenu {
transform: none;
opacity: 1;
visibility: visible;
}
.mobile-menu .has-submenu.open .submenu {
display: block;
}
.mobile-menu .submenu li {
display: block;
margin: 0;
padding: 0;
border: none;
list-style: none;
width: 100%;
min-width: 0;
box-sizing: border-box;
}
.mobile-menu .submenu a {
display: block;
padding: 12px 16px 12px 32px;
font-size: 0.95rem;
font-weight: 400;
color: #4b5563;
text-decoration: none;
line-height: 1.35;
white-space: normal;
overflow-wrap: break-word;
word-wrap: break-word;
width: 100%;
box-sizing: border-box;
}
.mobile-menu .submenu a:hover {
color: #111827;
background: transparent;
}
.nav-toggle {
display: inline-flex;
z-index: 100;
position: relative;
}
}
@media (max-width: 640px) {
.hero {
padding-top: 80px;
}
.hero-content h1 {
font-size: 1.7rem;
}
.section {
padding: 55px 0;
}
.page-hero {
padding: 70px 0 40px;
}
}

