/* ==========================================================================
   Victory Business Consultant CSS Design System - Version 2.0 (Premium)
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --color-bg-dark: #040b17;
    --color-navy: #061226;
    --color-navy-light: #0d1e38;
    --color-gold: #cfa153;
    --color-gold-hover: #b0853c;
    --color-gold-glow: rgba(207, 161, 83, 0.4);
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    
    --color-text-dark: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #e2e8f0;
    --color-border: #e2e8f0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: Georgia, 'Playfair Display', serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.12), 0 15px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 10px 25px -5px rgba(207, 161, 83, 0.3);
    
    --container-width: 1200px;
    --header-height: 85px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Multi-language CSS toggling logic */
body.lang-tr [lang="en"] {
    display: none !important;
}

body.lang-en [lang="tr"] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.font-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #e5c07b 50%, var(--color-gold-hover) 100%);
    background-size: 200% auto;
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(207, 161, 83, 0.5);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

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

.btn-outline-gold {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.text-gold {
    color: var(--color-gold) !important;
}

/* Header & Navigation */
.main-header {
    height: var(--header-height);
    background-color: var(--color-navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-logo-img {
    height: 58px;
    max-height: calc(var(--header-height) - 10px);
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.header-logo-img:hover {
    transform: scale(1.03);
}

.mobile-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.logo-icon-wrapper {
    background-color: var(--color-gold);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.logo-v {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--color-white);
}

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

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 1.5px;
    color: var(--color-white);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    line-height: 1;
    margin-top: 1px;
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--color-text-light);
    opacity: 0.5;
    font-weight: 400;
    margin-top: 2px;
}

/* Desktop Nav Links - Linkler şık olsun */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.8;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--color-gold);
    opacity: 1;
}

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

.nav-link.active {
    color: var(--color-gold);
    opacity: 1;
}

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

/* Language Selector */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.7;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
}

.lang-btn:hover {
    color: var(--color-gold);
    opacity: 1;
}

.lang-btn.active {
    color: var(--color-gold);
    opacity: 1;
    border-color: rgba(207, 161, 83, 0.3);
    background-color: rgba(255,255,255,0.05);
}

.lang-divider {
    color: rgba(255,255,255,0.15);
    font-size: 0.85rem;
}

.btn-header {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
}

/* Hamburger button for mobile menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

/* Mobile Navigation Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 11, 23, 0.98);
    z-index: 1000;
    transition: var(--transition-slow);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    background-color: var(--color-navy);
    width: 80%;
    max-width: 320px;
    height: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.mobile-link:hover, .mobile-link.active {
    color: var(--color-gold);
    padding-left: 5px;
}

.mobile-lang-switcher {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to right, rgba(4, 11, 23, 0.95) 25%, rgba(4, 11, 23, 0.75) 50%, rgba(4, 11, 23, 0.2) 100%), url('assets/hero_banner.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 6rem 0 11rem;
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}

/* Background growth arrow on the left */
.hero-growth-arrow {
    position: absolute;
    left: 2%;
    bottom: 5%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.05); opacity: 0.9; }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 520px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 630px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 580px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Horizontal Features layout matching reference image */
.hero-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.hero-feature-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon-gold {
    font-size: 1.8rem;
    color: var(--color-gold);
    filter: drop-shadow(0 2px 8px rgba(207,161,83,0.3));
}

