/* 
   Harat Teknoloji - CSS Stylesheet 
   Theme: AI, Dark Mode, Glassmorphism, Modern
*/

:root {
    /* Color Palette */
    --bg-color: #fcfcfc;
    --bg-surface: #ffffff;
    --text-main: #4a4a4a;
    --text-light: #2c2c2c;
    --primary-color: #D4AF37;
    --primary-dark: #C5A059;
    
    /* Gradient AI Accents */
    --accent-gradient: linear-gradient(135deg, #E6C27A 0%, #C5A059 100%);
    --purple-gradient: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

ul {
    list-style: none;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

/* Utilities */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.icon-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Background Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #E6C27A;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #f5e6ce;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: #C5A059;
    opacity: 0.15;
    transform: translateX(-50%);
    animation-delay: -10s;
}

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

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 1rem 0;
}

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

.logo {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
}

.logo img {
    width: auto;
    height: 48px;
    display: block;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 50px;
    padding: 0.55rem 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

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

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

.theme-toggle {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8c6a0c; /* High contrast */
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* AI Core Card */
.ai-core-container {
    position: relative;
    z-index: 2;
    padding: 2rem;
    border-radius: 20px;
    width: 300px;
    overflow: hidden;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    animation: scan 3s linear infinite;
    opacity: 0.8;
}

@keyframes scan {
    0%   { top: 0; opacity: 1; }
    90%  { top: calc(100% - 2px); opacity: 0.6; }
    100% { top: 0; opacity: 1; }
}

.core-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.core-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.core-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.progress-container {
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.pulse-text {
    color: var(--primary-color);
    animation: pulse-opacity 1.5s ease-in-out infinite;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--accent-gradient);
}

.progress-fill.loading {
    width: 73%;
    animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
    0%   { width: 65%; }
    50%  { width: 78%; }
    100% { width: 65%; }
}

.floating-card {
    animation: float-card 7s infinite ease-in-out reverse;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegant-element {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegant-main-card {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    animation: float-card 6s infinite ease-in-out;
}

.elegant-main-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.elegant-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.elegant-desc {
    color: var(--text-main);
    font-size: 1rem;
}

.elegant-sub-card {
    position: absolute;
    bottom: 20%;
    right: 10%;
    z-index: 3;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    animation: float-card 7s infinite ease-in-out reverse;
}

.elegant-sub-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.elegant-blob-1, .elegant-blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
}

.elegant-blob-1 {
    width: 300px;
    height: 300px;
    background: #f5e6ce;
    top: 10%;
    left: 20%;
}

.elegant-blob-2 {
    width: 250px;
    height: 250px;
    background: #E6C27A;
    bottom: 15%;
    right: 25%;
}

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

/* Brand Logo Strip styles */
.brand-strip {
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 3;
    margin-top: 0;
}
[data-theme="dark"] .brand-strip {
    background: rgba(11, 12, 16, 0.4);
}
.brand-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.brand-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}
.brand-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}
.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}
.brand-item img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}
[data-theme="dark"] .brand-item img {
    filter: brightness(0) invert(1);
}
[data-theme="dark"] .brand-item:hover img {
    filter: none;
}

