/* 
 * Hamam Sauna - 2025 Modern Tasarım
 * Versıyon: 1.0
 */

/* ===== RESET ve KÖK DEĞİŞKENLER ===== */
:root {
    /* Ana Renkler */
    --primary: #0a3542;
    --primary-light: #124d60;
    --secondary: #e9b649;
    --accent: #d1623c;
    
    /* Nötr Renkler */
    --dark: #121619;
    --gray-dark: #2a2f33;
    --gray: #606570;
    --gray-light: #e0e2e5;
    --light: #f8f9fa;
    
    /* Gradyanlar */
    --gradient-primary: linear-gradient(140deg, var(--primary), var(--primary-light));
    --gradient-accent: linear-gradient(140deg, var(--secondary), var(--accent));
    
    /* Gölgeler */
    --shadow-sm: 0 2px 10px rgba(10, 53, 66, 0.05);
    --shadow-md: 0 5px 20px rgba(10, 53, 66, 0.08);
    --shadow-lg: 0 10px 40px rgba(10, 53, 66, 0.12);
    
    /* Boşluklar */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Diğer */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2rem;
    --border-radius-xl: 3rem;
    
    /* Tipografi */
    --font-family: 'Poppins', sans-serif;
    --line-height: 1.6;
}

/* ===== TEMEL SIFIRLAMA ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1.6rem;
    line-height: var(--line-height);
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== KONTEYNER ===== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== HEADER STYLES ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-list a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 22px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: var(--gradient-primary);
    color: var(--light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo h2 {
    font-size: 3.2rem;
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.contact-info i {
    font-size: 2rem;
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-xl) var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list a {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ===== ANA SAYFA ÖZEL STİLLER ===== */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-primary);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    color: var(--light);
}

