/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Font */
@font-face {
    font-family: 'Callheart';
    src: url('../Callheart.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
    padding-top: 74px; /* offset for fixed navbar */
}

html, body { overflow-x:hidden; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Color Variables */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --accent-color: #CD853F;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    /* Hero tint palette */
    --hero-tint-dark: rgba(139,60,10,0.82); /* daha koyu kızılımsı kahve */
    --hero-tint-mid: rgba(205,110,40,0.68); /* yoğun turuncu ton */
    --hero-tint-light: rgba(230,170,100,0.45); /* sıcak açılım */
}

/* Navigation (moved out of :root) */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav-container { max-width:1200px; margin:0 auto; padding:0 24px; height:74px; display:flex; align-items:center; justify-content:space-between; }
.nav-logo a { font-family:'Callheart','Dancing Script',cursive; font-size:2rem; text-decoration:none; color:var(--primary-color); letter-spacing:2px; line-height:1; display:inline-block; }
.nav-menu { display:flex; align-items:center; gap:2.2rem; }
.nav-link { text-decoration:none; color:var(--text-dark); font-weight:500; font-size:.95rem; letter-spacing:.5px; position:relative; padding:4px 0; transition:color .25s ease; }
.nav-link::after { content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:linear-gradient(90deg,var(--primary-color),var(--accent-color)); transition:width .3s ease; border-radius:2px; }
.nav-link:hover,.nav-link:focus { color:var(--primary-color); }
.nav-link:hover::after,.nav-link:focus::after { width:100%; }
.nav-toggle { width:38px; height:32px; display:none; flex-direction:column; justify-content:center; gap:6px; cursor:pointer; }
.nav-toggle .bar { width:100%; height:3px; background:var(--primary-color); border-radius:3px; transition:transform .4s ease, opacity .3s ease; }
@media (max-width:768px){ .nav-menu { gap:0; } body { padding-top:70px; } }

/* Hero base section (no parallax fixed) */
.hero { position:relative; padding:170px 0 130px; background:url('../assets/images/hero-bg.jpg') center/cover no-repeat; color:var(--white); text-align:center; isolation:isolate; }
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.6)) !important;
}
.hero-content { position:relative; z-index:2; max-width:1100px; margin:0 auto; padding:0 24px; }
@media (max-width:992px){ .hero { padding:150px 0 110px; } }
@media (max-width:600px){ .hero { padding:130px 0 90px; } }

.hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 992px) {
    .hero { padding: 150px 0 110px; }
}
@media (max-width: 600px) {
    .hero { padding: 130px 0 90px; }
}

.hero-title {
    font-family: 'Callheart', 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: normal;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.hero-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    color: var(--wood-brown);
}

/* Workshop Section */
.workshop {
    padding: 80px 0;
    background: var(--white);
}

.workshop-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.workshop-image-container {
    position: relative;
}

.workshop-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.workshop-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.workshop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vision-mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    height: 100%;
}

.vision-card,
.mission-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
}

.vm-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.vm-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.vm-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