/* About Section */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.experience-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 2rem;
    text-align: center;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-card .number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.experience-card .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.about-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid-item {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.grid-item.item-1 {
    background: url('../images/about-1.jpg') center/cover;
    opacity: 0.8;
    grid-row: span 2;
}
.grid-item.item-2 {
    background: url('../images/about-2.jpg') center/cover;
    opacity: 0.6;
}

.grid-item.item-3 {
    background: rgba(212, 175, 55, 0.08);
    font-size: 2.5rem;
}

.grid-item.item-4 {
    background: rgba(212, 175, 55, 0.05);
    font-size: 2.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

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

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.project-card:hover .card-icon-wrapper {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
}

.card-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.card-features i {
    color: var(--primary-color);
}

.future-vision {
    border-color: rgba(142, 45, 226, 0.3);
}

.future-vision::before {
    background: var(--purple-gradient);
}

.future-vision:hover .card-icon-wrapper {
    background: var(--purple-gradient);
}

.vision-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(142, 45, 226, 0.2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(142, 45, 226, 0.4);
}

/* CTA Section */
.cta-box {
    padding: 4rem;
    text-align: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.gradient-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: auto;
    height: 60px;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-text {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* Animations (Scroll Reveal) */
.js [data-animate] {
    opacity: 0;
    transition: var(--transition-slow);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}
[data-animate="fade-in"].animated {
    opacity: 1;
    transform: scale(1);
}

[data-animate="slide-up"] {
    transform: translateY(50px);
}
[data-animate="slide-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="slide-right"] {
    transform: translateX(-50px);
}
[data-animate="slide-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-left"] {
    transform: translateX(50px);
}
[data-animate="slide-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}
[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}
[data-animate="zoom-in"].animated {
    opacity: 1;
    transform: scale(1);
}

/* Page Banners */
.page-banner {
    padding-top: 150px;
    padding-bottom: 80px;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-banner-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

[data-theme="dark"] .form-control {
    background: rgba(0,0,0,0.2);
    color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.btn-whatsapp:hover {
    background: #1ebe5d !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Map Section */
.map-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.map-header-info i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 420px;
}

.map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    filter: grayscale(10%);
}

@media (max-width: 768px) {
    .map-frame {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-layout, .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-visual {
        margin-top: 3rem;
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 99;
        border-radius: 0;
        border: none;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        padding: 0;
    }

    .nav-list.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 101;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --bg-color: #0b0c10;
    --bg-surface: #1f2833;
    --text-main: #c5c6c7;
    --text-light: #ffffff;
    --glass-bg: rgba(20, 25, 35, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

[data-theme="dark"] .footer {
    background: #08090b;
    border-top: 1px solid rgba(255,255,255,0.05);
}

[data-theme="dark"] .nav-list {
    background: rgba(11, 12, 16, 0.6);
    border-color: var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .logo {
    background: rgba(11, 12, 16, 0.6);
    border-color: var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav-list {
    background: rgba(11, 12, 16, 0.6);
    border-color: var(--glass-border);
}

@media (max-width: 768px) {
    [data-theme="dark"] .nav-list {
        background: rgba(11, 12, 16, 0.97);
        border: none;
    }
}


/* Comprehensive Mobile Responsive Fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .container {
        padding: 0 15px;
        width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .elegant-main-card {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .blob-container {
        display: none; /* Simplify mobile view */
    }
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .logo img {
        max-width: 200px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .logo img {
        max-width: 160px;
    }
}

/* ==========================================
   STAGE 2 - PERFORMANCE & UX UPDATES
   ========================================== */

/* Dual Logo Management via CSS to prevent double downloading */
.logo-dark, .footer-logo.logo-dark {
    display: none !important;
}
[data-theme="dark"] .logo-light, [data-theme="dark"] .footer-logo.logo-light {
    display: none !important;
}
[data-theme="dark"] .logo-dark, [data-theme="dark"] .footer-logo.logo-dark {
    display: inline-block !important;
}

/* Sticky Header scrolled state background blur and shadow */
.header.scrolled {
    padding: 1rem 0;
    background: rgba(252, 252, 252, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
[data-theme="dark"] .header.scrolled {
    background: rgba(11, 12, 16, 0.85) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Mobile Nav Drawer Scroll Lock & Overlay */
body.mobile-nav-open {
    overflow: hidden !important;
    height: 100vh !important;
}
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 12, 16, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   STAGE 3 - MARKETING & CONVERSION STYLES
   ========================================== */

/* Header CTA Button styling */
.btn-header-cta {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .header-actions .btn-header-cta {
        display: none !important;
    }
}

.mobile-only-cta {
    display: none;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-only-cta {
        display: block;
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }
    .mobile-only-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Demo Modal Overlay & Wrapper */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.demo-modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.demo-modal.active .demo-modal-wrapper {
    transform: translateY(0);
}

.demo-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.demo-modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Stepper Indicator */
.demo-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 1.5rem;
}

.demo-stepper .step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    font-weight: 555;
    font-size: 0.9rem;
    position: relative;
}

.demo-stepper .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.demo-stepper .step-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(212, 175, 55, 0.1);
    margin: 0 1rem;
}

.demo-stepper .step.active {
    color: var(--primary-color);
}

.demo-stepper .step.active .step-num {
    border-color: var(--primary-color);
    background: var(--accent-gradient);
    color: white;
}

.demo-stepper .step.completed {
    color: var(--primary-dark);
}

.demo-stepper .step.completed .step-num {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: white;
}

/* Modal Typography */
.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scheduler Layout */
.scheduler-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .scheduler-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.calendar-wrapper {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
}

[data-theme="dark"] .calendar-wrapper {
    background: rgba(20, 25, 35, 0.25);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

.calendar-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-btn:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day-btn {
    background: transparent;
    border: none;
    height: 36px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.calendar-day-btn:hover:not([disabled]) {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
}

.calendar-day-btn.selected {
    background: var(--accent-gradient) !important;
    color: white !important;
    font-weight: 700;
}

.calendar-day-btn[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
    color: var(--text-main);
}

.calendar-day-btn.prev-month-day, .calendar-day-btn.next-month-day {
    opacity: 0.35;
}

/* Time Slots Wrapper */
.time-slots-wrapper {
    display: flex;
    flex-direction: column;
}

.time-slots-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.selected-date-text {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
}

.time-slot-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    padding: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

[data-theme="dark"] .time-slot-btn {
    background: rgba(20, 25, 35, 0.3);
}

.time-slot-btn:hover:not([disabled]) {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.08);
}

.time-slot-btn.selected {
    background: var(--accent-gradient) !important;
    color: white !important;
    border-color: transparent !important;
}

.time-slot-btn[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.05);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 1.5rem;
}

.modal-actions .btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Step content visibility */
.demo-step-content.hidden {
    display: none !important;
}

/* Demo Step Form */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 576px) {
    .demo-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

[data-theme="dark"] .demo-form input[type="text"],
[data-theme="dark"] .demo-form input[type="email"],
[data-theme="dark"] .demo-form input[type="tel"] {
    background: rgba(20, 25, 35, 0.4);
}

.demo-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.kvkk-checkbox-group {
    margin-top: 0.5rem;
}

.kvkk-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
    cursor: pointer;
    font-weight: 500 !important;
    line-height: 1.4;
    color: var(--text-main) !important;
}

.kvkk-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.kvkk-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.demo-form-feedback {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 555;
    line-height: 1.4;
}

/* Success Screen inside Modal */
.success-screen {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #4ade80;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.booking-summary-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 420px;
    margin: 1.5rem auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.booking-summary-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.booking-summary-card p i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.booking-summary-card p strong {
    color: var(--text-light);
}

/* ==========================================
   BLOG / B2B KNOWLEDGE HUB STYLES
   ========================================== */

/* Blog Layout Grid */
.blog-section {
    padding: 120px 0 100px;
}

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

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Cards */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.05);
}

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

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

.blog-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.blog-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.blog-read-more i {
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* Category Filters */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Single Blog Page Styling */
.blog-detail-container {
    max-width: 860px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header .blog-badge {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.blog-header-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .blog-header-title {
        font-size: 2rem;
    }
}

.blog-header-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.blog-featured-image {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

@media (max-width: 768px) {
    .blog-featured-image {
        height: 300px;
        margin-bottom: 2.5rem;
    }
}

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

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.blog-content p {
    margin-bottom: 1.8rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-light);
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.8rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.6rem;
}

.blog-content strong {
    color: var(--text-light);
}

/* Technical / Data Tables in Blog */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    font-size: 0.95rem;
}

.blog-content th, .blog-content td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.blog-content th {
    background: rgba(212, 175, 55, 0.08);
    font-weight: 700;
    color: var(--text-light);
}

.blog-content tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}

/* Call to Action Box inside Blog */
.blog-cta-box {
    margin: 3.5rem 0;
    text-align: center;
}

/* Author Box */
.blog-author-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 4rem;
}

@media (max-width: 576px) {
    .blog-author-card {
        flex-direction: column;
        text-align: center;
    }
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.blog-back-btn:hover {
    color: var(--primary-dark);
    transform: translateX(-4px);
}

