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

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #B8860B;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(184, 134, 11, 0.5);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.custom-cursor.cursor-hover .cursor-dot {
    width: 12px;
    height: 12px;
    background: #DAA520;
}

.custom-cursor.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: #B8860B;
    border-width: 3px;
}

.custom-cursor.cursor-click .cursor-dot {
    width: 6px;
    height: 6px;
    background: #FFD700;
}

.custom-cursor.cursor-click .cursor-outline {
    width: 30px;
    height: 30px;
    border-color: #FFD700;
    border-width: 4px;
}

/* Hide default cursor on interactive elements */
a, button, .btn, .card, .project-card, .service-card, input, textarea, select {
    cursor: none;
}

/* Cursor animations for different states */
@keyframes cursorPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.custom-cursor.cursor-loading .cursor-outline {
    animation: cursorPulse 1s infinite;
    border-color: #B8860B;
}

/* Text selection cursor */
.custom-cursor.cursor-text .cursor-dot {
    width: 2px;
    height: 20px;
    border-radius: 1px;
    background: #B8860B;
}

.custom-cursor.cursor-text .cursor-outline {
    width: 20px;
    height: 40px;
    border-radius: 10px;
}

/* ===== RESPONSIVE IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.card-image,
.hero-background img,
.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== MODERN MENU SYSTEM ===== */
.menu-trigger {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-trigger:hover {
    transform: scale(1.1);
    border-color: #B8860B;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.menu-trigger.active {
    transform: rotate(180deg) scale(1.1);
    background: #B8860B;
    border-color: #B8860B;
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 18px;
}

.menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B8860B;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-trigger.active .menu-icon span {
    background: #1a1a1a;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
    bottom: 0;
}

.menu-trigger.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

.menu-trigger.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
}

/* ===== LOGO ===== */
.logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.4);
}

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(34, 34, 34, 0.98));
    backdrop-filter: blur(30px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23B8860B" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.menu-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.menu-nav {
    list-style: none;
    margin-bottom: 3rem;
}

.menu-nav li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-menu.active .menu-nav li {
    opacity: 1;
    transform: translateY(0);
}

.menu-nav li:nth-child(1) { transition-delay: 0.1s; }
.menu-nav li:nth-child(2) { transition-delay: 0.15s; }
.menu-nav li:nth-child(3) { transition-delay: 0.2s; }
.menu-nav li:nth-child(4) { transition-delay: 0.25s; }
.menu-nav li:nth-child(5) { transition-delay: 0.3s; }
.menu-nav li:nth-child(6) { transition-delay: 0.35s; }
.menu-nav li:nth-child(7) { transition-delay: 0.4s; }
.menu-nav li:nth-child(8) { transition-delay: 0.45s; }

.menu-nav a {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.menu-nav a:hover {
    color: #B8860B;
    transform: scale(1.05);
}

.menu-nav a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #CD7F32);
    transition: width 0.4s ease;
}

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

.menu-info {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.5s;
}

.fullscreen-menu.active .menu-info {
    opacity: 1;
    transform: translateY(0);
}

.menu-info p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.menu-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.menu-contact a {
    color: #B8860B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 25px;
}

.menu-contact a:hover {
    background: #B8860B;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #B8860B, #CD7F32, #DAA520);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B, #CD7F32);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #B8860B;
    border: 2px solid #B8860B;
}

.btn-secondary:hover {
    background: #B8860B;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.btn::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;
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: #222222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #B8860B, #CD7F32);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

/* ===== GRID SYSTEM ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===== CARDS ===== */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 134, 11, 0.1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(184, 134, 11, 0.3);
}

.card-content {
    padding: 2rem;
}

.image-overlay {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 134, 11, 0.1), rgba(205, 127, 50, 0.1));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .image-overlay::before {
    opacity: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease forwards;
}

/* ===== FOOTER ===== */
.footer {
    background: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #B8860B;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #B8860B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* ===== PAGE TRANSITIONS ===== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #B8860B);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== FORM STYLES ===== */
input, textarea, select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.2);
}

