/* ===============================================
   DM GROUP MK - UNIFIED CSS STYLESHEET
   ===============================================
   This file contains all CSS for the entire website
   Sections are organized by page and feature
   
   PAGES USING THIS CSS:
   - index.html (HOME - Landing Page)
   - about.html (ABOUT)
   - contact.html (CONTACT - Forms)
   - blog.html (BLOG - News List)
   - blog-detail.html (BLOG DETAIL)
   - basvur.html (APPLICATION - Multi-step forms)
   - danisman.html (CONSULTANT - Multi-step forms)
   - terms.html (LEGAL)
   - privacy.html (LEGAL)
   - cookies.html (LEGAL)
   =============================================== */

/* ===============================================
   GLOBAL STYLES (All Pages)
   =============================================== */

:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --dark: #1e293b;
    --light: #f1f5f9;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    min-height: 100vh;
}

/* ===============================================
   GRADIENT UTILITIES (All Pages)
   =============================================== */

.gradient-bg {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
}

.dark-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.card-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.accent-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

/* ===============================================
   HEADER STYLES (All Pages)
   =============================================== */

.header-gradient {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo-text {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

/* Navigation Links - All Pages */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    width: 100%;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
}

/* Mobile Menu - All Pages */
/* Mobil menü tam ekran kaplama */


/* Dropdown Menu - All Pages */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===============================================
   GLASS & EFFECT STYLES (All Pages)
   =============================================== */

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===============================================
   BUTTON STYLES (All Pages)
   =============================================== */

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: all 0.6s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-accent::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: all 0.6s;
}

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

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

/* ===============================================
   CARD STYLES
   ===============================================
   USED ON:
   - index.html: Service cards, news cards
   - about.html: Team cards, benefit cards
   - blog.html: Blog article cards
   - contact.html: Information cards
   - All pages with grid layouts
   =============================================== */

.service-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ===============================================
   NEWS CARDS
   ===============================================
   USED ON:
   - index.html: News carousel section
   - blog.html: Blog articles list
   =============================================== */

.news-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ===============================================
   APPLICATION CARDS
   ===============================================
   USED ON:
   - basvur.html: Application form cards
   - danisman.html: Consultant form cards
   =============================================== */

.application-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

/* ===============================================
   SECTION TITLES
   ===============================================
   USED ON:
   - index.html: Section headings
   - about.html: Section headings
   - blog.html: Section headings
   - contact.html: Section headings
   - All pages with major sections
   =============================================== */

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

/* ===============================================
   FORM STYLES
   ===============================================
   USED ON:
   - index.html: Consultation form section
   - contact.html: Contact form
   - basvur.html: Multi-step application form
   - danisman.html: Multi-step consultant form
   =============================================== */

.consultation-form {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-input {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    width: 100%;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-textarea {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    width: 100%;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* ===============================================
   SWIPER/CAROUSEL STYLES
   ===============================================
   USED ON:
   - index.html: Hero slider and news carousel
   =============================================== */

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #06b6d4;
}

/* ===============================================
   UTILITY STYLES
   =============================================== */

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-button {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ===============================================
   COOKIE CONSENT
   ===============================================
   USED ON:
   - All pages (index.html)
   =============================================== */

.cookie-consent {
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

/* ===============================================
   PAGE-SPECIFIC STYLES
   =============================================== */

/* ------
   BASVUR.HTML (Application Form)
   ------ */
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.step-indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-indicator-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.step-indicator-item.active .step-indicator-number {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* ------
   DANISMAN.HTML (Consultant Form)
   ------ */
.consultant-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ------
   BLOG.HTML (Blog List)
   ------ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.7);
    color: white;
    transition: all 0.3s;
    cursor: pointer;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
}

/* ------
   CONTACT.HTML (Contact Page)
   ------ */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #06b6d4;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ------
   TERMS.HTML & PRIVACY.HTML & COOKIES.HTML (Legal Pages)
   ------ */
.prose {
    color: #e2e8f0;
}

.prose h1,
.prose h2,
.prose h3 {
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.prose p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prose ul,
.prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.prose a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s;
}

.prose a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* ===============================================
   RESPONSIVE ADJUSTMENTS
   =============================================== */

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
    
    .service-card,
    .application-card,
    .news-card {
        border-radius: 12px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .btn-primary,
    .btn-accent {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
    
    .step-indicator-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-shimmer {
    animation: shimmer 3s infinite;
}
