/* ===================================
   ADDITIONAL PAGE STYLES
   =================================== */

/* Preloader - Logo ile */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.preloaded {
    opacity: 1;
    visibility: visible;
}

#preloader.preloaded.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preloader-logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logo_pulse 2s ease-in-out infinite;
}

.preloader-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(10, 22, 40, 0.15));
    animation: logo_fade 1.5s ease-in-out infinite;
}

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

@keyframes logo_fade {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Fallback: Logo yoksa gösterilecek animasyon */
.preloader-logo-fallback {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scales-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
}

.scale-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #8b1a1a 0%, #a71e2a 100%);
    border-radius: 2px;
    animation: scale_sway 2s ease-in-out infinite;
}

.scale-left,
.scale-right {
    position: absolute;
    top: 40px;
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #8b1a1a 0%, #a71e2a 100%);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 2px 8px rgba(139, 26, 26, 0.3);
}

.scale-left {
    left: 0;
    animation: scale_left 2s ease-in-out infinite;
}

.scale-right {
    right: 0;
    animation: scale_right 2s ease-in-out infinite;
}

@keyframes scale_sway {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) rotate(-3deg);
    }
    75% {
        transform: translateX(-50%) rotate(3deg);
    }
}

@keyframes scale_left {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

@keyframes scale_right {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.preloader-letters {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 5px;
}

.letter-g,
.letter-k {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    line-height: 1;
    animation: letter_fade 1.5s ease-in-out infinite;
}

.letter-g {
    color: #0a1628;
    animation-delay: 0s;
}

.letter-k {
    color: #8b1a1a;
    animation-delay: 0.3s;
}

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

/* Yükleniyor Metni */
.preloader-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 1px;
}

.loading-dots {
    display: inline-flex;
    gap: 3px;
}

.loading-dots .dot {
    animation: dot_bounce 1.4s ease-in-out infinite;
    font-size: 18px;
    color: var(--accent-gold);
}

.loading-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot_bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .preloader-logo-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .preloader-logo-fallback {
        width: 100px;
        height: 100px;
    }
    
    .scales-container {
        width: 70px;
        height: 50px;
    }
    
    .letter-g,
    .letter-k {
        font-size: 40px;
    }
    
    .preloader-text {
        font-size: 12px;
    }
}

/* About Detail Page */
.about-detail {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.about-image-large {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    background: var(--bg-gradient-professional);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.about-image-large:hover .about-page-image {
    transform: scale(1.05);
}

.about-image-large .image-placeholder {
    height: 520px;
    border-radius: var(--radius-xl);
}

.about-text-large h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 48px;
    color: var(--navy-deep);
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-left: 25px;
    letter-spacing: -0.5px;
}

.about-text-large h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}

.about-description p {
    margin-bottom: 25px;
    color: var(--text-medium);
    line-height: 2;
    font-size: 17px;
}

.values {
    background: var(--bg-cream);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 26, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(13, 27, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--maroon-deep) 0%, var(--steel) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: var(--shadow-intense);
    border-color: transparent;
}

.value-card i {
    font-size: 60px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.value-card:hover i {
    transform: scale(1.2) rotate(-10deg);
    color: var(--navy-deep);
}

.value-card h3 {
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    letter-spacing: -0.3px;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 15px;
}

.experience {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 42px;
    color: var(--navy-deep);
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.experience-content p {
    color: var(--text-medium);
    line-height: 2;
    font-size: 17px;
    margin-bottom: 25px;
}

/* Services Detail Page - Modern Design */
.services-detail-modern {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.services-detail-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.service-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(26, 31, 58, 0.08);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-professional);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-intense);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-gradient-professional);
}

.service-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.7) 0%, rgba(45, 53, 97, 0.5) 100%);
    transition: opacity 0.4s var(--ease-smooth);
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-modern:hover .service-card-overlay {
    opacity: 0.3;
}

.service-card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    transition: transform 0.4s var(--ease-smooth);
}

.service-card-modern:hover .service-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-smooth);
}

.service-card-modern:hover .service-card-number {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1) rotate(360deg);
}

.service-card-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    color: var(--navy-deep);
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    line-height: 1.3;
    transition: color 0.3s var(--ease-smooth);
    letter-spacing: -0.3px;
}

.service-card-modern:hover .service-card-body h3 {
    color: var(--navy);
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
    flex: 1;
}

.service-content {
    margin-top: 15px;
}

.service-content p,
.service-content-short {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 15px;
}

.service-content-full {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 15px;
    margin-top: 15px;
}

.service-toggle-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease-smooth);
    font-family: 'Poppins', sans-serif;
}

