@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
    --bg-main: #FFFFFF;
    --bg-sec: #F9FAFB;
    --bg-card: #FFFFFF;
    --bg-hover: #F3F4F6;
    --accent: #FFD500; /* Premium Yellow */
    --accent-hover: #E0BA00;
    --accent-dark: #111827; /* Corporate Dark Grey/Off-Black */
    --accent-dark-hover: #1F2937;
    --text-head: #111827;
    --text-body: #4B5563;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --border-hover: #D1D5DB;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --shadow-soft: 0 4px 6px -1px rgba(17, 24, 39, 0.03), 0 2px 4px -1px rgba(17, 24, 39, 0.02);
    --shadow-hover: 0 20px 25px -5px rgba(17, 24, 39, 0.06), 0 10px 10px -5px rgba(17, 24, 39, 0.02);
    --shadow-premium: 0 25px 50px -12px rgba(17, 24, 39, 0.08);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text-head);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-sec);
}
::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    background: rgba(255, 213, 0, 0.12);
    border: 1px solid rgba(255, 213, 0, 0.3);
    color: #997A00;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text-head);
}

.section-title span {
    background: linear-gradient(120deg, rgba(255,213,0,0.3) 0%, rgba(255,213,0,0.3) 100%);
    background-repeat: no-repeat;
    background-size: 100% 32%;
    background-position: 0 88%;
    display: inline;
    padding: 0 4px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.2rem;
    border-radius: var(--border-radius);
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-dark);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--accent-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.btn-secondary {
    background: var(--accent);
    color: var(--accent-dark);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-dark);
    color: #FFFFFF;
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-outline:hover {
    background: var(--accent-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-text {
    padding: 0;
    background: transparent;
    color: var(--accent-dark);
    font-weight: 700;
    gap: 0.5rem;
    border-bottom: 2px solid var(--accent);
    border-radius: 0;
}

.btn-text:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-dark);
}

.btn-text:hover i {
    transform: translateX(4px);
}

.btn-text i {
    transition: var(--transition);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

header:not(.scrolled) {
    padding: 1.3rem 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent-dark);
    background: var(--accent);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: -0.03em;
}

.logo-text span {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-body);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-dark);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-button-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-left: 1px solid var(--border);
}

.contact-button-nav i {
    font-size: 1.1rem;
    color: var(--accent-dark);
}

.contact-button-nav .info {
    display: flex;
    flex-direction: column;
}

.contact-button-nav .info span:first-child {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-button-nav .info span:last-child {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--accent-dark);
    font-size: 1.4rem;
    z-index: 1001;
}

/* Hero Section (UPDATED FOR BALANCED COLUMNS) */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background-color: var(--bg-sec);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-bg {
    display: none; /* No cut background */
}

.hero-content {
    max-width: 100%;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--accent-dark);
}

.hero-title span {
    background: linear-gradient(120deg, rgba(255,213,0,0.3) 0%, rgba(255,213,0,0.3) 100%);
    background-repeat: no-repeat;
    background-size: 100% 32%;
    background-position: 0 88%;
    display: inline;
    padding: 0 4px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.hero-stat-number span {
    color: var(--accent-dark);
    border-bottom: 3px solid var(--accent);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.hero-image-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border);
    background: #FFFFFF;
    padding: 0.5rem; /* Clean frames look */
}

.hero-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

/* Quick Actions Cards */
.quick-info-strip {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.quick-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.quick-info-icon {
    font-size: 1.5rem;
    color: var(--accent-dark);
    background: rgba(255, 213, 0, 0.15);
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 213, 0, 0.3);
}

.quick-info-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--accent-dark);
}

.quick-info-desc {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* About Section */
.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    padding: 0.5rem;
    background: #FFFFFF;
    display: flex;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-dark);
    padding: 1.25rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-experience-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-head);
    line-height: 1;
}

.about-experience-text {
    font-size: 0.75rem;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-item i {
    color: var(--accent-dark);
    font-size: 1rem;
}

/* Service Cards */
.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.service-card-img-wrapper {
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-dark);
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.service-card:hover .service-card-img {
    transform: scale(1.04);
}

.service-card .btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: var(--bg-sec);
    color: var(--accent-dark);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: var(--transition);
    border-bottom: none;
}

