/* Akustik Danışmanlık Page Styles */

/* CSS Variables */
:root {
    --primary: #002290;
    --primary-dark: #001a6b;
    --primary-light: #0033cc;
    --secondary: #ff6b35;
    --accent: #4ade80;
    --success: #25d366;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #ff8c5a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Content */
.main-content {
    padding-top: 140px; /* Header + Navigation için uygun boşluk */
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--light-gray);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 34, 144, 0.05);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb span {
    color: var(--gray);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title .subtitle {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature-item i {
    color: var(--accent);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 34, 144, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 34, 144, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 3px solid #002290 !important;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 34, 144, 0.3);
    background: var(--gradient-primary);
    color: var(--white);
    border: 3px solid #002290 !important;
}

.arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .arrow {
    transform: translateY(5px);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #ddd;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary);
}

.image-placeholder span {
    font-size: 16px;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

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

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--dark);
}

.section-title i {
    color: var(--primary);
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fit, 380px);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0, 34, 144, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    flex: 1;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    display: block;
}

.services-title .subtitle {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
    margin-top: 10px;
}

.services-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.services-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.services-image {
    position: relative;
}

.services-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.services-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.services-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.services-image .image-placeholder {
    height: 400px;
}

/* Architectural Section */
.architectural-section {
    padding: 80px 0;
    background: var(--white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.architectural-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.architectural-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.architectural-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.architectural-image {
    position: relative;
}

.architectural-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.architectural-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.architectural-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.architectural-image .image-placeholder {
    height: 400px;
}

/* Analysis Section */
.analysis-section {
    padding: 80px 0;
    background: var(--light-gray);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.analysis-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.analysis-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.analysis-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.analysis-image {
    position: relative;
}

.analysis-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.analysis-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.analysis-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.analysis-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Evaluation Section */
.evaluation-section {
    padding: 80px 0;
    background: var(--white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.evaluation-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.evaluation-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.evaluation-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.evaluation-image {
    position: relative;
}

.evaluation-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.evaluation-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.evaluation-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.evaluation-image .image-placeholder {
    height: 400px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content,
    .services-content,
    .architectural-content,
    .analysis-content,
    .evaluation-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .services-content,
    .architectural-content,
    .analysis-content,
    .evaluation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title .subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .process-section,
    .services-section,
    .architectural-section,
    .analysis-section,
    .evaluation-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .services-title,
    .architectural-title,
    .analysis-title,
    .evaluation-title {
        font-size: 24px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }
    
    .process-step {
        padding: 25px;
        height: auto;
        min-height: auto;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    .services-image .image-wrapper,
    .architectural-image .image-wrapper,
    .analysis-image .image-wrapper,
    .evaluation-image .image-wrapper {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content,
    .services-content,
    .architectural-content,
    .analysis-content,
    .evaluation-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title .subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .services-title,
    .architectural-title,
    .analysis-title,
    .evaluation-title {
        font-size: 22px;
    }
    
    .services-title .subtitle {
        font-size: 16px;
    }
    
    .services-description,
    .architectural-description,
    .analysis-description,
    .evaluation-description {
        font-size: 15px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .image-wrapper {
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 36px;
    }
    
    .image-placeholder span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title .subtitle {
        font-size: 14px;
    }
    
    .process-section,
    .services-section,
    .architectural-section,
    .analysis-section,
    .evaluation-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .services-title,
    .architectural-title,
    .analysis-title,
    .evaluation-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .image-wrapper {
        height: 180px;
    }
    
    .image-placeholder i {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .image-placeholder span {
        font-size: 12px;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.breadcrumb a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-shapes,
    .hero-bg {
        display: none;
    }
    
    .hero-section,
    .process-section,
    .services-section,
    .architectural-section,
    .analysis-section,
    .evaluation-section {
        padding: 20px 0;
    }
    
    .btn {
        display: none;
    }
}
