@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype');
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.nav-logo h1 {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.loading-logo{
    font-family: serif !important;
}
.logo-accent {
    color: #fbbf24;
}

.logo-image{max-height:75px;}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-mobile-btn {
    display: none;
}

.nav-mobile-btn button {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.nav-mobile-btn button:hover {
    color: #fbbf24;
}

.nav-mobile-menu {
    display: none;
    padding: 16px 24px 32px;
    background: rgba(0, 0, 0, 0.98);
}

.nav-mobile-menu.active {
    display: block;
}

.nav-mobile-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 24px 0;
    transition: color 0.3s ease;
}

.nav-mobile-link:hover {
    color: #fbbf24;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 4.5rem; /* 6rem'den %25 küçültüldü (1024px ve üzeri için geçerli) */
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 32px;
}

.title-accent {
    color: #fbbf24;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 48px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn i {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(8px);
}

.btn-primary {
    background: #fbbf24;
    color: black;
}

.btn-primary:hover {
    background: white;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.btn-secondary i {
    margin-right: 12px;
    margin-left: 0;
}

.btn-dark {
    background: black;
    color: white;
}

.btn-dark:hover {
    background: #fbbf24;
    color: black;
}

.btn-full {
    width: 100%;
}

.btn-contact {
    padding: 24px 32px;
}

/* Hero Stats */
.hero-stats {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-item {
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-primary {
    background: rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(16px);
}

.stat-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 20;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fbbf24;
    transform: scale(1.25);
}

/* Section Styles */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: #fbbf24;
    color: black;
    padding: 8px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.section-badge-dark {
    background: black;
    color: #fbbf24;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 32px;
    line-height: 1.1;
}

.section-title-dark {
    color: black;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d1d5db;
    margin-top: 16px;
    font-style: italic;
}

.text-accent {
    color: #fbbf24;
}

/* About Section */
.about {
    /* background: linear-gradient(135deg, #111827 0%, #000000 50%, #111827 100%); */
    background: #ffffff; /* White background */
}

.about .section-title {
    color: #1f2937; /* Dark gray for title */
}

.about .section-badge {
    background: #fbbf24; /* Keep accent color for badge */
    color: black;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-lead {
    font-size: 24px;
    /* color: #d1d5db; */
    color: #374151; /* Darker gray for lead text */
    margin-bottom: 32px;
    line-height: 1.4;
}

.about-text {
    font-size: 18px;
    /* color: #9ca3af; */
    color: #4b5563; /* Medium-dark gray for body text */
    margin-bottom: 48px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Keep two columns for features */
    gap: 24px;
}

.about .feature-item { /* Specificity for about section feature items */
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    /* background: rgba(255, 255, 255, 0.05); */
    /* backdrop-filter: blur(16px); */
    background: #f9fafb; /* Light gray background for items */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border: 1px solid #e5e7eb; /* Light border */
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about .feature-item:hover {
    /* background: rgba(251, 191, 36, 0.1); */
    /* border-color: rgba(251, 191, 36, 0.3); */
    background: #f3f4f6; /* Slightly darker gray on hover */
    border-color: #d1d5db; /* Darker border on hover */
    transform: translateY(-4px);
}

.about .feature-item i { /* Specificity for about section feature items */
    color: #fbbf24; /* Keep accent color for icons */
    font-size: 24px;
    /* background: rgba(251, 191, 36, 0.2); */
    background: #fef3c7; /* Lighter accent background for icons */
    padding: 12px;
    border-radius: 8px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .feature-item span { /* Specificity for about section feature items */
    /* color: white; */
    color: #1f2937; /* Dark gray for feature text */
    font-weight: 600;
    font-size: 16px;
}

/* Completed Projects Section */
.completed-projects {
    background: #f9fafb; /* Açık gri bir arka plan */
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.project-reverse .project-image {
    order: 2;
}

.project-reverse .project-content {
    order: 1;
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: black;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.project-number {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fbbf24;
    color: black;
    padding: 16px;
    font-weight: 700;
    font-size: 18px;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.project-item:hover .project-title {
    color: #fbbf24;
}

.project-description {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.project-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #4b5563;
}

.project-detail i {
    color: #fbbf24;
    font-size: 20px;
}

.project-detail span {
    font-weight: 600;
}

/* Current Projects Section */
.current-projects {
    background: linear-gradient(135deg, #111827 0%, #000000 50%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.current-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(251,191,36,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.current-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Sol Sütun */
.current-project-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.current-project-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4/3;
    transition: all 0.5s ease;
}

.current-project-image:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

.current-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.current-project:hover .current-project-image img {
    transform: scale(1.1);
}

.current-project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251,191,36,0.1) 0%, transparent 50%, rgba(251,191,36,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.current-project:hover .current-project-image::after {
    opacity: 1;
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Fiyat Bilgileri */
.project-price-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(8px);
}

.price-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    border-color: transparent;
}

.price-highlight:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateX(8px) scale(1.02);
}

.price-icon {
    background: rgba(251, 191, 36, 0.2);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-highlight .price-icon {
    background: rgba(0, 0, 0, 0.2);
}

.price-icon i {
    font-size: 20px;
    color: #fbbf24;
}

.price-highlight .price-icon i {
    color: black;
}

.price-value {
    font-size: 18px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.price-highlight .price-value {
    color: black;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

.price-highlight .price-label {
    color: rgba(0, 0, 0, 0.7);
}

/* İstatistikler */
.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    transform: translateY(-4px);
}

.project-stats .stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

/* Sağ Sütun */
.current-project-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.current-project-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.current-project-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fbbf24;
    margin-bottom: 24px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.current-project-location i {
    font-size: 18px;
    background: rgba(251, 191, 36, 0.1);
    padding: 8px;
    border-radius: 6px;
}

.current-project-location span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.current-project-description {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.current-project-features {
    margin-bottom: 32px;
}

.features-title {
    font-size: 18px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fbbf24;
    display: inline-block;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.current-project-features .feature-item {
    display: flex;
    align-items: center;
    color: white;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.current-project-features .feature-item:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(4px);
}

.feature-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 8px;
    margin-right: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: black;
    font-size: 14px;
}

.current-project-features .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    transform: scale(1.1);
}

.current-project-features .feature-item span {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* CTA Alanı */
.project-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center !important;
}

.contact-info {
    text-align: left;
    margin-top: 16px;
    color: #d1d5db;
    font-size: 14px;
}

.phone-cta {
    text-align: center !important;
    display: block;
    width: 100%;
}

.contact-info strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 900;
    color: black;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
}

.contact-icon {
    background: black;
    padding: 16px;
    transition: background 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #fbbf24;
}

.contact-icon i {
    color: #fbbf24;
    font-size: 24px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: black;
}

.contact-details {
    text-align: left;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 900;
    color: black;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-desc {
    color: #6b7280;
    font-weight: 600;
}

.contact-form {
    background: black;
    padding: 32px;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    background: white;
    border: none;
    color: black;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 4px solid #fbbf24;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
    font-weight: 700;
}

.form-group textarea {
    resize: none;
    font-family: 'Inter', sans-serif;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #111827 50%, #000000 100%);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0;
}

.footer-logo {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 32px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 48px;
}

.newsletter h4 {
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 32px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: white;
    border: none;
    color: black;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.newsletter-form button {
    background: #fbbf24;
    color: black;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fbbf24;
    color: black;
}

.social-link i {
    font-size: 24px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateX(8px);
}

.footer-links a::before {
    content: '→';
    margin-right: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item strong {
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
}

.footer-contact-item p {
    color: #d1d5db;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-bottom-content p {
    margin: 0;
}

.footer-bottom p {
    color: #6b7280;
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fbbf24;
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 96px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #fbbf24;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Company Story Section */
.company-story {
    padding: 120px 0;
    background: #f8fafc;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .section-badge {
    margin-bottom: 24px;
}

.story-text {
    margin-top: 32px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.7;
}

.story-text p {
    margin-bottom: 20px;
    color: #6b7280;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(251, 191, 36, 0.95);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.value-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.value-description {
    color: #6b7280;
    line-height: 1.7;
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    overflow: hidden;
}

.statistics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/slayt4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Vision Mission Section */
.vision-mission {
    padding: 120px 0;
    background: #f8fafc;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.vm-card {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 32px;
}

.vm-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.vm-description {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Section */
.team-section {
    padding: 120px 0;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.team-feature {
    text-align: center;
    padding: 32px 24px;
}

.team-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fbbf24;
}

.team-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.team-feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: #f8fafc;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.choose-reasons {
    margin-top: 40px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.reason-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.1rem;
}

.reason-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.reason-content p {
    color: #6b7280;
    line-height: 1.6;
}

.choose-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/slayt1.webp');
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85), rgba(17, 24, 39, 0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.cta-phone i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

/* Villa İnci Sayfası Stilleri */
.project-overview {
    padding: 120px 0;
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.overview-image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.project-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(251, 191, 36, 0.95);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #fbbf24;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.project-stats-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-box-large {
    text-align: center;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-box-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 32px;
    color: #fbbf24;
    margin-bottom: 16px;
}

.overview-location {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.overview-location i {
    color: #fbbf24;
    margin-right: 12px;
    font-size: 24px;
}

.overview-description {
    margin-bottom: 32px;
}

.overview-description p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.price-info-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1f2937;
    padding: 24px;
    border-radius: 12px;
    color: white;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.price-contact {
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Project Features Section */
.project-features {
    padding: 60px 0;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-desc {
    color: #6b7280;
    line-height: 1.6;
}

/* Floor Plans Section */
.floor-plans {
    padding: 120px 0;
    background: #f8fafc;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.plan-tab,
.plan-tab-b {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-tab.active,
.plan-tab-b.active {
    background: #fbbf24;
    color: white;
    border-color: #fbbf24;
}

.plan-item {
    display: none;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.plan-item.active {
    display: grid;
}

.plan-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #4b5563;
    font-size: 17px;
}

.plan-features i {
    color: #fbbf24;
    margin-right: 12px;
}

/* Gallery Section */
.project-gallery {
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-caption {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Location Section */
.project-location {
    padding: 120px 0;
    background: #f8fafc;
}

.location-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 60px;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.location-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.location-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 16px;
    flex-shrink: 0;
}

.location-info h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.location-info p {
    color: #6b7280;
    margin: 0;
}

/* Project CTA Section */
.project-cta {
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95)), url('../images/galeri-villa-inci/01.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.cta-phone i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

/* Telefon çağrısı için özel sınıf */
.phone-cta {
    text-align: center !important;
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-btn {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-stats {
        display: block; /* Tablette görünür kalabilir */
    }
    
    .hero-title {
        font-size: 4rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .project-item {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .project-reverse .project-image,
    .project-reverse .project-content {
        order: initial;
    }
      .current-project {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .current-project-image {
        transform: none;
        border-radius: 8px;
    }
    
    .current-project-image:hover {
        transform: scale(1.02);
    }
    
    .current-project-image img {
        height: 300px;
    }
    
    .current-project-content {
        padding: 24px;
    }    
    .current-project-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .current-project-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-content {
        height: 80px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
      .current-project-title {
        font-size: 2.5rem;
    }
    
    .current-project-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .project-info-item {
        padding: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .project-title,
    .current-project-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat-item {
        padding: 24px;
    }

    .hero-stats {
        display: none; /* Tekrar gizlendiğinden emin ol */
    }

    .hero-content {
        padding-top: 80px; /* Mobil navigasyon yüksekliğine göre ayarla */
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 96px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #fbbf24;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Company Story Section */
.company-story {
    padding: 120px 0;
    background: #f8fafc;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .section-badge {
    margin-bottom: 24px;
}

.story-text {
    margin-top: 32px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.7;
}

.story-text p {
    margin-bottom: 20px;
    color: #6b7280;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(251, 191, 36, 0.95);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.value-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.value-description {
    color: #6b7280;
    line-height: 1.7;
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    overflow: hidden;
}

.statistics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/slayt4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 150%;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Vision Mission Section */
.vision-mission {
    padding: 120px 0;
    background: #f8fafc;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.vm-card {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 32px;
}

.vm-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.vm-description {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Section */
.team-section {
    padding: 120px 0;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.team-feature {
    text-align: center;
    padding: 32px 24px;
}

.team-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fbbf24;
}

.team-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.team-feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: #f8fafc;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.choose-reasons {
    margin-top: 40px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.reason-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.1rem;
}

.reason-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.reason-content p {
    color: #6b7280;
    line-height: 1.6;
}

.choose-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/slayt1.webp');
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85), rgba(17, 24, 39, 0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.cta-phone i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

/* Villa İnci Sayfası Stilleri */
.project-overview {
    padding: 20px 0;
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.overview-image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.project-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(251, 191, 36, 0.95);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #fbbf24;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.project-stats-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-box-large {
    text-align: center;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-box-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 32px;
    color: #fbbf24;
    margin-bottom: 16px;
}

.overview-location {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.overview-location i {
    color: #fbbf24;
    margin-right: 12px;
    font-size: 24px;
}

.overview-description {
    margin-bottom: 32px;
}

.overview-description p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.price-info-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1f2937;
    padding: 24px;
    border-radius: 12px;
    color: white;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.price-contact {
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .story-grid,
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .company-story,
    .values-section,
    .vision-mission,
    .team-section,
    .why-choose,
    .cta-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .story-img,
    .choose-img {
        height: 300px;
    }
    
    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 16px;
    }
    
    .experience-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-features {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .vm-card {
        padding: 32px 24px;
    }
}