.service-card .btn-text:hover {
    background: var(--accent-dark);
    color: #FFFFFF;
    border-color: var(--accent-dark);
}

.service-card .btn-text:hover i {
    transform: translateX(4px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.95)), url('../assets/tamir_onarim.jpg') center center/cover fixed;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.stat-count {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat-count span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: rgba(255, 213, 0, 0.15);
    border: 1px solid rgba(255, 213, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-dark);
    font-family: var(--font-head);
}

.testimonial-user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.testimonial-user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: var(--accent-dark);
    display: flex;
    gap: 0.25rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #FFFFFF;
    border: 1px solid var(--border);
    color: var(--accent-dark);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-dark);
    color: #FFFFFF;
    border-color: var(--accent-dark);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-trigger h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.faq-trigger i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
}

.faq-content p {
    padding-bottom: 1.25rem;
    color: var(--text-body);
    font-size: 0.92rem;
}

.faq-item.active {
    border-color: var(--accent-dark);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--accent-dark);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* Contact & Info */
.contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--accent-dark);
    background: rgba(255, 213, 0, 0.15);
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 213, 0, 0.3);
}

.contact-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--accent-dark);
}

.contact-item-desc {
    font-size: 0.9rem;
    color: var(--text-body);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-sec);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-dark);
    color: #FFFFFF;
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Forms */
.form-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.form-title {
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: var(--bg-sec);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.8rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-head);
    transition: var(--transition);
    outline: none;
}

.form-select option {
    background-color: #FFFFFF;
    color: var(--text-head);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--accent-dark);
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(17, 24, 39, 0.03);
}

.form-textarea {
    resize: none;
    min-height: 110px;
}

/* Appointment Stepper & Booking */
.appointment-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.appointment-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 1;
    transform: translateY(-50%);
}

.step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #FFFFFF;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    z-index: 2;
    transition: var(--transition);
    color: var(--text-muted);
}

.step-indicator.active {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(17, 24, 39, 0.1);
}

.step-indicator.completed {
    border-color: var(--accent-dark);
    background: var(--accent);
    color: var(--accent-dark);
}

.appointment-step-content {
    display: none;
}

.appointment-step-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-success-box {
    text-align: center;
    padding: 2.5rem;
}

.success-icon {
    font-size: 3.5rem;
    color: #10B981;
    margin-bottom: 1.25rem;
}

.success-code {
    display: inline-block;
    padding: 0.65rem 1.8rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: #10B981;
    margin: 1.25rem 0;
    letter-spacing: 0.1em;
}

/* Service Detail Page layout */
.inner-hero {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)), url('../assets/hero_photo.jpg') center center/cover;
    padding: 9rem 0 4.5rem;
    border-bottom: 4px solid var(--accent);
}

.inner-hero h1.hero-title {
    color: #FFFFFF !important;
}

.inner-hero h1.hero-title span {
    border-bottom: 5px solid var(--accent);
    color: #FFFFFF !important;
}

.services-list-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}

.service-detail-row:nth-child(even) {
    direction: rtl;
}

.service-detail-row:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    padding: 0.5rem;
    background: #FFFFFF;
}

.service-detail-img img {
    border-radius: 6px;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 1rem;
}

.service-include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.service-include-item i {
    color: var(--accent-dark);
}

/* Gallery Grid */
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--accent);
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Map area */
.map-container {
    height: 420px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow-premium);
    padding: 0.5rem;
    background: #FFFFFF;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

