/* ============================================
   Fabrika Yapım - Main Stylesheet
   Dark Mode Support Included
   ============================================ */

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

/* CSS Variables for Theme Support - Siyah Beyaz Tema */
:root {
    /* Light Theme Colors - Siyah Beyaz */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e0e0e0;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    --border-color: #cccccc;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    --accent-primary: #000000;
    --accent-secondary: #333333;
    --accent-hover: #1a1a1a;
    --hero-overlay: rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] {
    /* Dark Theme Colors - Siyah Beyaz */
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b3b3b3;
    --border-color: #404040;
    --shadow: rgba(255, 255, 255, 0.1);
    --shadow-lg: rgba(255, 255, 255, 0.15);
    --accent-primary: #ffffff;
    --accent-secondary: #e0e0e0;
    --accent-hover: #f5f5f5;
    --hero-overlay: rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s, color 0.3s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background-color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s;
}

[data-theme="dark"] .logo-img {
    filter: invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 12px var(--shadow-lg);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-top: 0.5rem;
    z-index: 1000;
}

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

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-secondary);
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s;
}

.theme-toggle:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-primary);
}

/* Nav Buttons Container */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }
    
    .theme-toggle {
        order: 2;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: left;
    overflow: hidden;
    margin-top: 70px;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

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

.hero-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-slide-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    pointer-events: none;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
    padding: 3rem 4rem;
    padding-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
    gap: 1.5rem;
}

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

