/* ===================================
   UNIQUE & ORIGINAL DESIGN SYSTEM
   Uluyol Hukuk Bürosu - Exclusive Design
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kurumsal Renk Paleti - Resmi & Profesyonel Hukuk Bürosu */
    /* Ana Renkler - Koyu Lacivert (Resmi) */
    --navy-deep: #0a1628; /* Çok koyu lacivert - Otorite ve güven */
    --navy: #1a2332; /* Koyu lacivert */
    --navy-medium: #2d3748; /* Orta lacivert */
    --navy-light: #4a5568; /* Açık lacivert */
    --navy-lighter: #718096; /* Çok açık lacivert */
    
    /* Altın Renkleri - Prestij ve Kalite */
    --accent-gold: #c9a961; /* Klasik altın - Resmi ve prestijli */
    --accent-gold-light: #e5c97a; /* Açık altın */
    --accent-gold-dark: #a68b4a; /* Koyu altın */
    --accent-amber: #d4a574; /* Amber - Sıcak ton */
    --accent-yellow: #f4d03f; /* Altın sarı */
    
    /* Gri Tonları */
    --gray-dark: #2c3e50; /* Koyu gri - Metin */
    --gray-medium: #5a6c7d; /* Orta gri */
    --gray-light: #95a5a6; /* Açık gri */
    --gray-lighter: #ecf0f1; /* Çok açık gri */
    
    /* Nötr Renkler */
    --white: #ffffff;
    --off-white: #f8f9fa; /* Açık beyaz */
    --cream: #f5f7fa; /* Krem tonu */
    
    /* Text Colors */
    --text-charcoal: #2c3e50;
    --text-dark: #34495e;
    --text-medium: #5a6c7d;
    --text-light: #7f8c8d;
    
    /* Backgrounds */
    --bg-cream: #fafbfc;
    --bg-white: #ffffff;
    --bg-navy: #0a1628;
    --bg-light: #f5f7fa;
    --bg-gradient-navy: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #2d3748 100%);
    --bg-gradient-gold: linear-gradient(135deg, #c9a961 0%, #e5c97a 100%);
    --bg-gradient-professional: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    --bg-gradient-light: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    
    /* Shadows - Soft & Elegant */
    --shadow-soft: 0 2px 15px rgba(13, 27, 42, 0.08);
    --shadow-medium: 0 5px 25px rgba(13, 27, 42, 0.12);
    --shadow-strong: 0 10px 40px rgba(13, 27, 42, 0.18);
    --shadow-intense: 0 15px 60px rgba(13, 27, 42, 0.25);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;
    --space-3xl: 10rem;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition: 0.4s var(--ease-smooth);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--text-charcoal);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy-deep);
    letter-spacing: -0.5px;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===================================
   UNIQUE HEADER - Minimal & Elegant
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(10, 22, 40, 0.1);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(10, 22, 40, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
    border-bottom-color: rgba(10, 22, 40, 0.15);
}

.header-top-bar {
    background: var(--bg-gradient-navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.header-contact-item i {
    color: var(--accent-gold);
    font-size: 13px;
}

.header-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

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

.header-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.navbar {
    padding: 18px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-link:hover {
    transform: translateX(3px);
}

.brand-icon {
    width: 65px;
    height: 65px;
    background: var(--bg-gradient-navy);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.brand-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-gold));
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.brand-logo {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(13, 27, 42, 0.15));
    transition: var(--transition);
}

.brand-link:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(26, 31, 58, 0.25));
}

.brand-link:hover .brand-icon::after {
    opacity: 1;
    animation: rotate-border 2s linear infinite;
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-deep);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--navy-deep);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    display: block;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-gradient-navy);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO - Unique Split Design
   =================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: var(--bg-gradient-navy);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s var(--ease-smooth);
    display: flex;
    align-items: center;
    background: var(--bg-gradient-navy);
    overflow: hidden;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}


/* Unique Background Pattern */
.slide::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Geometric Shapes */
.slide {
    background-image: 
        linear-gradient(30deg, rgba(212, 175, 55, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.03) 87.5%, rgba(212, 175, 55, 0.03)),
        linear-gradient(150deg, rgba(212, 175, 55, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.03) 87.5%, rgba(212, 175, 55, 0.03)),
        linear-gradient(30deg, rgba(212, 175, 55, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.03) 87.5%, rgba(212, 175, 55, 0.03)),
        linear-gradient(150deg, rgba(212, 175, 55, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.03) 87.5%, rgba(212, 175, 55, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

/* Siyah Filigran */
.slide-watermark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.watermark-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0.08;
    white-space: nowrap;
}

.watermark-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 20px;
    text-transform: uppercase;
    user-select: none;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    animation: slideInLeft 1s var(--ease-smooth);
    margin-top: 40px;
}

.slide-content * {
    color: #ffffff !important;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s var(--ease-smooth);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge i {
    font-size: 13px;
}

.slide-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 1s var(--ease-smooth) 0.2s both;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-description {
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.9;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 1;
    animation: fadeInUp 1s var(--ease-smooth) 0.4s both;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-smooth) 0.6s both;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    font-size: 18px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.indicator.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.indicator.active {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* ===================================
   BUTTONS - Unique Design
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

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

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

.btn-primary {
    background: var(--bg-gradient-navy);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 22, 40, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 22, 40, 0.3);
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
}

.btn-outline {
    background: transparent;
    color: var(--navy-deep);
    border: 2px solid var(--navy-deep);
}

.btn-outline:hover {
    background: var(--navy-deep);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--navy-deep);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 42px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   SECTION HEADERS - Unique Typography
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: var(--radius-full);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 650px;
    margin: 35px auto 0;
    line-height: 1.9;
    font-weight: 400;
}

