/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Elements */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -2;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
    z-index: 9999 !important;
    position: relative;
}

.lang-btn {
    background: rgba(255, 215, 0, 0.1) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    color: #888 !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    pointer-events: auto !important;
    user-select: none !important;
    z-index: 9999 !important;
    position: relative !important;
    outline: none !important;
    min-width: 50px !important;
    justify-content: center !important;
}

.flag-icon {
    width: 16px !important;
    height: 12px !important;
    border-radius: 2px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.lang-btn:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
    color: #ffd700 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2) !important;
}

.lang-btn.active {
    background: rgba(255, 215, 0, 0.2) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    color: #ffd700 !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3) !important;
}

/* Main Container */
.main-container {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 0px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffd700, #ffc107);
    color: #000;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    max-width: 400px;
    width: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.card-dots span:nth-child(1) {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:nth-child(3) {
    background: #28ca42;
}

.card-title {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
}

.card-content {
    min-height: 60px;
}

.code-line {
    margin-bottom: 12px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    color: #f8f8f2;
    line-height: 1.5;
}

.code-keyword {
    color: #ff79c6;
}

.code-variable {
    color: #50fa7b;
}

.code-operator {
    color: #ff79c6;
}

.code-string {
    color: #f1fa8c;
}

.code-method {
    color: #8be9fd;
}

.code-bracket {
    color: #f8f8f2;
}

/* Typewriter cursor effect */
.cursor {
    color: #ffd700;
    animation: blink 1s infinite;
    font-weight: normal;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Section Styles */
.about-section,
.portfolio-section,
.contact-section {
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    font-size: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 20px;
}

.skills-grid {
    display: grid;
    gap: 30px;
}

.skill-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.skill-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.skill-item h3 {
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 600;
}

.skill-item p {
    color: #aaa;
    font-size: 14px;
}

/* Portfolio Section */
.portfolio-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.portfolio-image {
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image::before {
    transform: translateX(100%);
}

.placeholder-graphic {
    font-size: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.portfolio-item:hover .placeholder-graphic {
    transform: scale(1.1);
    opacity: 1;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #aaa;
    font-size: 14px;
    line-height: 8;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(84%) saturate(2498%) hue-rotate(18deg) brightness(104%) contrast(101%);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details span {
    color: #aaa;
    font-size: 14px;
}

.contact-arrow {
    color: #ffd700;
    font-size: 20px;
    font-weight: 600;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.contact-form-container h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffd700;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ffd700, #ffc107);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    padding: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left {
        gap: 30px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 12px 20px;
    }
    
    .nav-brand {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }
    
    .language-switcher {
        display: flex !important;
        position: absolute !important;
        top: 50% !important;
        right: 15px !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
        margin-left: 0 !important;
    }
    
    .lang-btn {
        padding: 4px 6px !important;
        font-size: 9px !important;
        min-width: 38px !important;
        gap: 2px !important;
        border-radius: 4px !important;
    }
    
    .flag-icon {
        width: 12px !important;
        height: 9px !important;
    }
    
    /* Main Container Mobile */
    .main-container {
        padding-top: 60px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        padding: 0 20px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .section-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .skill-item {
        padding: 20px 16px;
        text-align: center;
    }
    
    .skill-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .skill-item h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .skill-item p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Portfolio Section Mobile */
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-content {
        padding: 0 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .portfolio-item {
        border-radius: 10px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-info {
        padding: 16px;
    }
    
    .portfolio-info h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .portfolio-info p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-left {
        text-align: center;
        gap: 25px;
    }
    
    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .contact-info p {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-card {
        padding: 20px 16px;
        text-align: center;
    }
    
    .contact-card h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .contact-right {
        max-width: 100%;
    }
    
    .contact-form-container {
        padding: 20px 16px;
    }
    
    .contact-form-container h3 {
        font-size: 20px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .checkbox-container {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .form-submit {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 6px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 25px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-left span {
        font-size: 13px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-right span {
        font-size: 13px;
    }

    .hero-section,
    .about-section,
    .portfolio-section,
    .contact-section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-cta {
        justify-content: center;
    }

    .cta-button {
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 10px;
    }

    .visual-card {
        margin: 0 20px;
    }

    .contact-card {
        padding: 20px;
    }
}
/* Blo
g Sayfası Stilleri */
.blog-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.blog-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
}

.blog-subtitle {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 25px 25px 70px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 380px;
    max-height: 380px;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    min-width: 0;
    position: relative;
    isolation: isolate;
}

.blog-card > * {
    position: relative;
    z-index: 2;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.blog-date {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    hyphens: auto;
}

.blog-excerpt {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 15px;
    word-break: break-word;
    hyphens: auto;
    max-height: 67px;
}

/* Blog kartlarında sadece belirli elementlerin görünmesi */
.blog-card * {
    position: relative;
    z-index: 1;
}

.blog-card .post-content,
.blog-card .post-header,
.blog-card .modal-body,
.blog-card .blog-interactions,
.blog-card .comments-section,
.blog-card .comment-form,
.blog-card .action-btn,
.blog-card h2:not(.blog-card-title),
.blog-card h3:not(.blog-card-title),
.blog-card blockquote,
.blog-card ul:not(.blog-tags),
.blog-card ol,
.blog-card .post-stats:not(.blog-meta),
.blog-card .post-tag:not(.blog-tag) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    min-height: 32px;
    align-items: flex-start;
    overflow: hidden;
}

.blog-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    flex-shrink: 0;
}

.read-more {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.coming-soon {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.coming-soon-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.coming-soon-text {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 0 40px;
    }
    
    .blog-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .blog-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .blog-container {
        padding: 0 20px;
    }
    
    .blog-search {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .search-input {
        padding: 12px 40px 12px 14px;
        font-size: 15px;
    }
    
    .search-icon {
        left: 12px;
        width: 18px;
        height: 18px;
    }
    
    .search-clear {
        right: 12px;
        width: 20px;
        height: 20px;
    }
    
    .search-results-info {
        margin-top: 12px;
        font-size: 13px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }
    
    .blog-card {
        padding: 16px;
        min-height: auto;
    }
    
    .blog-date {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .blog-card-title {
        font-size: 17px;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
    }
    
    .blog-tags {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .blog-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .read-more {
        font-size: 13px;
        gap: 6px;
    }
    
    .blog-tag {
        font-size: 10px;
        padding: 3px 8px;
        max-width: 80px;
    }
    

    
    .read-more {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .coming-soon {
        padding: 60px 20px;
    }
    
    .coming-soon-title {
        font-size: 24px;
    }
    
    .coming-soon-text {
        font-size: 16px;
    }
}/*
 Blog Modal Stilleri */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: auto;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
}

.blog-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.modal-close {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ff6b6b;
    color: #fff;
    transform: scale(1.1);
}

.modal-body {
    padding: 0 40px 40px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Modal içindeki post stilleri */
.modal-body .post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.modal-body .post-date {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-body .post-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-body .post-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-body .post-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.modal-body .post-content {
    line-height: 1.8;
}

.modal-body .post-content h2 {
    color: #ffd700;
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.modal-body .post-content h3 {
    color: #fff;
    font-size: 20px;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.modal-body .post-content p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 16px;
}

.modal-body .post-content ul, 
.modal-body .post-content ol {
    color: #ccc;
    margin: 16px 0;
    padding-left: 25px;
}

.modal-body .post-content li {
    margin-bottom: 8px;
}

.modal-body .post-content blockquote {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-style: italic;
    color: #fff;
}

.modal-body .post-content strong {
    color: #ffd700;
    font-weight: 600;
}

/* Read more buton stilini güncelle */
.read-more {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
}

.read-more:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 0 25px 30px;
    }
    
    .modal-body .post-title {
        font-size: 28px;
    }
    
    .modal-body .post-content h2 {
        font-size: 22px;
    }
    
    .modal-body .post-content h3 {
        font-size: 18px;
    }
}



.blog-interactions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.comments-section {
    margin-top: 40px;
}

.comments-section h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.comment-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.comment-form h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.comment-form textarea {
    min-height: 100px;
    resize: vertical;
    grid-column: 1 / -1;
}

.submit-comment {
    background: linear-gradient(135deg, #ffd700, #ffc107);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.comments-list {
    max-height: 400px;
    overflow-y: auto;
}

.comment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header strong {
    color: #ffd700;
    font-size: 16px;
}

.comment-date {
    color: #888;
    font-size: 12px;
}

.comment-text {
    color: #ccc;
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: #888;
    padding: 40px;
    font-style: italic;
}

.loading, .error, .no-posts {
    text-align: center;
    color: #888;
    padding: 40px;
    font-size: 18px;
}

.error {
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    

    
    .comment-form {
        padding: 20px;
    }
}/* Portfo
lio Item Hover Effects */
.portfolio-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    color: #ffd700;
    font-weight: 600;
    font-size: 16px;
}

/* Portfolio Loading */
.portfolio-loading {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.loading-spinner {
    font-size: 48px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Portfolio Placeholder */
.portfolio-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.portfolio-placeholder h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 24px;
}

.coming-soon {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 20px auto;
    max-width: 400px;
}

.coming-soon span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.coming-soon p {
    color: #ffd700;
    font-weight: 500;
    margin: 0 0 10px 0;
}

/* Portfolio Error */
.portfolio-error {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
}

.portfolio-error span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.portfolio-error p {
    margin: 0 0 10px 0;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-item-overlay p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.view-icon {
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Gallery Grid */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
}

.portfolio-modal-content {
    position: relative;
    width: 98%;
    max-width: 1600px;
    max-height: 95vh;
    min-height: 80vh;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
}

.portfolio-modal.active .portfolio-modal-content {
    transform: scale(1) translateY(0);
}

.portfolio-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.portfolio-modal-header h2 {
    color: #ffd700;
    font-size: 24px;
    font-weight: 700;
}

.portfolio-modal-body {
    padding: 40px;
    max-height: calc(95vh - 100px);
    min-height: calc(80vh - 100px);
    overflow-y: auto;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-item-overlay p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

/* Image Viewer Modal */
.image-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-viewer-modal.active {
    display: flex;
    opacity: 1;
}

.image-viewer-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-viewer-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-viewer-close:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(1.1);
}

.image-viewer-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-viewer-info {
    text-align: center;
    margin-top: 20px;
    max-width: 600px;
}

.image-viewer-info h3 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.image-viewer-info p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-modal-content {
        width: 98%;
        margin: 5px;
        max-height: 98vh;
        min-height: 90vh;
    }
    
    .portfolio-modal-header {
        padding: 20px;
    }
    
    .portfolio-modal-body {
        padding: 20px;
        max-height: calc(98vh - 80px);
        min-height: calc(90vh - 80px);
    }
    
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 5px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .image-viewer-content img {
        max-height: 60vh;
    }
    
    .image-viewer-close {
        top: -40px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}/* Blog
 Preview Section */
.blog-preview-section {
    padding: 120px 0;
    position: relative;
}

.blog-preview-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.blog-preview-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-preview-description {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 40px;
}

.blog-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-preview-cta {
    margin-top: 20px;
}

.blog-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

.preview-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.card-icon {
    font-size: 24px;
}

.card-title {
    color: #ffd700;
    font-weight: 600;
    font-size: 18px;
}

.preview-card-content {
    margin-bottom: 20px;
}

.preview-post {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-post:last-child {
    border-bottom: none;
}

.preview-post-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.preview-post-title {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.preview-post-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.preview-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.preview-card-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.preview-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.preview-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-preview-content {
        gap: 60px;
    }
    
    .blog-preview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .blog-preview-section {
        padding: 80px 20px;
    }
    
    .blog-preview-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .blog-preview-title {
        font-size: 36px;
    }
    
    .blog-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .blog-preview-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .blog-preview-title {
        font-size: 28px;
    }
    
    .blog-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .blog-preview-card {
        padding: 20px;
    }
}
/* F
AQ Section */
.faq-section {
    padding: 120px 0;
    position: relative;
}

.faq-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 500px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    color: #ffd700;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}/* En
hanced Contact Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group select {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}



/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-top: 8px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-text {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.4;
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    

}/* Bl
og Search Styles */
.blog-search {
    margin-bottom: 40px;
    padding: 0 20px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-icon {
    color: #a0a0a0;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 0;
    font-family: inherit;
}

.search-input::placeholder {
    color: #a0a0a0;
}

.search-clear {
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.search-clear:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.search-results-info {
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffd700;
    font-size: 14px;
}

/* Search Highlighting */
.search-highlight {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* Blog Search Responsive */
@media (max-width: 768px) {
    .blog-search {
        padding: 0 10px;
    }
    
    .search-input-wrapper {
        padding: 0 16px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 14px 0;
    }
}/* Soc
ial Share Buttons */
.social-share {
    margin: 30px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.share-label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 16px;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.4);
    color: #1da1f2;
}

.share-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
    color: #1877f2;
}

.share-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
    color: #0077b5;
}

.share-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.share-btn.copy-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn span {
    white-space: nowrap;
}

/* Copy Success Animation */
.share-btn.copied {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    color: #22c55e !important;
}

.share-btn.copied span::after {
    content: " ✓";
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Social Share Responsive */
@media (max-width: 768px) {
    .social-share {
        margin: 20px 0;
        padding: 20px;
    }
    
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn {
        min-width: 44px;
        justify-content: center;
    }
}/* Bl
og Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-date {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-tag {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: #ffd700;
    font-weight: 500;
}

.blog-card-btn {
    background: none;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.blog-card-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

/* Blog Cards Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .blog-card {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
}