.feature-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Floating screen text on the laptop screen area */
.hero-laptop-screen-text {
    position: absolute;
    right: 5%;
    bottom: 18%;
    z-index: 5;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background-color: rgba(4, 11, 23, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1.5px solid rgba(207, 161, 83, 0.2);
    padding: 1.25rem 1.75rem;
    border-radius: 4px;
}

.screen-text-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 3px;
    color: var(--color-white);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Sections Global Structure */
section {
    padding: 7.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.5px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Us Section */
.about-section {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.about-subtitle {
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.about-text-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge-item {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    flex: 1;
    text-align: center;
    transition: var(--transition-normal);
}

.badge-item:hover {
    border-color: var(--color-gold);
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.badge-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-navy);
    display: block;
    letter-spacing: 0.5px;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.experience-card {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-bg-dark) 100%);
    color: var(--color-white);
    padding: 3.5rem 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.exp-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.exp-date {
    font-size: 2.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1;
}

.exp-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background-color: var(--color-off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 3.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border);
    border-top-color: var(--color-gold);
}

.service-icon-circle {
    background-color: var(--color-navy);
    color: var(--color-gold);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover .service-icon-circle {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Service links - linkler şık olsun */
.service-link-premium {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding-bottom: 2px;
}

.service-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.arrow-icon {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.service-link-premium:hover {
    color: var(--color-gold-hover);
}

.service-link-premium:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-link-premium:hover .arrow-icon {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-bg-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-us-premium-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.why-us-premium-title {
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.why-us-premium-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-us-premium-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--color-text-light);
    font-size: 1rem;
    opacity: 0.9;
}

.check-circle-wrapper {
    width: 24px;
    height: 24px;
    background-color: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.why-us-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-premium-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.stat-premium-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--color-gold);
    box-shadow: 0 10px 25px -5px rgba(207, 161, 83, 0.18);
    transform: translateY(-2px);
}

.stat-number-wrapper {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-white);
}

/* References Section */
.references-section {
    background-color: var(--color-off-white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.reference-card-wrapper {
    cursor: pointer;
}

.reference-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.reference-card-wrapper:hover .reference-card {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(207, 161, 83, 0.15);
}

.ref-icon-box {
    color: var(--color-gold);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.ref-logo-box {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ref-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.85);
    transition: var(--transition-normal);
}

.reference-card-wrapper:hover .ref-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.ref-text-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-navy);
    letter-spacing: 0.5px;
    border: 1.5px solid var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: var(--color-off-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.ref-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.ref-category {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ref-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.reference-card-wrapper:hover .ref-badge {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Premium Block */
.cta-premium-block {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-navy) 100%);
    padding: 5rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-premium-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.cta-premium-text h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.cta-premium-text p {
    color: var(--color-text-light);
    opacity: 0.85;
}

.cta-premium-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
}

.contact-form-container {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    padding: 3.5rem;
    border-radius: 8px;
}

.contact-form-title, .contact-info-title {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-form-title::after, .contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(207, 161, 83, 0.15);
}

/* Form Alert System */
.form-feedback {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-feedback.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-feedback.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.hidden {
    display: none !important;
}

/* Contact Info list styles */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    background-color: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 0.15rem;
}

.hover-gold:hover {
    color: var(--color-gold);
}

.contact-map-mock {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 2.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-icon {
    color: var(--color-gold);
    font-size: 1.8rem;
}

/* Footer Section */
.main-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 6rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4.5rem;
    padding-bottom: 4.5rem;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.65;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

/* Footer Links & Contact Info - Linkler şık olsun */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.7;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    opacity: 1;
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-info li {
    display: flex;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.7;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--color-gold);
    margin-top: 0.2rem;
}

.footer-contact-link:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.55;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-policy-links a:hover {
    color: var(--color-gold);
}

.policy-divider {
    opacity: 0.3;
}

.designer-credit {
    opacity: 0.75;
    margin-left: 0.5rem;
}

.designer-credit a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 700;
}

.designer-credit a:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* Lightbox Modal System */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 11, 23, 0.92);
    z-index: 10000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-content {
    width: 90%;
    max-width: 580px;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-card {
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px solid rgba(207, 161, 83, 0.2);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-header {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.lightbox-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
}

.lightbox-header-text h3 {
    font-size: 1.4rem;
}

.lightbox-header-text .ref-category {
    color: var(--color-text-light);
    opacity: 0.8;
    margin-bottom: 0;
    margin-top: 0.25rem;
}

.lightbox-body {
    padding: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.lightbox-footer {
    padding: 1.5rem 2.5rem;
    background-color: var(--color-off-white);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lightbox-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lightbox-badge i {
    color: var(--color-gold);
}

/* ==========================================================================
   Inner Pages Styling (Breadcrumbs, Sidebar, Detail Layout)
   ========================================================================== */

.inner-header-banner {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-navy) 100%);
    padding: 4.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.inner-banner-title {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.inner-banner-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.85;
}

.inner-banner-breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumb-separator {
    font-size: 0.65rem;
    opacity: 0.5;
}

.active-breadcrumb {
    color: var(--color-gold);
    font-weight: 600;
}

/* Service Detail Page Layout */
.service-detail-section {
    background-color: var(--color-white);
    padding: 6.5rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-main-content {
    display: flex;
    flex-direction: column;
}

.service-detail-icon-box {
    color: var(--color-gold);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-detail-subtitle {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.service-detail-lead {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
}

.service-detail-paragraphs p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-subheading {
    font-size: 1.4rem;
    color: var(--color-navy);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.service-detail-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.service-detail-features-list li i {
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

/* Sidebar Widgets Styling */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 2.2rem;
}

.widget-title {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
}

.sidebar-services-list a.active, .sidebar-services-list a:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.sidebar-link-icon {
    font-size: 1rem;
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.sidebar-services-list a.active .sidebar-link-icon {
    color: var(--color-white);
}

.sidebar-arrow {
    font-size: 0.75rem;
    opacity: 0.5;
}

.sidebar-services-list a:hover .sidebar-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Help Widget */
.help-widget {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-bg-dark) 100%);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.help-widget-title {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.help-widget-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.sidebar-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
}

.sidebar-phone-btn:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.sidebar-email-link {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.8;
}

.sidebar-email-link:hover {
    color: var(--color-gold);
}

/* Process Grid layout inside Services page */
.process-section {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    position: relative;
    padding: 2rem 1.5rem;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition-normal);
}

.process-step:hover {
    border-color: var(--color-gold);
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.step-title {
    font-size: 1.05rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Animations / Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries (RWD)
   ========================================================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header-logo-img {
        height: 48px;
    }
    
    /* Header modifications to prevent layout wrapping on tablets/medium screens */
    .desktop-nav, .btn-header {
        display: none !important;
    }
    
    .hamburger-btn {
        display: flex !important;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .why-us-premium-card {
        gap: 4rem;
    }
    
    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Header & Footer Sizing */
    .header-logo-img {
        height: 45px;
    }
    
    .footer-logo-img {
        height: 55px;
    }
    
    /* Hero section stack and overlay alignments */
    .hero-section {
        background-image: linear-gradient(rgba(4, 11, 23, 0.88), rgba(4, 11, 23, 0.88)), url('assets/hero_banner.jpg');
        background-position: center center;
        padding: 6rem 0;
    }
    
    .hero-growth-arrow {
        display: none !important;
    }
    
    .hero-laptop-screen-text {
        display: none !important;
    }
    
    .hero-container {
        min-height: auto;
        justify-content: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-features-row {
        text-align: left;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* About grid stack */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-visual {
        justify-content: center;
    }
    
    .why-us-premium-card {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .why-us-stats-grid {
        margin-top: 1rem;
    }
    
    /* CTA stack */
    .cta-premium-inner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .cta-premium-actions {
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }
    
    .cta-premium-actions .btn {
        width: 100%;
    }
    
    /* Contact grid stack */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 75px;
    }
    
    .header-logo-img {
        height: 40px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-badges {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .lightbox-header {
        padding: 1.5rem;
    }
    
    .lightbox-body {
        padding: 1.5rem;
    }
    
    .lightbox-footer {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
    }
    
    .lightbox-footer .btn {
        width: 100%;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Policy & Legal Content Pages
   ========================================================================== */
.policy-content-section {
    background-color: var(--color-white);
    padding: 7.5rem 0;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 3.5rem;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    border-bottom: 1.5px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.policy-block p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.policy-block ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.policy-block li {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    list-style-type: disc;
}