/* ===================================
   ABOUT PREVIEW - Asymmetric Unique
   =================================== */
.about-preview {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: var(--navy-deep);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

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

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

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

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

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

.image-placeholder {
    background: var(--bg-gradient-navy);
    color: white;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    font-size: 130px;
    box-shadow: var(--shadow-intense);
    position: relative;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    transition: var(--transition-slow);
}

.image-placeholder:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    animation: shine-sweep 4s infinite;
}

@keyframes shine-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===================================
   SERVICES - Unique Card Design
   =================================== */
.services-preview {
    padding: var(--space-3xl) 0;
    background: var(--bg-cream);
}

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

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--gray-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover::after {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.15);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-gradient-navy);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    box-shadow: 0 4px 15px rgba(10, 22, 40, 0.2);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.3);
    background: var(--bg-gradient-navy);
}

.service-image {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

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

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

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

.service-card h3 {
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ===================================
   FEATURES - Unique Layout
   =================================== */
.why-choose-us {
    padding: var(--space-3xl) 0;
    background: var(--bg-gradient-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(61, 74, 122, 0.1) 0%, transparent 50%);
}

.why-choose-us .section-header h2 {
    color: white;
}

.why-choose-us .section-header h2::before,
.why-choose-us .section-header h2::after {
    background: var(--accent-gold);
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 70px;
    color: var(--accent-gold);
    margin-bottom: 30px;
    display: inline-block;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
    background: rgba(212, 175, 55, 0.2);
}

.feature-item h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* ===================================
   CTA SECTION - Impactful
   =================================== */
.contact-cta {
    background: var(--bg-gradient-navy);
    color: #ffffff;
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
    animation: rotate-slow 25s linear infinite;
    z-index: 0;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(40px, 5.5vw, 60px);
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 1;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-cta .btn-primary {
    background: var(--accent-gold);
    color: var(--navy-deep);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.contact-cta .btn-primary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

/* ===================================
   PAGE HEADER - Professional Design
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-medium) 100%);
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-bottom: 4px solid var(--accent-gold);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 53, 97, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(40px, 5.5vw, 58px);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    margin-top: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb a:hover {
    color: #ffffff;
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 0 4px;
}

/* ===================================
   BLOG PREVIEW
   =================================== */
.blog-preview {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.blog-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    
    .about-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .header-top-bar {
        display: none;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .header-contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .navbar-content {
        padding: 12px 0;
    }
    
    .brand-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .brand-title {
        font-size: 22px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 25px;
        transition: var(--transition);
        box-shadow: var(--shadow-intense);
        gap: 8px;
        border-top: 1px solid rgba(13, 27, 42, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .hero-slider {
        height: 90vh;
        min-height: 600px;
        padding-top: 100px;
    }
    
    .slide-content {
        text-align: center;
        padding: 20px 30px;
        margin-top: 20px;
    }
    
    .watermark-text {
        font-size: 100px;
        letter-spacing: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid,
    .blog-grid-preview {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Slider container için özel padding */
    .hero-slider .container {
        padding: 0 15px;
    }
    
    .watermark-text {
        font-size: 60px;
        letter-spacing: 5px;
    }
    
    .hero-slider {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 80px;
        margin-top: 0;
    }
    
    .slide-content {
        padding: 15px 20px;
        margin-top: 0;
        max-width: 100%;
    }
    
    .slide-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .slide-buttons .btn {
        flex: 0 1 auto;
        min-width: 140px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .about-preview,
    .services-preview,
    .why-choose-us,
    .blog-preview {
        padding: var(--space-xl) 0;
    }
    
    .services-grid,
    .blog-grid-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Slider container için özel padding */
    .hero-slider .container {
        padding: 0 10px;
    }
    
    .hero-slider {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 70px;
        margin-top: 0;
    }
    
    .slide-content {
        padding: 15px 10px;
        margin-top: 0;
    }
    
    .slide-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .slide-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .slide-buttons .btn {
        flex: 0 1 auto;
        min-width: 120px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .btn {
        padding: 12px 26px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 14px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.main-content {
    margin-top: 0;
}

/* Scroll Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s var(--ease-smooth);
}