.service-toggle-btn:hover {
    color: var(--accent-gold-dark);
    gap: 12px;
}

.service-toggle-btn i {
    transition: transform 0.3s var(--ease-smooth);
}

.service-toggle-btn.active i {
    transform: rotate(180deg);
}

.service-card-footer {
    padding: 0 35px 35px;
    margin-top: auto;
}

.service-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-gradient-professional);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s var(--ease-smooth);
}

.service-contact-btn:hover::before {
    left: 100%;
}

.service-contact-btn:hover {
    background: var(--bg-gradient-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-contact-btn i {
    transition: transform 0.3s var(--ease-smooth);
}

.service-contact-btn:hover i {
    transform: translateX(5px);
}

.services-grid-empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-state {
    max-width: 500px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 80px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.empty-state h3 {
    color: var(--navy-deep);
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.empty-state p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
}

/* FAQ Section - Modern Design */
.faq-section-modern {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    position: relative;
}

.faq-empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.faq-empty-state i {
    font-size: 80px;
    color: var(--gray-light);
    margin-bottom: 30px;
    display: block;
}

.faq-empty-state h3 {
    color: var(--navy-deep);
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.faq-empty-state p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
}

.faq-container-modern {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(26, 31, 58, 0.08);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.faq-card-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--bg-gradient-professional);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease-smooth);
}

.faq-card-modern.active::before {
    transform: scaleY(1);
}

.faq-card-modern:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-card-modern.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-strong);
}

.faq-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    position: relative;
}

.faq-number {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-professional);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    border-radius: var(--radius);
    margin-left: 25px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-soft);
}

.faq-card-modern.active .faq-number {
    background: var(--bg-gradient-gold);
    transform: scale(1.1) rotate(5deg);
}

.faq-question-modern {
    flex: 1;
    padding: 25px 30px 25px 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s var(--ease-smooth);
}

.faq-question-modern:hover {
    padding-left: 10px;
}

.faq-question-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s var(--ease-smooth);
}

.faq-card-modern.active .faq-question-text {
    color: var(--navy);
}

.faq-icon {
    font-size: 18px;
    color: var(--accent-gold);
    transition: transform 0.4s var(--ease-smooth);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
}

.faq-card-modern.active .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-gold);
    color: white;
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-smooth);
    background: var(--bg-light);
}

.faq-card-modern.active .faq-answer-modern {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 105px 30px 30px;
    color: var(--text-medium);
    line-height: 2;
    font-size: 16px;
    position: relative;
}

.faq-answer-content::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
    border-radius: var(--radius-full);
}

    .faq-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-left: 15px;
    }
    
    .faq-question-modern {
        padding: 20px 20px 20px 0;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-answer-content {
        padding: 0 75px 25px 25px;
        font-size: 15px;
    }
    
    .faq-answer-content::before {
        left: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-header {
        height: 180px;
    }
    
    .service-card-body {
        padding: 25px;
    }
    
    .service-card-footer {
        padding: 0 25px 25px;
    }
}

/* Services Detail Page - Old Styles (kept for compatibility) */
.services-detail {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 45px;
    background: white;
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(13, 27, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--gray-light) 100%);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-detail-card:hover::before {
    transform: scaleY(1);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-intense);
    transform: translateX(8px);
    border-color: transparent;
}

.service-detail-icon {
    width: 130px;
    height: 130px;
    background: var(--bg-gradient-navy);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.12) rotate(-8deg);
    background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--navy-deep) 100%);
}

.service-detail-image {
    width: 130px;
    height: 130px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-image {
    transform: scale(1.12) rotate(-2deg);
    box-shadow: var(--shadow-intense);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-detail-content h3 {
    color: var(--navy-deep);
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.service-detail-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 2;
    font-size: 16px;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 15px;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 22px;
    width: 28px;
    height: 28px;
    background: rgba(123, 26, 58, 0.12);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Contact Page */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    color: var(--navy-deep);
    margin-bottom: 25px;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 2;
    font-size: 16px;
}

.contact-item-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: var(--bg-gradient-navy);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.contact-text h4 {
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.contact-text p,
.contact-text a {
    color: var(--text-medium);
    text-decoration: none;
    line-height: 1.9;
    font-size: 15px;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--accent-gold);
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.contact-social .social-link {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-navy);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 4px 15px rgba(10, 22, 40, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.contact-social .social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.contact-social .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.25);
    border-color: var(--accent-gold);
}

.contact-social .social-link:hover::before {
    opacity: 1;
}

.contact-social .social-link:hover i {
    color: var(--navy-deep);
    transform: rotate(360deg) scale(1.2);
}

/* LinkedIn özel rengi */
.contact-social .social-link[href*="linkedin"]:hover {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    border-color: #0077b5;
}

.contact-social .social-link[href*="linkedin"]:hover::before {
    opacity: 0;
}

.contact-social .social-link[href*="linkedin"]:hover i {
    color: white;
}

/* Instagram özel rengi */
.contact-social .social-link[href*="instagram"]:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-color: #833ab4;
}

.contact-social .social-link[href*="instagram"]:hover::before {
    opacity: 0;
}

.contact-social .social-link[href*="instagram"]:hover i {
    color: white;
}

.contact-form-wrapper {
    background: var(--bg-cream);
    padding: 55px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.contact-form-wrapper h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    color: var(--navy-deep);
    margin-bottom: 30px;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 14px;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid rgba(13, 27, 42, 0.1);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(123, 26, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-cream);
}

.map-section h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    margin-bottom: 40px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-intense);
    border: 1px solid rgba(13, 27, 42, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 520px;
}