.hero-title {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
    transform: translateY(-20px);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-shape {
    display: none;
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}

.shape-1 {
    width: 30rem;
    height: 30rem;
    bottom: -10rem;
    right: -10rem;
}

.shape-2 {
    width: 20rem;
    height: 20rem;
    top: -5rem;
    left: -5rem;
    background: var(--accent);
}

/* ===== BÖLÜM STİLLERİ ===== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: 4.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--gray);
}

/* ===== KART BİLEŞENLERİ ===== */
.card {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 25rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 2.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.card-text {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 500;
    gap: var(--spacing-xs);
}

.card-link:hover {
    gap: calc(var(--spacing-xs) * 1.5);
}

/* ===== ÜRÜN KART STİLLERİ ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* ===== İLETİŞİM FORMU STİLLERİ ===== */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-weight: 500;
    color: var(--gray-dark);
}

.form-input,
.form-textarea {
    padding: var(--spacing-sm);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--light);
    font-family: inherit;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 53, 66, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: var(--gradient-primary);
    color: var(--light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4.8rem;
    }
    
    .section-title {
        font-size: 3.6rem;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* ===== ABOUT PREVIEW BÖLÜMÜ ===== */
.about-preview {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--gray);
    font-size: 1.8rem;
    line-height: 1.7;
}

.about-text .section-title {
    margin-bottom: var(--spacing-md);
    text-align: left;
    color: var(--primary);
}

.about-text .cta-button {
    margin-top: var(--spacing-sm);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-image {
        margin-bottom: var(--spacing-md);
    }
    
    .about-text {
        padding: 0;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 8rem;
    color: rgba(10, 53, 66, 0.05);
    position: absolute;
    top: -4rem;
    left: -2rem;
    font-family: serif;
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 1.4rem;
    color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.cta-title {
    font-size: 4.2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: var(--light);
    color: var(--primary);
}

/* ===== HAKKIMIZDA SAYFASI STİLLERİ ===== */
.about-hero {
    min-height: 50vh;
}

.about-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.about-full-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.about-image-full {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.about-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-full {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-text-full p {
    color: var(--gray);
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.subsection-title {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.values-list li {
    color: var(--gray);
    font-size: 1.8rem;
    line-height: 1.7;
    position: relative;
    padding-left: var(--spacing-md);
}

.values-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: var(--secondary);
    border-radius: 50%;
}

.values-list li strong {
    color: var(--primary);
    font-weight: 600;
}

/* İstatistikler Bölümü */
.stats-section {
    background-color: var(--primary);
    color: var(--light);
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary);
}

.stat-text {
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Ekip Bölümü */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.team-member {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 30rem;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: var(--spacing-md);
}

.member-name {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.member-bio {
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-full-content {
        grid-template-columns: 1fr;
    }
    
    .about-image-full {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BİZ KİMİZ SAYFASI STİLLERİ ===== */
.who-hero {
    min-height: 50vh;
}

.who-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Felsefemiz Bölümü */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.philosophy-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.philosophy-text p {
    color: var(--gray);
    font-size: 1.8rem;
    line-height: 1.7;
}

.philosophy-quote {
    background-color: rgba(10, 53, 66, 0.05);
    padding: var(--spacing-md);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: var(--spacing-md) 0;
    font-style: italic;
    color: var(--gray-dark);
    font-size: 1.8rem;
    line-height: 1.7;
}

.philosophy-quote cite {
    display: block;
    margin-top: var(--spacing-xs);
    font-weight: 600;
    font-style: normal;
    color: var(--primary);
}

/* Misyon, Vizyon, Değerler Bölümü */
.mission-section {
    background-color: var(--gray-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.mission-card {
    background-color: var(--light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--light);
    border-radius: 50%;
}

.mission-icon i {
    font-size: 4rem;
}

.mission-card h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.mission-card p {
    color: var(--gray);
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Çalışma Süreci */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    margin-top: var(--spacing-lg);
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background-color: var(--gray-light);
}

.process-step {
    display: flex;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.step-content {
    flex-grow: 1;
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.step-text {
    color: var(--gray);
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Neden Bizi Tercih Etmelisiniz */
.why-choose-section {
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 53, 66, 0.05);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--light);
}

.feature-icon i {
    font-size: 3rem;
}

.feature-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.feature-text {
    color: var(--gray);
    font-size: 1.6rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .philosophy-image {
        margin-bottom: var(--spacing-md);
    }
    
    .process-timeline:before {
        left: 40px;
    }
    
    .step-number {
        width: 6rem;
        height: 6rem;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: var(--spacing-sm);
        margin-right: 0;
        align-self: flex-start;
    }
    
    .process-timeline:before {
        display: none;
    }
}

/* ===== ÜRÜNLER SAYFASI STİLLERİ ===== */
.products-hero {
    min-height: 50vh;
}

.products-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Kategori Filtreleme */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.category-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Ürün Kartları */
.product-card {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 30rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 53, 66, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

.product-btn:hover {
    background-color: var(--light);
}

.product-content {
    padding: var(--spacing-md);
}

.product-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.product-description {
    color: var(--gray);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-light);
    padding-top: var(--spacing-sm);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.product-cta {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: var(--primary);
    color: var(--light);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.product-cta:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Özel Tasarım Bölümü */
.custom-product-section {
    background-color: var(--gray-light);
}

.custom-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.custom-product-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.custom-product-text p {
    color: var(--gray);
    font-size: 1.8rem;
    line-height: 1.7;
}

.custom-product-text .section-title {
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.custom-product-text .cta-button {
    margin-top: var(--spacing-sm);
    align-self: flex-start;
}

.custom-product-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.custom-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .custom-product-content {
        grid-template-columns: 1fr;
    }
    
    .custom-product-image {
        margin-top: var(--spacing-md);
        order: -1;
    }
}

/* ===== İLETİŞİM SAYFASI STİLLERİ ===== */
.contact-hero {
    min-height: 50vh;
}

.contact-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* İletişim Formu ve Bilgiler */
.contact-section {
    position: relative;
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-info-item i {
    font-size: 2.4rem;
    color: var(--secondary);
}

.contact-info-item h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--secondary);
}

.contact-social h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.contact-social .social-links {
    margin-top: 0;
}

/* Form Stilleri */
.contact-form {
    background-color: var(--light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-size: 1.6rem;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    font-size: 1.6rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 53, 66, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--light);
    font-size: 1.6rem;
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Harita Bölümü */
.map-section {
    background-color: var(--gray-light);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* SSS Bölümü */
.faq-section {
    background-color: var(--light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(10, 53, 66, 0.05);
}

.faq-question h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
}

.faq-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Error Message Styles */
.error-message {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-top: var(--spacing-xs);
}

.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        margin-bottom: var(--spacing-md);
    }
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 30px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Telefon Butonu */
.phone-btn {
    position: fixed;
    bottom: 95px; /* WhatsApp butonunun üstünde konumlandırma */
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: pulse-blue 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn i {
    font-size: 30px;
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
} 