/* Sarı Sürücü Kursu CSS - Professional Yellow & Black Theme */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #ffffff 0%, hsl(45, 100%, 99%) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Color Variables */
:root {
    /* Main Brand Colors */
    --background: #ffffff;
    --foreground: #1a1a1a;
    
    /* Sarı Brand Yellow - Golden Yellow */
    --brand-yellow: hsl(45, 95%, 55%);
    --brand-yellow-light: hsl(45, 100%, 85%);
    --brand-yellow-dark: hsl(45, 85%, 45%);
    
    /* Complementary Colors */
    --brand-blue: hsl(210, 85%, 65%);
    --brand-blue-light: hsl(210, 100%, 95%);
    --brand-green: hsl(150, 70%, 55%);
    --brand-green-light: hsl(150, 100%, 95%);
    --brand-orange: hsl(25, 90%, 60%);
    --brand-orange-light: hsl(25, 100%, 95%);
    
    /* Professional Black Tones */
    --brand-black: #1a1a1a;
    --brand-black-light: #333333;
    --brand-gray: #f8f9fa;
    --brand-gray-light: #f1f3f4;

    --card: #ffffff;
    --card-foreground: #1a1a1a;

    /* Primary - Brand Yellow for CTAs */
    --primary: hsl(45, 95%, 55%);
    --primary-foreground: #1a1a1a;

    /* Secondary - Elegant Black for Text */
    --secondary: #1a1a1a;
    --secondary-foreground: #ffffff;

    --muted: #f8f9fa;
    --muted-foreground: #6b7280;

    /* Accent - Light Yellow for highlights */
    --accent: hsl(45, 100%, 85%);
    --accent-foreground: #1a1a1a;

    --border: #e5e7eb;
    --input: #e5e7eb;

    /* Custom Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(45, 95%, 55%), hsl(45, 85%, 45%));
    --gradient-hero: linear-gradient(135deg, hsl(45, 95%, 55%) 0%, hsl(210, 85%, 65%) 100%);
    --gradient-black: linear-gradient(135deg, #1a1a1a, #333333);
    --gradient-section: linear-gradient(135deg, #ffffff 0%, hsl(45, 100%, 98%) 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, hsl(210, 100%, 99%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(150, 100%, 95%) 0%, hsl(25, 100%, 95%) 100%);
    
    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px rgba(26, 26, 26, 0.08);
    --shadow-yellow: 0 10px 30px -10px hsla(45, 95%, 55%, 0.25);
    --shadow-blue: 0 5px 20px -5px hsla(210, 85%, 65%, 0.15);
    --shadow-green: 0 5px 20px -5px hsla(150, 70%, 55%, 0.15);
    --shadow-card: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Text utilities */
.text-primary {
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--muted);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}


/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-elegant);
}

.top-bar {
    display: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}

@media (min-width: 768px) {
    .top-bar {
        display: flex;
        justify-content: flex-end;
    }
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-item svg {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-yellow);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s;
}

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

.cta-buttons {
    display: none;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cta-buttons {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s;
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    max-height: 24rem;
    padding-bottom: 1rem;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

#header.scrolled {
    background: rgba(252, 252, 252, 0.98);
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--background) 0%, hsl(45, 100%, 98%) 30%, hsl(210, 100%, 98%) 70%, var(--background) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    width: fit-content;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
}

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

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
}

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

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.image-container img {
    width: 100%;
    height: 31.25rem;
    object-fit: cover;
}

@media (min-width: 768px) {
    .image-container img {
        height: 37.5rem;
    }
}

.floating-badge {
    position: absolute;
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-elegant);
}

.floating-badge-top {
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(252, 252, 252, 0.95);
}

.floating-badge-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.floating-badge-top span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.floating-badge-bottom {
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    text-align: center;
    box-shadow: var(--shadow-yellow);
}

.success-rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.success-label {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.9);
}

/* About Section */
#about {
    padding: 5rem 0;
    background: var(--gradient-section);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-choose-item {
    background: var(--card);
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: rgba(26, 26, 26, 0.05) 0px 1px 3px;
    transition: box-shadow 0.3s;
    display: flex;
    gap: 0.75rem;
}

.why-choose-item:hover {
    box-shadow: var(--shadow-elegant);
}

.why-choose-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-hero);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}

.why-choose-content h4 {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.why-choose-content p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.about-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.services-section {
    margin-top: 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .services-title {
        font-size: 1.875rem;
    }
}

.services-description {
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:nth-child(2)::before {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
}

.service-card:nth-child(3)::before {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-orange));
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-hero);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-yellow);
    transition: all 0.3s;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    box-shadow: var(--shadow-blue);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-orange));
    box-shadow: var(--shadow-green);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-feature .check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.service-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* Contact Section */
#contact {
    padding: 5rem 0;
    background: var(--gradient-accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, hsl(150, 100%, 99%) 100%);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--muted-foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-buttons {
        flex-direction: row;
    }
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card,
.quick-actions-card,
.map-card {
    background: linear-gradient(135deg, #ffffff 0%, hsl(25, 100%, 99%) 100%);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.contact-info-card h3,
.quick-actions-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}

.contact-info-content h4 {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    font-size: 0.875rem;
    color: var(--foreground);
}

.contact-info-content span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-item {
    padding: 1rem;
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 0.5rem;
    transition: border-color 0.2s;
}

.quick-action-item:hover {
    border-color: hsla(45, 95%, 55%, 0.2);
}

.quick-action-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.quick-action-header svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.quick-action-header h4 {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.875rem;
}

.quick-action-item p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.map-card {
    padding: 0;
}

.map-placeholder {
    height: 12rem;
    background: linear-gradient(135deg, var(--muted) 0%, rgba(242, 242, 242, 0.5) 100%);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.map-text p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.map-text span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Footer */
#footer {
    background: var(--gradient-black);
    color: var(--secondary-foreground);
}

.newsletter-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .newsletter-content h3 {
        font-size: 1.875rem;
    }
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 24rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-content {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo .logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.footer-logo .logo-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-logo .logo-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.working-hours-item {
    display: flex;
    gap: 0.75rem;
}

.working-hours-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.working-hours-item div p {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.working-hours-item div span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.working-hours-item div .closed {
    margin-top: 0.5rem;
}

.social-section {
    margin-top: 1.5rem;
}

.social-section h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

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

.social-link {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.social-link:hover svg {
    color: white;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom p {
        text-align: left;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Hakkımızda sayfası için ek stiller */
.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Hakkımızda sayfası renklendirme */
.about-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 242, 242, 0.3) 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
}

.about-images .about-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s;
}

.about-images .about-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-yellow);
}