/* Blog Styles */
.blog-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(13, 27, 42, 0.06);
}

.blog-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: var(--shadow-intense);
    border-color: transparent;
}

.blog-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--bg-gradient-navy);
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-image-placeholder {
    width: 100%;
    height: 260px;
    background: var(--bg-gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 85px;
}

.blog-content {
    padding: 38px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.blog-date i {
    color: var(--accent-gold);
    font-size: 15px;
}

.blog-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    letter-spacing: -0.3px;
}

.blog-title a {
    color: var(--navy-deep);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--accent-gold);
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 25px;
    flex: 1;
    font-size: 15px;
}

.blog-read-more {
    color: var(--navy-deep);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: auto;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more:hover {
    gap: 15px;
    color: var(--accent-gold);
}

.blog-read-more i {
    font-size: 13px;
    transition: var(--transition);
}

.no-posts {
    text-align: center;
    padding: 120px 20px;
}

.no-posts i {
    font-size: 110px;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.2;
}

.no-posts h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-size: 40px;
}

.no-posts p {
    color: var(--text-medium);
    font-size: 17px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 12px 24px;
    background: white;
    color: var(--navy-deep);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid rgba(13, 27, 42, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.pagination-btn:hover {
    background: var(--navy-deep);
    color: white;
    border-color: var(--navy-deep);
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--navy-deep);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid rgba(13, 27, 42, 0.1);
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
}

.pagination-number:hover {
    background: var(--navy-deep);
    color: white;
    border-color: var(--navy-deep);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--bg-gradient-navy);
    color: white;
    border-color: var(--navy-deep);
}

/* Blog Detail */
.blog-detail-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-cream);
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.blog-detail-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 55px;
    box-shadow: var(--shadow-medium);
}

.blog-detail-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-cream);
    font-size: 14px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-detail-date,
.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.blog-detail-date i,
.blog-detail-author i {
    color: var(--accent-gold);
    font-size: 17px;
}

.blog-detail-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-text {
    line-height: 2;
    color: var(--text-charcoal);
}

.blog-detail-excerpt {
    font-size: 22px;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-cream);
    border-left: 5px solid var(--accent-gold);
    border-radius: var(--radius);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.blog-detail-body {
    font-size: 17px;
    line-height: 2;
    color: var(--text-charcoal);
}

.blog-detail-body p {
    margin-bottom: 25px;
}

.blog-detail-footer {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 2px solid var(--bg-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-share span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
}

.share-icon {
    width: 46px;
    height: 46px;
    background: var(--bg-cream);
    color: var(--navy-deep);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(13, 27, 42, 0.1);
}

.share-icon:hover {
    background: var(--bg-gradient-navy);
    color: white;
    border-color: var(--navy-deep);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    padding: 45px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(13, 27, 42, 0.06);
}

.sidebar-widget h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-cream);
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--bg-cream);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    text-decoration: none;
    color: var(--navy-deep);
    transition: var(--transition);
    display: block;
}

.recent-posts a:hover {
    color: var(--accent-gold);
}

.recent-posts h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.recent-date {
    font-size: 13px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-gradient-navy);
    color: white;
    padding: var(--space-3xl) 0 var(--space-md);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-gold);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(123, 26, 58, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(119, 141, 169, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-list i {
    color: var(--accent-gold);
    margin-top: 5px;
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(123, 26, 58, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    font-size: 13px;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .about-main,
    .blog-detail-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detail-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-content {
        padding: 35px;
    }
    
    .blog-detail-image {
        height: 320px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
    
    .contact-item-detail {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        flex-shrink: 0;
    }
    
    .contact-text {
        flex: 1;
    }
    
    .contact-text h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .contact-text p,
    .contact-text a {
        font-size: 13px;
        line-height: 1.6;
    }
}