.hero-slide-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-slide-category:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-slide-title {
    font-size: 4.5rem;
    margin-bottom: 0;
    font-weight: 900;
    text-transform: none;
    letter-spacing: -1px;
    text-shadow: 2px 4px 16px rgba(0,0,0,0.95), 0 0 30px rgba(0,0,0,0.5);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-slide-year {
    font-size: 1.4rem;
    margin-bottom: 0;
    opacity: 0.85;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-slide-description {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    opacity: 0.95;
    max-width: 580px;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 2px 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-slide-video,
.hero-slide-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.hero-slide-video {
    opacity: 1;
}

.hero-slide-backdrop {
    opacity: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

.hero-slide.has-video.video-paused .hero-slide-video {
    opacity: 0;
}

.hero-slide.has-video.video-paused .hero-slide-backdrop {
    opacity: 1;
}

.hero-slide:not(.has-video) .hero-slide-backdrop {
    display: none;
}

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

.hero-slide-btn {
    font-size: 1.15rem;
    padding: 1.1rem 2.8rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-slide-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.hero-slide-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.hero-video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.hero-video-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.hero-video-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-video-toggle-btn:active {
    transform: translateY(0);
}

.hero-video-toggle-btn i {
    font-size: 1rem;
}

.hero-video-toggle-btn span {
    font-size: 0.9rem;
}

.hero-volume-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-volume-mute {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-volume-mute:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-volume-mute:active {
    transform: scale(0.95);
}

.hero-volume-wrapper {
    position: relative;
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.hero-volume-control:hover .hero-volume-wrapper {
    width: 120px;
    opacity: 1;
}

.hero-volume-slider {
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.3s ease;
}

.hero-volume-slider:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.hero-volume-slider::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

.hero-volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.hero-volume-slider::-moz-range-thumb:active {
    transform: scale(1.1);
}

.hero-volume-slider::-moz-range-track {
    height: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
}

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

.hero-slider-prev,
.hero-slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-slider-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    border-color: white;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    font-size: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12pt;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

[data-theme="dark"] .btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

[data-theme="dark"] .btn-primary:hover {
    background-color: var(--text-secondary);
}

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

.btn-secondary:hover {
    background-color: white;
    color: var(--accent-primary);
}

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

.btn-outline:hover {
    background-color: var(--accent-primary);
    color: white;
}

/* Search Section */
.search-section {
    padding: 2rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s;
}

.search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 12pt;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--text-primary);
    border-width: 2px;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 12pt;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    font-weight: 600;
}

/* Projects Section */
.projects-section {
    padding: 2rem 0 4rem 0;
    background-color: var(--bg-primary);
    margin-top: -1rem;
}

.projects-row {
    margin-bottom: 3rem;
    position: relative;
}

.row-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    padding-left: 4rem;
    padding-right: 4rem;
}

@media (max-width: 768px) {
    .row-title {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: 1.2rem;
    }
}

.projects-row-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.projects-row-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 4rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-row-grid::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .projects-row-grid {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
}

.project-card {
    background-color: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    width: 180px;
    display: block;
    text-decoration: none;
}

.projects-row-grid .project-card {
    width: 180px;
}

@media (max-width: 768px) {
    .project-card,
    .projects-row-grid .project-card {
        width: 140px;
    }
}

.project-card:hover {
    transform: scale(1.15);
    z-index: 10;
}

.project-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.projects-row-grid .project-card .project-image {
    height: 260px;
}

@media (max-width: 768px) {
    .project-image,
    .projects-row-grid .project-card .project-image {
        height: 200px;
        font-size: 2.5rem;
    }
}

.project-content {
    display: none;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.project-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.projects-grid .project-card .project-content {
    position: static;
    transform: none;
    opacity: 1;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.projects-grid .project-card .project-title {
    color: var(--text-primary);
    text-shadow: none;
}

.project-year {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
}

.projects-row-grid .project-card .project-description {
    -webkit-line-clamp: 2;
    max-height: 3em;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.project-link:hover {
    gap: 0.75rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* About Preview Section */
.about-preview {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-primary);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    transition: background 0.3s;
    margin-top: 70px;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-hero-title i {
    font-size: 3rem;
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.about-stats-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-stat-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px var(--shadow);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-lg);
    border-color: var(--text-primary);
}

.about-stat-icon {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.about-content-section {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background-color: var(--bg-primary);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-lg);
    border-color: var(--text-primary);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--text-primary);
    transition: all 0.3s;
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    color: var(--bg-primary);
}

.about-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.about-values-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.about-values-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
}

.about-values-list li:hover {
    color: var(--text-primary);
}

.about-values-list li i {
    color: var(--text-primary);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    transition: background 0.3s;
    margin-top: 70px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-hero-title i {
    font-size: 3rem;
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-lg);
    border-color: var(--text-primary);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--text-primary);
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 2rem;
    line-height: 1;
    display: inline-block;
    width: auto;
    height: auto;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    color: var(--bg-primary);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-info-link:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-primary);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow-lg);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-form-title i {
    font-size: 1.75rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-alert {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-alert-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.contact-alert-success {
    background-color: #d1fae5;
    color: #059669;
    border: 2px solid #a7f3d0;
}

.contact-alert i {
    font-size: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.contact-form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-label i {
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-form-label .required {
    color: #dc2626;
    margin-left: 0.25rem;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 12pt;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .contact-form-input:focus,
[data-theme="dark"] .contact-form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.contact-form-submit {
    padding: 1rem 2.5rem;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12pt;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-submit:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    transition: background-color 0.3s;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s;
}

[data-theme="dark"] .footer-logo {
    filter: invert(1);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
    font-weight: 600;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a i {
    font-size: 1.1rem;
    line-height: 1;
}

.social-links a:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px var(--shadow-lg);
    font-weight: 600;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.25rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s;
    margin-top: 70px;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb li:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', 'FontAwesome', 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
    font-weight: 900;
    margin: 0 0.75rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.6;
    display: inline-block;
    line-height: 1;
}

.breadcrumb a {
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.breadcrumb a:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transform: translateX(2px);
}

.breadcrumb a:hover i {
    opacity: 1;
}

.breadcrumb li:last-child {
    color: var(--text-primary);
    font-weight: 600;
    padding-left: 0.5rem;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb li:last-child::before {
    content: '';
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 60px;
        padding: 0.75rem 0;
    }
    
    .breadcrumb ol {
        gap: 0.25rem;
    }
    
    .breadcrumb li {
        font-size: 0.85rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 0.5rem;
        font-size: 0.65rem;
    }
    
    .breadcrumb a {
        padding: 0.3rem 0.5rem;
        gap: 0.4rem;
    }
    
    .breadcrumb a i {
        font-size: 0.8rem;
    }
    
    .breadcrumb li:last-child {
        max-width: 50%;
        padding-left: 0.25rem;
    }
    
    .hero {
        min-height: 70vh;
        margin-top: 60px;
    }
    
    .hero-slide-content {
        padding: 2rem 1.5rem;
        padding-bottom: 8rem;
        max-width: 100%;
        gap: 1rem;
    }
    
    .hero-slide.has-video .hero-slide-content {
        padding-bottom: 10rem;
    }
    
    .hero-slide-category {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .hero-slide-year {
        font-size: 1.1rem;
    }
    
    .hero-slide-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-slide-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
    
    .hero-video-controls {
        bottom: 5rem;
        right: 1rem;
        left: 1rem;
        padding: 0.6rem 1rem;
        gap: 0.75rem;
        border-radius: 40px;
        justify-content: center;
        max-width: calc(100% - 2rem);
    }
    
    .hero-video-toggle-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-video-toggle-btn span {
        font-size: 0.85rem;
    }
    
    .hero-volume-control {
        gap: 0.5rem;
        padding-left: 0.5rem;
    }
    
    .hero-volume-mute {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .hero-volume-wrapper {
        width: 0;
        opacity: 0;
    }
    
    .hero-volume-control:hover .hero-volume-wrapper {
        width: 90px;
        opacity: 1;
    }
    
    .hero-volume-slider {
        height: 4px;
    }
    
    .hero-volume-slider::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }
    
    .hero-volume-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu li {
        width: 100%;
        justify-content: center;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding-left: 1rem;
        left: auto;
        width: 100%;
    }
    
    .dropdown-menu li a {
        justify-content: flex-start;
        text-align: left;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-slide-title {
        font-size: 2rem;
    }
    
    .hero-slide-year {
        font-size: 1.2rem;
    }
    
    .hero-slide-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slide-content {
        padding: 1.5rem;
    }
    
    .hero-slider-controls {
        padding: 0 1rem;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-slider-dots {
        bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-hero-title i {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        padding: 2.5rem 2rem;
    }
    
    .about-content-section {
        padding: 3rem 0;
    }
    
    .contact-hero {
        padding: 4rem 0 3rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-hero-title i {
        font-size: 2rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form-submit {
        width: 100%;
        align-self: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

