/* -------------------------------------------------------------
   ASLAN GROUP & ASLAN GÜRARAZ - LUXURY CSS DESIGN SYSTEM
   ------------------------------------------------------------- */

/* Custom Reset & Variables */
:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #121318;
    --bg-tertiary: #1a1c23;
    
    --text-primary: #ffffff;
    --text-secondary: #a8aebc;
    --text-muted: #6f7584;
    
    --gold-light: #f6e5b4;
    --gold-primary: #d4af37;
    --gold-dark: #aa851d;
    --gold-gradient: linear-gradient(135deg, #f6e5b4 0%, #d4af37 50%, #aa851d 100%);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.25);
    --gold-border: rgba(212, 175, 55, 0.2);
    
    --glass-bg: rgba(18, 19, 24, 0.75);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-width: 1200px;
    --header-height: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

section {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

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

ul {
    list-style: none;
}

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

/* Helper Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

html.menu-open, html.menu-open body {
    overflow: hidden !important;
    height: 100% !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s var(--transition-smooth);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    position: relative;
}

.section-divider::before, .section-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    transform: rotate(45deg);
    top: -2.5px;
}

.section-divider::before { left: -15px; }
.section-divider::after { right: -15px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Quicksand', sans-serif;
    gap: 8px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    border: 1px solid transparent;
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Header & Navigation */
/* Header & Navigation */
.main-header {
    height: auto;
    background-color: rgba(10, 11, 13, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.main-header.scrolled {
    background-color: rgba(10, 11, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.main-header.scrolled .header-container {
    height: 76px;
}

/* Gold Top Bar Styling */
.gold-top-bar {
    height: 34px;
    background-color: #07080a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 1001;
    position: relative;
}

.gold-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.gold-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-bar-left .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2ec4b6;
    box-shadow: 0 0 8px #2ec4b6;
}

.gold-bar-left .live-label {
    font-size: 10px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.gold-bar-items {
    display: flex;
    gap: 20px;
}

.gold-bar-item {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
}

.gold-bar-item .bar-title {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    font-size: 11px;
}

.gold-bar-item .val {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--text-primary);
}

.gold-bar-item .val.price-up {
    color: #2ec4b6;
    animation: flash-green 0.8s ease;
}

.gold-bar-item .val.price-down {
    color: #e71d36;
    animation: flash-red 0.8s ease;
}

.gold-bar-item .change {
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1px;
}

.gold-bar-item .change.positive {
    color: #2ec4b6;
}

.gold-bar-item .change.negative {
    color: #e71d36;
}

@media (max-width: 768px) {
    .gold-top-bar {
        display: none;
    }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast), height var(--transition-fast);
}

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

.main-header.scrolled .logo-img {
    height: 60px;
}

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

.logo-brand {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header,
.mobile-menu-footer,
.nav-link-number {
    display: none;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

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

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

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: all var(--transition-fast);
}

.hamburger span:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(8px);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
}

.hero-split-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-panel {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0.65;
}

.hero-split-container:hover .hero-panel {
    opacity: 0.35;
}

.hero-split-container .hero-panel:hover {
    flex: 2.2;
    opacity: 1;
}

/* Pseudo-element for zoom effect on hover */
.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 0;
}

.hero-panel:hover::before {
    transform: scale(1.08);
}

.hero-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.3) 0%, rgba(10, 11, 13, 0.85) 100%);
    z-index: 1;
    transition: background var(--transition-fast);
}

.hero-panel:hover .hero-panel-overlay {
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.1) 0%, rgba(10, 11, 13, 0.75) 100%);
}

.hero-panel-label {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.hero-panel:hover .hero-panel-label {
    color: var(--gold-primary);
    letter-spacing: 6px;
    text-shadow: var(--gold-glow);
}



.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 24px;
    color: var(--gold-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 15px;
}

.image-border-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold-primary);
    border-radius: 6px;
    transform: translate(-10px, -10px);
    z-index: 1;
    opacity: 0.5;
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), var(--gold-glow);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-lead {
    font-size: 22px;
    color: var(--gold-primary);
    font-weight: 600;
    line-height: 1.4;
}

.about-text {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
    border-top: 1px solid var(--gold-border);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Sectors Section */
.sectors-section {
    padding: 120px 0 0 0;
    background-color: var(--bg-secondary);
}

.sectors-split-container {
    display: flex;
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.sector-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0.6;
}

.sectors-split-container:hover .sector-panel {
    opacity: 0.45;
}

.sectors-split-container .sector-panel:hover {
    flex: 2.8;
    opacity: 1;
}

/* Pseudo-element for zoom effect on hover */
.sector-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 0;
}