input::placeholder, textarea::placeholder {
    color: #888888;
}

/* ===== DOWNLOADS PAGE STYLES ===== */
.download-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-5px);
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #888888;
}

/* ===== VIDEO GALLERY STYLES ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail::before {
    content: '▶';
    font-size: 3rem;
    color: #B8860B;
}

.video-info {
    padding: 1.5rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888888;
    margin-top: 1rem;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: #B8860B;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #B8860B;
    color: #1a1a1a;
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #B8860B;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .menu-trigger {
        top: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .logo {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .menu-nav a {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        letter-spacing: 1px;
    }
    
    .menu-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .menu-contact a {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .hero {
        height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .section h3 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .section p {
        font-size: 1rem;
    }
    
    .grid {
        gap: 1.5rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .image-overlay {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .download-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .menu-trigger {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .logo {
        top: 1rem;
        left: 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .menu-nav a {
        font-size: clamp(1.2rem, 8vw, 2rem);
    }
    
    .hero h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1rem);
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .card-content {
        padding: 1rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
    will-change: auto;
}

.hero,
.card,
.btn,
.menu-nav a {
    will-change: transform;
}

img {
    loading: lazy;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        background-attachment: scroll !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .menu-trigger,
    .fullscreen-menu,
    .custom-cursor,
    .page-transition-overlay {
        display: none !important;
    }
    
    body {
        color: #000000 !important;
        background: #ffffff !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}



/* ===== MEGA MENU STYLES ===== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Desktop Mega Menu */
.mega-menu-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
}

.mega-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.mega-menu-item {
    position: relative;
}

.mega-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.mega-menu-link:hover,
.mega-menu-link.active {
    color: #B8860B;
    background: rgba(184, 134, 11, 0.1);
}

.mega-menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #B8860B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 15px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mega-menu-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-column h4 {
    color: #B8860B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 8px;
}

.mega-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mega-column ul li a:hover {
    color: #B8860B;
    padding-left: 10px;
}

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

.mega-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.mega-image p {
    color: #cccccc;
    font-size: 12px;
    font-style: italic;
}

/* Mobile Menu Styles */
/* Mobile Menu Styles */
.mobile-menu-trigger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-trigger:hover {
    background: #B8860B;
    transform: scale(1.1);
}

.mobile-menu-trigger .menu-icon {
    width: 20px;
    height: 15px;
    position: relative;
}

.mobile-menu-trigger .menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-trigger .menu-icon span:nth-child(1) {
    top: 0;
}

.mobile-menu-trigger .menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-trigger .menu-icon span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-trigger.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.mobile-menu-trigger.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-trigger.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: #B8860B;
    padding-left: 15px;
}

/* Submenu arrow fix */
.mobile-menu-link.has-submenu {
    padding-right: 30px; /* ok için boşluk */
}