/* Whatsapp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Footer */
footer {
    background: var(--accent-dark);
    border-top: 4px solid var(--accent);
    padding: 5rem 0 2.5rem;
    color: rgba(255, 255, 255, 0.65);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #FFFFFF !important;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
    .footer-col:last-child { grid-column: span 2; }
    .hero-title { font-size: 2.8rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-image-box { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .section-padding { padding: 4.5rem 0; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.75rem;
        z-index: 1000;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        border-left: 1px solid var(--border);
    }
    .nav-menu.active {
        right: 0;
    }
    .hamburger {
        display: block;
    }
    .contact-button-nav {
        display: none;
    }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { gap: 1.5rem; }
    .quick-info-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col:last-child { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .service-detail-row { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail-row:nth-child(even) { direction: ltr; }
}

/* ------------------------------------------------------
   Canlılık, Doluluk & Kurumsal Tasarım Zenginleştirmeleri
   ------------------------------------------------------ */

/* 1. Dekoratif Radial Nokta Deseni */
.bg-dots {
    background-image: radial-gradient(rgba(17, 24, 39, 0.04) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

/* 2. Canlı Servis Durumu Göstergesi */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    color: var(--text-head);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background-color: #10B981;
    animation: statusGlowGreen 1.8s infinite;
}

.status-dot.closed {
    background-color: #EF4444;
    animation: statusGlowRed 1.8s infinite;
}

@keyframes statusGlowGreen {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes statusGlowRed {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* 3. Hizmet Verilen Markalar Bandı (Sonsuz Marquee Kaydırma) */
.brand-logo-strip {
    background: #FFFFFF;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.brand-logos-container {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.brand-logos-container:hover {
    animation-play-state: paused;
}

.brand-logo-item {
    font-size: 1.15rem;
    font-weight: 800;
    color: #9CA3AF;
    font-family: var(--font-head);
    letter-spacing: -0.01em;
    padding: 0 3.5rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.brand-logo-item:hover {
    color: var(--accent-dark);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* 4. Neden Biz Özellik Kartları */
.benefit-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 1.6rem;
    color: var(--accent-dark);
    background: rgba(255, 213, 0, 0.15);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 213, 0, 0.3);
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-dark);
}

.benefit-desc {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* 5. Scroll Reveal Efektleri */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 6. Premium Testimonial Carousel Düzeni */
.testimonials-carousel-viewport {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
}

.testimonials-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide-premium {
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 columns by default */
    box-sizing: border-box;
}

.testimonial-card-premium {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.testimonial-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card-premium.highlighted {
    border-color: #B59449; /* Altın-Bronz Vurgu */
    box-shadow: 0 10px 25px rgba(181, 148, 73, 0.08);
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testi-stars {
    color: #B59449; /* Altın-Bronz yıldızlar */
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testi-quote {
    color: rgba(181, 148, 73, 0.12);
    font-size: 1.6rem;
}

.testi-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testi-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.testi-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-head);
    margin-bottom: 0.2rem;
}

.testi-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background: #FFD500 !important; /* Golden background on hover */
    border-color: #FFD500 !important;
}

.carousel-nav-btn:hover i {
    color: #111111 !important;
}

@media (max-width: 1024px) {
    .testimonial-slide-premium {
        flex: 0 0 calc(50% - 1rem); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-slide-premium {
        flex: 0 0 100%; /* 1 column on mobile */
    }
}

/* 7. Galeri Lightbox Modal CSS */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    border: 3px solid #FFFFFF;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: var(--font-head);
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* 8. Yapışkan Oval İletişim Buton Grubu (Sticky Contact Pills) */
.sticky-contact-group {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-end;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(17, 24, 39, 0.08);
    border: 1px solid #E5E7EB;
    transition: var(--transition);
    cursor: pointer;
}

.sticky-btn.white-pill {
    background: #FFFFFF;
    color: #111827;
}

.sticky-btn.white-pill i {
    color: #B59449; /* Altın/Bronz ikon rengi (Referans görsele göre) */
    font-size: 1.05rem;
}

.sticky-btn.green-pill {
    background: #25D366; /* Whatsapp Yeşili */
    color: #FFFFFF;
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.sticky-btn.green-pill i {
    color: #FFFFFF;
    font-size: 1.15rem;
}

.sticky-btn:hover {
    transform: translateX(-4px) translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.sticky-btn.green-pill:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Eski tekli Whatsapp butonunu gizle */
.whatsapp-float {
    display: none !important;
}