.sector-panel:hover::before {
    transform: scale(1.08);
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.35) 0%, rgba(10, 11, 13, 0.9) 100%);
    transition: background var(--transition-fast);
    z-index: 1;
}

.sector-panel:hover .panel-overlay {
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.1) 0%, rgba(10, 11, 13, 0.95) 100%);
}

.panel-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.panel-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.sector-panel:hover .panel-icon {
    background-color: var(--gold-primary);
    color: #000000;
    box-shadow: var(--gold-glow);
}

.sector-panel h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.panel-short-desc {
    font-size: 11px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.panel-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
}

.sector-panel:hover .panel-details {
    max-height: 250px;
    opacity: 1;
    margin-top: 10px;
}

.panel-details p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 15px;
}

.panel-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.panel-list li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-list li i {
    color: var(--gold-primary);
    font-size: 11px;
}

/* Gold Section */
.gold-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
    position: relative;
}

.gold-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding: 16px 24px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
}

.live-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ec4b6;
    box-shadow: 0 0 10px #2ec4b6;
}

.live-dot.animate-pulse {
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 1; }
}

.live-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.gold-update-time {
    font-size: 12px;
    color: var(--text-muted);
}

.gold-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gold-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 24px;
    backdrop-filter: blur(8px);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.gold-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--gold-glow), var(--glass-shadow);
}

.gold-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gold-title-area h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

.gold-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.gold-card-icon {
    font-size: 22px;
    color: var(--gold-primary);
    opacity: 0.6;
}

.gold-price-area {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency-symbol {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-primary);
}