.workshop-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 2px solid var(--light-bg);
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.value-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Simple Services Carousel */
.services-carousel { position: relative; margin:0 auto; padding:0 55px; overflow:hidden; }
.services-track { display:flex; gap:1.5rem; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding-bottom:1rem; }
.services-track::-webkit-scrollbar { display:none; }
.services-track .service-card { flex:0 0 clamp(250px,30%,320px); scroll-snap-align:start; min-height:340px; }
.carousel-btn { position:absolute; top:50%; transform:translateY(-50%); background:#fff; border:1px solid #ddd; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 4px 15px rgba(0,0,0,.1); transition:var(--transition); color:var(--primary-color); z-index:5; }
.carousel-btn:hover { background:var(--primary-color); color:#fff; }
.carousel-btn.prev { left:0; }
.carousel-btn.next { right:0; }
.carousel-progress { position:relative; height:4px; background:#e3e3e3; margin-top:1rem; border-radius:3px; overflow:hidden; }
.carousel-progress-bar { height:100%; width:0%; background:linear-gradient(90deg,var(--primary-color),var(--accent-color)); transition:width .3s ease; }
@media (max-width: 600px) { .services-carousel { padding:0 40px; } .services-track .service-card { flex:0 0 78%; } }

/* Services Carousel */
.services-carousel {
    position: relative;
    margin: 0 auto;
    padding: 0 50px; /* space for buttons */
    isolation: isolate;
}

.services-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
}

.services-track::-webkit-scrollbar { display: none; }

.services-track .service-card {
    flex: 0 0 clamp(250px, 30%, 320px);
    scroll-snap-align: start;
    min-height: 340px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    color: var(--primary-color);
    z-index: 5;
}

.carousel-btn:hover { background: var(--primary-color); color: #fff; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-progress {
    position: relative;
    height: 4px;
    background: #e3e3e3;
    margin-top: 1rem;
    border-radius: 3px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

@media (max-width: 992px) {
    .services-track .service-card { flex: 0 0 clamp(260px, 45%, 360px); }
}

@media (max-width: 600px) {
    .services-carousel { padding: 0 35px; }
    .carousel-btn { width: 40px; height: 40px; }
    .services-track .service-card { flex: 0 0 78%; }
}

/* Works (Yaptığımız İşler) Section */
.works {
    padding: 80px 0;
    background: var(--white);
}

.works-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; }
@media (max-width: 1080px) { .works-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 640px) { .works-grid { grid-template-columns:1fr; } }

.work-card {
    background: var(--light-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.work-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transition: var(--transition);
}

.work-card:hover .work-image img {
    filter: brightness(1);
    transform: scale(1.04);
}

/* Work card slider */
.work-image{position:relative}
.work-slider{position:relative;width:100%;height:170px;overflow:hidden;border-bottom:1px solid rgba(0,0,0,.04)}
.work-slide{position:absolute;inset:0;opacity:0;transition:opacity .6s ease}
.work-slide.active{opacity:1}
.work-slide img{width:100%;height:100%;object-fit:cover;display:block;filter:brightness(0.92);}

.work-card-content {
    padding: 1.5rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 240px;
}

.work-meta { display:inline-block; font-size:.65rem; letter-spacing:1px; text-transform:uppercase; font-weight:600; color:var(--accent-color); margin-bottom:.45rem; background:rgba(205,133,63,0.1); padding:.35rem .6rem; border-radius:6px; }

.work-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    position: relative;
}

.work-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.work-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.work-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.4rem 0.7rem;
    border-radius: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
    .work-image img { height: 200px; }
}



/* Inline contact links */
.link-inline { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.link-inline:hover { text-decoration: underline; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

/* Gallery Carousel (horizontal) */
.gallery-carousel { position:relative; margin:0 auto; padding:0 10px; }
.gallery-track { display:flex; gap:1.25rem; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding-bottom:.75rem; }
.gallery-track.continuous { scroll-snap-type: none; }
.gallery-track::-webkit-scrollbar { display:none; }
.gallery-track .gallery-item { flex:0 0 clamp(260px,28%,400px); scroll-snap-align:center; position:relative; border-radius:14px; overflow:hidden; background:#000; }
.gallery-track .gallery-item img { width:100%; height:320px; object-fit:cover; display:block; transition:transform .6s ease, filter .6s ease; filter:brightness(.9) contrast(1.05); }
.gallery-track .gallery-item:hover img { transform:scale(1.07); filter:brightness(1) contrast(1.08); }
/* Gallery buttons removed */
.gallery-progress { position:relative; height:4px; background:#e3e3e3; margin-top:1rem; border-radius:3px; overflow:hidden; }
.gallery-progress-bar { height:100%; width:0%; background:linear-gradient(90deg,var(--primary-color),var(--accent-color)); transition:width .3s ease; }
@media (max-width: 992px){ .gallery-track .gallery-item { flex:0 0 clamp(260px,46%,420px); } }
@media (max-width: 640px){
    .gallery-carousel { padding:0 4px; }
    .gallery-track { gap:.65rem; }
    .gallery-track .gallery-item { flex:0 0 100%; border-radius:10px; }
    .gallery-track .gallery-item img { height:310px; }
}
@media (max-width: 430px){
    .gallery-track .gallery-item img { height:270px; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

/* Contact Cards New Layout */
.contact-cards-layout { max-width:1100px; margin:0 auto; }
.contact-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }
.contact-card { position:relative; background:linear-gradient(165deg,#ffffff 0%, #f7f4f1 60%, #f1ebe6 100%); border:1px solid rgba(139,69,19,0.12); padding:2.2rem 1.9rem 2.4rem; border-radius:22px; box-shadow:0 10px 28px -10px rgba(0,0,0,.18),0 4px 10px -2px rgba(0,0,0,.08); overflow:hidden; display:flex; flex-direction:column; gap:.85rem; transition:box-shadow .45s ease, transform .5s cubic-bezier(.4,.2,.2,1); }
.contact-card::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 28% 22%, rgba(205,133,63,.18), rgba(205,133,63,0) 68%); opacity:0; transition:opacity .55s ease; pointer-events:none; }
.contact-card:hover { transform:translateY(-6px); box-shadow:0 18px 46px -14px rgba(0,0,0,.30),0 10px 24px -6px rgba(0,0,0,.18); }
.contact-card:hover::before { opacity:1; }
.contact-card .cc-icon { width:62px; height:62px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:1.55rem; background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); color:#fff; box-shadow:0 6px 18px -6px rgba(0,0,0,.35); }
.contact-card.whatsapp .cc-icon { background:linear-gradient(135deg,#25D366,#128C7E); }
.contact-card.instagram .cc-icon { background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.contact-card.location .cc-icon { background:linear-gradient(135deg,#8B4513,#CD853F); }
.cc-title { font-size:1.25rem; color:var(--primary-color); margin:0; letter-spacing:.5px; }
.cc-text { font-size:.9rem; color:var(--text-light); line-height:1.5; margin:0 0 .4rem; }
.cc-action { align-self:flex-start; background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); color:#fff; text-decoration:none; padding:.65rem 1.25rem; border-radius:14px; font-size:.8rem; font-weight:600; letter-spacing:.5px; text-transform:uppercase; display:inline-flex; gap:.35rem; align-items:center; box-shadow:0 4px 14px -4px rgba(0,0,0,.35); transition:background .35s ease, transform .35s ease; }
.cc-action:hover { transform:translateY(-3px); filter:brightness(1.05); }
.cc-meta { font-size:.65rem; letter-spacing:1px; text-transform:uppercase; font-weight:600; color:var(--accent-color); background:rgba(205,133,63,.12); padding:.4rem .65rem; border-radius:6px; align-self:flex-start; }
.contact-card .cc-map-embed { border-radius:14px; overflow:hidden; margin-top:.25rem; box-shadow:0 6px 22px -8px rgba(0,0,0,.22); }

@media (max-width:760px){
    .contact-cards { gap:1.4rem; }
    .contact-card { padding:1.9rem 1.5rem 2.1rem; border-radius:20px; }
    .contact-card .cc-icon { width:56px; height:56px; font-size:1.35rem; }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--wood-brown);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* --- New Contact Flex Layout (Map Left, Channels Right) --- */
.contact-flex{display:flex;flex-wrap:wrap;gap:2.2rem;margin-top:2.25rem}
.contact-left{flex:1 1 360px;min-width:300px;max-width:560px}
.contact-right{flex:1 1 320px;display:flex;flex-direction:column;gap:1.15rem;min-width:260px}
.location-panel{background:linear-gradient(135deg,#ffffff 0%, #f7f4f1 65%, #efe7e0 100%);border:1px solid rgba(139,69,19,0.15);border-radius:26px;padding:1.9rem 1.75rem 2.2rem;position:relative;box-shadow:0 10px 30px -14px rgba(0,0,0,.18),0 4px 10px -4px rgba(0,0,0,.08);overflow:hidden}
.location-panel:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 18%,rgba(205,133,63,.18),rgba(205,133,63,0) 70%);pointer-events:none;opacity:.9}
.loc-title{font-size:1.15rem;display:flex;align-items:center;gap:.55rem;font-weight:600;margin:0 0 .65rem;color:var(--primary-color);letter-spacing:.5px}
.loc-title i{color:var(--accent-color)}
.loc-address{font-size:.85rem;line-height:1.55;color:var(--text-light);margin:0 0 1.05rem}
.loc-map-wrapper{border-radius:18px;overflow:hidden;box-shadow:0 8px 26px -12px rgba(0,0,0,.25);background:#faf7f4}
.loc-map-wrapper iframe{height:320px}
.loc-meta-row{margin-top:.85rem;display:flex;justify-content:space-between;align-items:center;font-size:.6rem;letter-spacing:1px;text-transform:uppercase;opacity:.55;font-weight:600}
.contact-block{display:flex;gap:1rem;background:linear-gradient(160deg,#ffffff 0%,#f8f5f2 60%,#f1ebe6 100%);border:1px solid rgba(139,69,19,0.12);padding:1rem 1.1rem 1.15rem;border-radius:22px;position:relative;box-shadow:0 8px 22px -12px rgba(0,0,0,.15),0 3px 8px -2px rgba(0,0,0,.08);transition:.4s cubic-bezier(.4,.2,.2,1);overflow:hidden}
.contact-block:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 22% 15%,rgba(205,133,63,.16),rgba(205,133,63,0) 68%);pointer-events:none;opacity:0;transition:opacity .5s ease}
.contact-block:hover{transform:translateY(-6px);box-shadow:0 18px 44px -16px rgba(0,0,0,.25),0 10px 24px -4px rgba(0,0,0,.12)}
.contact-block:hover:before{opacity:1}
.contact-block .cb-icon{width:58px;min-width:58px;height:58px;border-radius:18px;display:flex;align-items:center;justify-content:center;font-size:1.35rem;background:linear-gradient(135deg,var(--primary-color),var(--accent-color));color:#fff;box-shadow:0 6px 16px -8px rgba(0,0,0,.35)}
.contact-block.phone .cb-icon{background:linear-gradient(135deg,#ffae42,#d47b1f)}
.contact-block.whatsapp .cb-icon{background:linear-gradient(135deg,#25D366,#128C7E)}
.contact-block.instagram .cb-icon{background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)}
.contact-block.hours .cb-icon{background:linear-gradient(135deg,#8B4513,#CD853F)}
.cb-body{display:flex;flex-direction:column;gap:.35rem}
.cb-title{font-size:.95rem;letter-spacing:.6px;margin:0;color:var(--primary-color)}
.cb-text{font-size:.75rem;line-height:1.45;color:var(--text-light);margin:0}
.cb-inline{display:flex;align-items:center;gap:.75rem;margin-top:.2rem;flex-wrap:wrap}
.cb-action{display:inline-flex;align-items:center;justify-content:center;font-weight:600;font-size:.68rem;padding:.55rem .95rem;border-radius:14px;background:linear-gradient(135deg,var(--accent-color),var(--primary-color));color:#fff;text-decoration:none;box-shadow:0 4px 14px -6px rgba(0,0,0,.3);letter-spacing:.6px;text-transform:uppercase;transition:.35s}
.cb-action.primary{background:linear-gradient(135deg,#ffcf7a,#ffae42);color:#3b2a20}
.cb-action:hover{transform:translateY(-3px);filter:brightness(1.05)}
.cb-detail{font-size:.68rem;opacity:.75;letter-spacing:.5px;font-weight:600}
.hours-list{list-style:none;margin:.15rem 0 0;padding:0;display:flex;flex-direction:column;gap:.25rem;font-size:.7rem;line-height:1.35;color:var(--text-light);font-weight:500}
@media (max-width:980px){
    .loc-map-wrapper iframe{height:300px}
}
@media (max-width:880px){
    .contact-flex{flex-direction:column}
    .contact-left,.contact-right{max-width:100%}
    .loc-map-wrapper iframe{height:280px}
}
@media (max-width:600px){
    .contact-right{gap:1rem}
    .contact-block{padding:.85rem .9rem;border-radius:20px}
    .contact-block .cb-icon{width:50px;min-width:50px;height:50px;font-size:1.1rem;border-radius:16px}
    .cb-title{font-size:.85rem}
    .cb-text{font-size:.7rem}
    .hours-list{font-size:.64rem}
    .loc-map-wrapper iframe{height:250px}
}
/* Unified channels panel */
.contact-channels{background:linear-gradient(160deg,#ffffff 0%,#f8f5f2 60%,#f1ebe6 100%);border:1px solid rgba(139,69,19,0.12);padding:1.8rem 1.6rem 2rem;border-radius:26px;box-shadow:0 10px 30px -16px rgba(0,0,0,.18),0 4px 12px -6px rgba(0,0,0,.08);position:relative;overflow:hidden}
.contact-channels:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 18% 20%,rgba(205,133,63,.15),rgba(205,133,63,0) 68%);pointer-events:none}
.channels-title{margin:0 0 1rem;font-size:1.05rem;letter-spacing:.5px;color:var(--primary-color);font-weight:600}
.channel-list{list-style:none;margin:0 0 1.1rem;padding:0;display:flex;flex-direction:column;gap:.9rem}
.channel-item{display:flex;gap:.9rem;align-items:flex-start;padding:.55rem .4rem .55rem .2rem;border-radius:16px;transition:.4s}
.channel-item:hover{background:rgba(205,133,63,.07)}
.ci-icon{width:50px;height:50px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;background:linear-gradient(135deg,var(--primary-color),var(--accent-color));color:#fff;flex-shrink:0;box-shadow:0 4px 14px -6px rgba(0,0,0,.28)}
.ci-icon.phone{background:linear-gradient(135deg,#ffae42,#d47b1f)}
.ci-icon.whatsapp{background:linear-gradient(135deg,#25D366,#128C7E)}
.ci-icon.instagram{background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)}
.ci-body{display:flex;flex-direction:column;gap:.25rem}
.ci-label{font-size:.7rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--accent-color)}
.ci-value{font-size:.85rem;color:var(--primary-color);font-weight:600;text-decoration:none;word-break:break-word}
.ci-value:hover{text-decoration:underline}
.ci-call-btn{margin-top:.2rem;align-self:flex-start;background:linear-gradient(135deg,#ffcf7a,#ffae42);border:none;color:#3b2a20;font-weight:600;padding:.45rem .9rem;font-size:.7rem;border-radius:12px;cursor:pointer;letter-spacing:.5px;display:inline-flex;align-items:center;gap:.4rem;box-shadow:0 4px 14px -6px rgba(0,0,0,.3);text-transform:uppercase;transition:.35s}
.ci-call-btn:hover{transform:translateY(-3px);filter:brightness(1.05)}
.ci-call-btn{font-size:.75rem;padding:.55rem 1.05rem;border:2px solid rgba(0,0,0,.08)}
.ci-call-btn:focus-visible{outline:2px solid #ffae42;outline-offset:2px}
.ci-value{position:relative;padding-right:.4rem}
.ci-value:after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:linear-gradient(90deg,var(--accent-color),var(--primary-color));transition:width .4s}
.ci-value:hover:after{width:100%}
.channel-item:hover .ci-call-btn{box-shadow:0 6px 18px -6px rgba(0,0,0,.35)}
@media (prefers-reduced-motion:reduce){.ci-value:after{transition:none}.ci-call-btn{transition:none}}
.hours-inline{display:flex;align-items:center;gap:.55rem;font-size:.68rem;letter-spacing:.5px;text-transform:uppercase;font-weight:600;color:var(--text-light);background:rgba(139,69,19,.08);padding:.55rem .75rem;border-radius:14px}
.hours-inline i{color:var(--accent-color)}
.contact-quick-buttons{margin-top:1.2rem;display:flex;gap:.85rem;flex-wrap:wrap}
.cqb-btn{flex:1 1 110px;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.7rem 1rem;border-radius:14px;font-size:.72rem;font-weight:600;letter-spacing:.5px;text-transform:uppercase;text-decoration:none;color:#fff;position:relative;overflow:hidden;box-shadow:0 6px 18px -8px rgba(0,0,0,.3);background:linear-gradient(135deg,var(--primary-color),var(--accent-color));transition:.4s}
.cqb-btn i{font-size:1rem}
.cqb-btn.call{background:linear-gradient(135deg,#ffb347,#ff7b1f)}
.cqb-btn.whatsapp{background:linear-gradient(135deg,#25D366,#128C7E)}
.cqb-btn.instagram{background:linear-gradient(135deg,#f09433 0%,#dc2743 50%,#bc1888 100%)}
.cqb-btn:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 30% 20%,rgba(255,255,255,.28),rgba(255,255,255,0) 70%);opacity:0;transition:.5s}
.cqb-btn:hover{transform:translateY(-4px)}
.cqb-btn:hover:after{opacity:1}
.cqb-btn:active{transform:translateY(-1px)}
@media (max-width:600px){
    .channel-item{gap:.75rem}
    .ci-icon{width:44px;height:44px;font-size:1rem;border-radius:14px}
    .ci-value{font-size:.8rem}
    .hours-inline{font-size:.6rem}
}
/* Contact channel action buttons */
.ci-btn{display:inline-flex;align-items:center;gap:.5rem;font-size:.68rem;font-weight:600;letter-spacing:.6px;text-transform:uppercase;text-decoration:none;padding:.55rem .95rem;border-radius:14px;margin-top:.3rem;box-shadow:0 4px 14px -6px rgba(0,0,0,.28);transition:.35s;position:relative}
.ci-btn i{font-size:.9rem}
.ci-btn.wa{background:linear-gradient(135deg,#25D366,#128C7E);color:#fff}
.ci-btn.ig{background:linear-gradient(135deg,#f09433 0%,#e6683c 30%,#dc2743 55%,#cc2366 75%,#bc1888 95%);color:#fff}
.ci-btn:hover{transform:translateY(-3px);filter:brightness(1.06)}
.ci-btn:focus-visible{outline:2px solid #ffae42;outline-offset:2px}
/* (mini note & handle removed per latest simplification) */
@media (max-width:600px){
    .ci-btn{font-size:.62rem;padding:.5rem .8rem}
    .ci-btn i{font-size:.8rem}
    .ci-mini-note,.ci-handle{font-size:.52rem}
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
    gap:.35rem;
}

.footer-logo h3 {
    font-family: 'Callheart', 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-logo p {
    opacity: 0.85;
    margin: 0;
    font-weight:500;
    letter-spacing:.4px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}
.footer-credit{display:flex;flex-direction:column;gap:.35rem;line-height:1.25}
.footer-credit p{margin:0}
.footer-credit .credit-line{font-size:.8rem;letter-spacing:1px;text-transform:uppercase;font-weight:600;opacity:.85}
.footer-credit .credit-names{font-size:.95rem;font-weight:600;letter-spacing:.5px}
.footer-credit .ampersand{margin:0 .35rem;font-weight:400;opacity:.9}
.footer-credit .credit-link a{color:#fff;text-decoration:none;font-size:.75rem;letter-spacing:.5px;border-bottom:1px solid rgba(255,255,255,.25);padding-bottom:2px;transition:.35s}
.footer-credit .credit-link a:hover{color:var(--accent-color);border-color:var(--accent-color)}
.footer-credit .credit-year{font-size:.7rem;letter-spacing:1px;text-transform:uppercase;margin-top:.2rem;opacity:.75}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        background-attachment: scroll;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 3.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Workshop */
    .workshop-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workshop-image img {
        height: 300px;
    }

    .vision-mission {
        height: auto;
        margin-top: 2rem;
    }

    .vm-icon {
        width: 50px;
        height: 50px;
    }

    .vm-icon i {
        font-size: 1.2rem;
    }

    .vm-title {
        font-size: 1.2rem;
    }

    .workshop-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* About */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .workshop-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .workshop-image img {
        height: 250px;
    }

    .vision-mission {
        height: auto;
    }

    .vision-card,
    .mission-card {
        padding: 1.5rem;
    }

    .vm-title {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Basit ve performanslı animasyonlar */
@media (prefers-reduced-motion: no-preference) {
    .hero-title {
        animation: simpleSlideUp 1s ease-out;
    }
    
    .hero-subtitle {
        animation: simpleSlideUp 1.2s ease-out;
    }
    
    .hero-description {
        animation: simpleSlideUp 1.4s ease-out;
    }
    
    .hero-btn {
        animation: simpleSlideUp 1.6s ease-out;
    }

    @keyframes simpleSlideUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Print styles */
@media print {
    .navbar, .lightbox, .footer-social {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .section-title {
        color: black;
    }
}

/* --- Enhanced Services Carousel (Professional Variant) --- */
.services-track {
        mask-image: linear-gradient(90deg, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}

.services-track .service-card {
        background: linear-gradient(165deg,#ffffff 0%,#faf8f5 60%,#f3eee9 100%);
        border: 1px solid rgba(139,69,19,0.08);
        position: relative;
        transition: transform .4s cubic-bezier(.4,.2,.2,1), box-shadow .35s ease;
        box-shadow: 0 4px 14px -4px rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.06);
}

.services-track .service-card::before {
        content:""; position:absolute; inset:0; pointer-events:none; opacity:0; transition:opacity .4s ease;
        background: radial-gradient(circle at 28% 22%, rgba(205,133,63,.22), rgba(205,133,63,0) 60%);
}
.services-track .service-card:hover::before { opacity:1; }
.services-track .service-card:hover { transform: translateY(-6px) scale(1.015); box-shadow:0 18px 48px -12px rgba(0,0,0,.22),0 6px 18px -4px rgba(0,0,0,.15); }
.services-track .service-card .service-title { letter-spacing:.4px; font-weight:600; }
.services-track .service-card .service-description { font-size:.9rem; line-height:1.55; }

.carousel-btn, .carousel-playpause { backdrop-filter: blur(var(--blur-strength)); background: var(--glass-bg); }
.carousel-btn { border:1px solid rgba(255,255,255,.55); }
.carousel-btn:hover, .carousel-playpause:hover { background: linear-gradient(135deg,var(--primary-color),var(--accent-color)); color:#fff; }
.carousel-playpause { position:absolute; top:14px; right:60px; transform:none; width:40px; height:40px; border:1px solid rgba(255,255,255,.55); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--primary-color); transition:var(--transition); }
.carousel-playpause.paused i::before { content:"\f04b"; }

.carousel-progress { box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.carousel-progress-bar { background: linear-gradient(90deg,var(--primary-color) 0%,var(--accent-color) 100%); }

.carousel-dots { display:flex; gap:.55rem; justify-content:center; margin-top:1.4rem; }
.carousel-dots button { width:11px; height:11px; border-radius:50%; background:#d7d0c9; border:none; cursor:pointer; position:relative; transition:background .25s ease, transform .25s ease; }
.carousel-dots button[aria-selected="true"] { background:var(--primary-color); box-shadow:0 0 0 5px rgba(139,69,19,.18); transform:scale(1.15); }
.carousel-dots button:focus-visible { outline:2px solid var(--accent-color); outline-offset:2px; }

.visually-hidden { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

@media (max-width: 992px) {
    .services-track .service-card { flex:0 0 clamp(260px,46%,360px); }
}
@media (max-width: 600px) {
    .services-carousel { padding:0 34px; }
    .carousel-playpause { right:50%; transform:translateX(50%); top:-18px; }
    .services-track .service-card { flex:0 0 78%; }
}

/* --- Restored early full-screen hero variant --- */
body.initial-hero .hero.fullscreen { min-height:100vh; padding:0; display:flex; align-items:center; width:100%; }
body.initial-hero .hero.fullscreen .hero-content { width:100%; }
body.initial-hero .hero.fullscreen .hero-description { background:rgba(0,0,0,0.35); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,0.15); }
body.initial-hero .hero.fullscreen .hero-overlay { backdrop-filter: blur(2px); background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.35)); }
@media (max-width:768px){ body.initial-hero .hero.fullscreen { min-height:100dvh; } }
