/* soz-zaman-guven.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #215020;
    --secondary-color: #ffffff;
    --accent-gold: #D4AF37;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-gradient: linear-gradient(135deg, #215020 0%, #3a7a3a 100%);
    --border-light: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Header'dan bağımsız tam genişlik */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.word {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    position: relative;
    animation: fadeInScale 1s ease-out backwards;
}

.word-1 {
    animation-delay: 0.2s;
}

.word-2 {
    animation-delay: 0.4s;
}

.word-3 {
    animation-delay: 0.6s;
}

.separator {
    color: var(--accent-gold);
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-quote {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Introduction Section */
.introduction {
    padding: 100px 0;
    background: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.lead-text .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.sub-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.emphasis-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    padding: 30px;
    background: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    text-align: left;
}

/* Three Pillars Section */
.three-pillars {
    padding: 100px 0;
    background: var(--secondary-color);
}

.pillar-item {
    margin-bottom: 100px;
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.pillar-item:nth-child(even) {
    animation: fadeInRight 1s ease-out;
}

.pillar-number {
    position: absolute;
    top: 0;
    left: -50px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(33, 80, 32, 0.1);
    line-height: 1;
}

.pillar-content {
    padding-left: 100px;
}

.pillar-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.pillar-intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.questions-list {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.q-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
}

.question-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.pillar-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 30px 0;
}

.pillar-highlight {
    padding: 30px;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    margin-top: 40px;
}

.pillar-highlight p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Time Insights */
.time-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.insight-card {
    padding: 30px;
    background: var(--secondary-color);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.insight-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Elements */
.trust-elements {
    margin: 40px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateX(10px);
    background: rgba(33, 80, 32, 0.05);
}

.trust-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Our Approach Section */
.our-approach {
    padding: 100px 0;
    background: var(--bg-light);
}

.our-approach h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 400;
}

.approach-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.flow-item {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.flow-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.flow-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.flow-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
    animation: slideRight 2s ease-in-out infinite;
}

.approach-statement {
    text-align: center;
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.approach-statement p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.statement-highlight {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Summary Section */
.summary {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7a3a 100%);
}

.summary-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--secondary-color);
}

.summary-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 50px;
    font-weight: 400;
}

.summary-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    animation: rotateIn 1s ease-out;
}

.step p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.step strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.final-message {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.final-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.warning {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: var(--accent-gold) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-50px) translateX(20px);
    }
    50% {
        transform: translateY(0) translateX(-20px);
    }
    75% {
        transform: translateY(50px) translateX(20px);
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-360deg) scale(0);
    }
    to {
        transform: rotate(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pillar-number {
        font-size: 6rem;
        left: -30px;
    }

    .pillar-content {
        padding-left: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        margin-top: -70px; /* Mobilde header daha küçük */
        padding-top: 70px;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 15px;
    }

    .separator {
        display: none;
    }

    .introduction,
    .three-pillars,
    .our-approach,
    .summary {
        padding: 60px 0;
    }

    .pillar-number {
        position: static;
        margin-bottom: 20px;
        font-size: 4rem;
        text-align: center;
    }

    .pillar-content {
        padding-left: 0;
    }

    .time-insights {
        grid-template-columns: 1fr;
    }

    .approach-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .summary-steps {
        flex-direction: column;
    }
}