.mobile-menu-link.has-submenu::after {
    content: '▼';
    position: absolute;
    right: 10px; /* oku hizaladık */
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-menu-link.has-submenu::after {
    transform: translateY(-50%) rotate(90deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
}

.mobile-submenu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    color: #B8860B;
    padding-left: 10px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mega-dropdown {
        width: 600px;
    }
    
    .mega-dropdown-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-content {
        width: 250px;
    }
    
    .mega-dropdown {
        width: 400px;
    }
    
    .mega-dropdown-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
    }
    
    .mega-dropdown {
        width: 300px;
    }
    
    .mega-dropdown-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



/* ===== BLOG STYLES ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.3);
    border-color: #B8860B;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #B8860B;
}

.blog-card-excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #999999;
}

.blog-card .btn {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.blog-card .btn:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
}

/* Blog Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-buttons .btn {
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    border: 2px solid rgba(184, 134, 11, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.filter-buttons .btn:hover,
.filter-buttons .btn.active {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1a1a1a;
    border-color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
}

/* Blog Newsletter Section */
.newsletter-section {
    background: rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.newsletter-section h2 {
    color: #B8860B;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 25px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 0.875rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #B8860B;
}

.newsletter-form .btn {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    cursor: pointer;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
}



/* ===== BLOG POST STYLES ===== */
.blog-post-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 100vh;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-meta span {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-content {
    color: #ffffff;
    line-height: 1.8;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #B8860B;
    margin: 30px 0 15px;
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 25px 0 10px;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.post-content li strong {
    color: #B8860B;
    font-weight: 600;
}

/* Blog Grid Styles */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.3);
}

.blog-post-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #B8860B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-read-more {
    color: #B8860B;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-read-more {
    color: #ffffff;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-post-section {
        padding: 100px 0 60px;
    }
    
    .blog-post {
        padding: 25px;
        margin: 0 20px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-image {
        height: 250px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .blog-post-card {
        margin-bottom: 20px;
    }
}


/* ===== BLOG POST BUTTON STYLES ===== */
.blog-post-content .btn,
.blog-post-content .btn-primary {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1a1a1a;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.blog-post-content .btn:hover,
.blog-post-content .btn-primary:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.5);
    color: #1a1a1a;
}

/* Blog post link styles */
.blog-post-content a {
    color: #B8860B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-post-content a:hover {
    color: #DAA520;
    border-bottom-color: #DAA520;
}

.blog-post-content a:not(.btn):not(.btn-primary) {
    position: relative;
}

.blog-post-content a:not(.btn):not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    transition: width 0.3s ease;
}

.blog-post-content a:not(.btn):not(.btn-primary):hover::after {
    width: 100%;
}

/* Blog post typography improvements */
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-content h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-post-content h2 {
    font-size: 2rem;
    color: #B8860B;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    color: #DAA520;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #cccccc;
    font-size: 1.1rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #cccccc;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-post-content blockquote {
    border-left: 4px solid #B8860B;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #DAA520;
    background: rgba(184, 134, 11, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Previous/Next navigation styles */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #B8860B;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(184, 134, 11, 0.1);
    max-width: 45%;
}

.nav-link:hover {
    color: #DAA520;
    background: rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.nav-link .nav-arrow {
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

.nav-link .nav-text {
    display: flex;
    flex-direction: column;
}

.nav-link .nav-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.nav-link .nav-title {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-link {
        max-width: 100%;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .blog-post-content h1 {
        font-size: 2rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content p {
        font-size: 1rem;
    }
}



/* ===== MOBILE & DESKTOP OPTIMIZATIONS ===== */

/* Mobile First Approach */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .blog-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-card p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Tablet Optimizations */
@media (min-width: 481px) and (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .contact-section .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Desktop Optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .blog-card {
        transition: all 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .map-container iframe {
        height: 450px;
    }
}

/* Large Desktop Optimizations */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 6rem;
    }
    
    .section {
        padding: 8rem 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    }
    
    .blog-card:hover {
        transform: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .btn {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    .nav-link {
        min-height: 48px;
        padding: 1.2rem;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .post-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Print Optimizations */
@media print {
    .custom-cursor,
    .hero-video,
    .btn,
    .map-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .blog-post-content {
        color: black !important;
    }
    
    .blog-post-content h1,
    .blog-post-content h2,
    .blog-post-content h3 {
        color: black !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .custom-cursor {
        display: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already dark by default, but ensure consistency */
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
}

/* Light Mode Support (if needed) */
@media (prefers-color-scheme: light) {
    /* Keep dark theme as it's the design choice */
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
}

/* Focus Improvements for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
}

/* Improved Map Container Styles */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 1.5rem;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 134, 11, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.map-section h3 {
    color: #B8860B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Blog Grid Responsive Improvements */
.blog-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 481px) and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

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

/* Contact Form Improvements */
.contact-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #B8860B;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8860B;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Newsletter Form Improvements */
.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #B8860B;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
        min-width: auto;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}

.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

/* Form mesaj kutuları */
.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