.gold-value {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.gold-value.price-up {
    color: #2ec4b6;
    animation: flash-green 0.8s ease;
}

.gold-value.price-down {
    color: #e71d36;
    animation: flash-red 0.8s ease;
}

@keyframes flash-green {
    0% { text-shadow: 0 0 15px rgba(46, 196, 182, 0.6); }
    100% { text-shadow: none; }
}

@keyframes flash-red {
    0% { text-shadow: 0 0 15px rgba(231, 29, 54, 0.6); }
    100% { text-shadow: none; }
}

.gold-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

.gold-change {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gold-change.positive { color: #2ec4b6; }
.gold-change.negative { color: #e71d36; }

.footer-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.gold-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-panel {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-panel-title {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-panel-desc {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 18px;
}

.contact-detail-text h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-text p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
}

.social-links a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.contact-form-panel {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 40px;
    position: relative;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    font-weight: 500;
}

.form-group input, .form-group textarea {
    background-color: rgba(10, 11, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid var(--gold-border);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-primary);
    background-color: rgba(10, 11, 13, 0.8);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.form-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 40px 0;
    gap: 20px;
}

.feedback-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 1px solid rgba(46, 196, 182, 0.3);
}

.form-feedback h3 {
    font-size: 22px;
    color: var(--text-primary);
}

.form-feedback p {
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 0;
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.footer-right {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    .gold-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-split-container {
        flex-direction: column;
    }
    
    .hero-panel {
        flex: none;
        width: 100%;
        height: 25%;
        opacity: 0.8;
    }
    
    .hero-split-container:hover .hero-panel {
        opacity: 0.8;
    }
    
    .hero-split-container .hero-panel:hover {
        flex: none;
        opacity: 1;
    }
    
    .hero-panel-label {
        bottom: 15px;
        font-size: 11px;
        letter-spacing: 2px;
    }
    

    
    .section-title {
        font-size: 26px;
    }
    .sectors-split-container {
        flex-direction: column;
        height: auto;
        border-bottom: none;
    }
    
    .sector-panel {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 320px;
        opacity: 0.85;
        border-bottom: 1px solid var(--gold-border);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .sectors-split-container:hover .sector-panel {
        opacity: 0.85;
    }
    
    .sectors-split-container .sector-panel:hover {
        flex: none;
        opacity: 1;
    }
    
    .panel-content-wrapper {
        position: relative;
        padding: 40px 24px 24px 24px;
        z-index: 2;
    }
    
    .panel-details {
        max-height: none;
        opacity: 1;
        margin-top: 10px;
    }
    
    .panel-details p {
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .panel-list {
        padding-top: 10px;
    }
    .header-container {
        height: 80px !important;
    }
    .logo-img {
        height: 60px !important;
    }
    .main-header.scrolled .logo-img {
        height: 60px !important;
    }
    section {
        scroll-margin-top: 80px;
    }
    .hamburger {
        display: flex;
    }

    /* ── Mobile Menu Overlay ── */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(165deg, #08090b 0%, #0a0b0d 40%, #0f1014 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* Mobile menu header (logo + divider) */
    .mobile-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        margin-bottom: 28px;
    }

    .mobile-menu-logo {
        height: 60px;
        width: auto;
        object-fit: contain;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 0.5s 0.15s ease, transform 0.5s 0.15s ease;
    }

    .nav-menu.open .mobile-menu-logo {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-divider {
        display: block;
        width: 50px;
        height: 1px;
        background: var(--gold-gradient);
        margin-top: 18px;
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s ease;
    }

    .nav-menu.open .mobile-menu-divider {
        opacity: 0.6;
        transform: scaleX(1);
    }

    /* Nav links list */
    .nav-menu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 32px;
        position: relative;
        z-index: 1;
    }

    .nav-menu ul li {
        width: 100%;
        max-width: 320px;
        text-align: left;
        border-bottom: 1px solid rgba(212, 175, 55, 0.07);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    /* Staggered entrance animation */
    .nav-menu.open ul li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
    .nav-menu.open ul li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
    .nav-menu.open ul li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
    .nav-menu.open ul li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
    .nav-menu.open ul li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
    .nav-menu.open ul li:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

    /* Nav link styling */
    .nav-link {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        padding: 16px 4px;
        font-size: 17px;
        font-weight: 300;
        letter-spacing: 1.5px;
        color: var(--text-secondary);
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold-primary);
        padding-left: 10px;
    }

    /* Numbered labels */
    .nav-link-number {
        display: inline-block;
        font-family: 'Cinzel', serif;
        font-size: 11px;
        font-weight: 400;
        color: var(--gold-dark);
        opacity: 0.5;
        min-width: 24px;
        letter-spacing: 1px;
    }

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

    /* Override underline for mobile — use left bar instead */
    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        bottom: auto;
        top: 50%;
        left: -4px;
        transform: translateY(-50%) scaleY(0);
        width: 2px;
        height: 20px;
        background: var(--gold-gradient);
        transition: transform 0.3s ease;
    }

    .nav-menu .nav-link:hover::after,
    .nav-menu .nav-link.active::after {
        width: 2px;
        transform: translateY(-50%) scaleY(1);
    }

    /* Mobile menu footer */
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 28px;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.5s 0.5s ease, transform 0.5s 0.5s ease;
    }

    .nav-menu.open .mobile-menu-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-tagline {
        font-family: 'Cinzel', serif;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold-primary);
        opacity: 0.5;
        margin-top: 18px;
    }

    .mobile-menu-domain {
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--text-muted);
        margin-top: 6px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    .gold-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =============================================================
   Haberler & Basında Biz (News & Media Modal) Section
   ============================================================= */
.news-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.news-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.news-img-zoom {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-source {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.news-info h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    font-family: 'Cinzel', serif;
}

.news-info p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.read-more-btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.25s ease;
}

.news-card:hover .read-more-btn {
    color: var(--text-primary);
}

.news-card:hover .read-more-btn i {
    transform: translateX(4px);
    transition: transform 0.25s ease;
}

/* Modal Styling */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

.news-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 850px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), var(--gold-glow);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.news-modal.active .modal-wrapper {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 11, 13, 0.7);
    border: 1px solid var(--gold-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: #000;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.modal-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.modal-source {
    color: var(--gold-primary);
    font-weight: 600;
}

.modal-date {
    color: var(--text-muted);
}

.modal-content h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.35;
    font-family: 'Cinzel', serif;
}

.modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 10px;
    font-weight: 300;
}

.modal-text p {
    margin-bottom: 12px;
}

.modal-text p:last-child {
    margin-bottom: 0;
}

/* Scrollbar */
.modal-text::-webkit-scrollbar {
    width: 4px;
}

.modal-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.modal-text::-webkit-scrollbar-thumb {
    background: var(--gold-border);
    border-radius: 2px;
}

/* News Responsive Styling */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-img {
        height: 250px;
        min-height: 250px;
    }
    
    .modal-content {
        padding: 30px 24px;
    }
}

