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

body {
    font-family: 'Bebas Neue', sans-serif;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.logo {
    padding-left: 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.menu-icon {
    padding-right: 20px;
    cursor: pointer;
}

.menu-icon span {
    color: white;
    font-size: 32px;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FF6B00;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 9999;
}

.close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    cursor: pointer;
    z-index: 2000;
}

.close-button .material-icons {
    font-size: 36px;
    transition: transform 0.3s ease;
}

.close-button:hover .material-icons {
    transform: rotate(90deg);
}

.menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 60px 0;
    padding-left: 80px;
    height: calc(100vh - 200px);
    justify-content: space-between;
}

.menu-item {
    font-size: 62px;
    color: white;
    text-decoration: none;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    line-height: 1;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.menu-item:hover {
    transform: translateX(20px);
}

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

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    color: white;
    padding: 20px 80px;
    position: absolute;
    bottom: 0;
    left: 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

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

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.menu-icon.active {
    color: white;
}

.menu-icon .material-icons {
    color: #000; /* Default black for all pages */
}

.home-page .menu-icon .material-icons,
.services-page .menu-icon .material-icons {
    color: #fff;
}

.orange-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FF6B00;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 40px;
    color: white;
    font-size: 48px;
    font-weight: bold;
    z-index: 1000;
    animation: fadeInOutZoom 4.5s forwards;
    opacity: 0;
    perspective: 1000px;
}

.stacked-text {
    line-height: 0.9;
    text-align: left;
    font-size: 64px;
    padding: 0;
}

@keyframes fadeInOutZoom {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.3);
    }
    20% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2);
    }
    30% {
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
}

.work-section {
    margin-top: 30px;
    padding: 0;
    width: 100%;
}

.section-title {
    font-size: 48px;
    margin-bottom: 40px;
    padding-left: 10px;
    font-family: 'Bebas Neue', sans-serif;
}

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

.work-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.work-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.work-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 233, 83, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #000;
    margin: 0;
}

.work-overlay p {
    font-size: 1.1rem;
    color: #000;
    margin-top: 10px;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .logo img {
        height: 35px;
    }

    .menu-items {
        padding-left: 40px;
    }

    .menu-item {
        font-size: 48px;
    }

    .menu-footer {
        padding: 20px 40px;
    }

    .stacked-text {
        font-size: 48px;
    }

    .orange-box {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
    }

    .logo img {
        height: 30px;
    }

    .menu-items {
        padding-left: 20px;
        margin: 40px 0;
    }

    .menu-item {
        font-size: 36px;
    }

    .menu-footer {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .stacked-text {
        font-size: 36px;
    }

    .orange-box {
        padding: 15px 25px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .services-section {
        padding: 20px;
    }

    .service-header h2 {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .footer-left, .footer-right {
        width: 100%;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-locations {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .logo img {
        height: 25px;
    }

    .menu-items {
        padding-left: 15px;
        margin: 30px 0;
    }

    .menu-item {
        font-size: 28px;
    }

    .menu-footer {
        padding: 15px;
    }

    .footer-links a, .social-icon {
        font-size: 12px;
    }

    .stacked-text {
        font-size: 28px;
    }

    .orange-box {
        padding: 10px 20px;
    }

    .work-grid {
        padding: 15px;
    }

    .services-section {
        padding: 15px;
    }

    .service-header h2 {
        font-size: 20px;
    }

    .footer-container {
        padding: 30px 15px;
    }

    .footer-left h2 {
        font-size: 20px;
    }

    .email-form input {
        font-size: 14px;
    }

    .location h3 {
        font-size: 16px;
    }

    .location p {
        font-size: 14px;
    }
}

/* Video Container Responsive Düzenlemeler */
@media (max-width: 768px) {
    .video-container {
        height: 60vh;
    }

    .video-container video {
        object-position: center;
    }
}

/* Work Section Responsive Düzenlemeler */
@media (max-width: 768px) {
    .work-info {
        padding: 15px;
    }

    .work-info h3 {
        font-size: 18px;
    }

    .work-info p {
        font-size: 14px;
    }
}

/* Services Section Responsive Düzenlemeler */
@media (max-width: 768px) {
    .service-content {
        padding: 15px;
    }

    .service-content p {
        font-size: 14px;
    }
}

/* Footer Responsive Düzenlemeler */
@media (max-width: 768px) {
    .email-form {
        flex-direction: column;
        gap: 10px;
    }

    .email-form input {
        width: 100%;
    }

    .email-form button {
        width: 100%;
    }
}

/* Services Section Styles */
.services-section {
    padding: 40px 20px;
}

.service-item {
    border-bottom: 1px solid #eee;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.service-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: normal;
    margin: 0;
}

.arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.service-content p {
    margin: 0;
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.service-item.active .arrow {
    transform: rotate(180deg);
}

.service-item.active .service-content {
    max-height: 500px;
}

.services-container {
    padding: 50px 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.service-card p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background-color: #BDE953;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(189, 233, 83, 0.3);
}

.service-card.active {
    background-color: #BDE953;
    border-color: #BDE953;
}

.service-card.active p {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon .material-icons {
    font-size: 36px;
    color: #333;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
    background-color: #fff;
    transform: scale(1.1);
}

.service-card:hover .service-icon .material-icons,
.service-card.active .service-icon .material-icons {
    color: #BDE953;
}

.service-description {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.description-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.description-content.active {
    display: block;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.discover-more {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.discover-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.discover-more:hover .arrow {
    transform: translateX(5px);
}

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

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

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

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

/* Work sayfası özel stilleri */
.work-page .menu-icon {
    color: #FF6B00; /* Turuncu renk */
}

.work-page .menu-icon.active {
    color: white;
}

.work-page .menu-icon .menu-close {
    color: white;
}

/* Services Page Styles */
.services-page {
    background-color: #000;
    color: #fff;
}

.services-hero {
    min-height: 100vh;
    padding: 80px 0 40px;
    display: flex;
    align-items: center;
}

.services-content {
    max-width: 100%;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    align-items: center;
}

.services-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-text {
    padding: 60px;
    max-width: 800px;
}

.services-text h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    line-height: 1;
}

.services-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

@media (max-width: 1440px) {
    .services-text h1 {
        font-size: 4rem;
    }
    
    .services-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-image {
        height: 50vh;
    }
    
    .services-text {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0 30px;
    }
    
    .services-text {
        padding: 30px;
    }
    
    .services-text h1 {
        font-size: 3rem;
    }
    
    .services-text p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
    }
}

.services-section {
    padding: 40px 20px;
}

.service-item {
    border-bottom: 1px solid #eee;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.service-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: normal;
    margin: 0;
}

.arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.service-content p {
    margin: 0;
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.service-item.active .arrow {
    transform: rotate(180deg);
}

.service-item.active .service-content {
    max-height: 500px;
}

.services-container {
    padding: 50px 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.service-card p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background-color: #BDE953;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(189, 233, 83, 0.3);
}

.service-card.active {
    background-color: #BDE953;
    border-color: #BDE953;
}

.service-card.active p {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon .material-icons {
    font-size: 36px;
    color: #333;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
    background-color: #fff;
    transform: scale(1.1);
}

.service-card:hover .service-icon .material-icons,
.service-card.active .service-icon .material-icons {
    color: #BDE953;
}

.service-description {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.description-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.description-content.active {
    display: block;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.discover-more {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.discover-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.discover-more:hover .arrow {
    transform: translateX(5px);
}

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

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

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

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

/* Work sayfası özel stilleri */
.work-page .menu-icon {
    color: #FF6B00; /* Turuncu renk */
}

.work-page .menu-icon.active {
    color: white;
}

.work-page .menu-icon .menu-close {
    color: white;
}

/* Services Page Styles */
.services-page {
    min-height: 100vh;
    background-color: #FF6B00;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-overlay img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.logo-overlay img.small-logo {
    max-width: 150px;  /* Daha küçük boyut */
    height: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.work-item:hover .logo-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0,0,0,0);
    transition: all 0.3s ease;
}

.work-item:hover .video-overlay {
    background: rgba(0,0,0,0.7);
}

.text-overlay {
    padding: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.work-item:hover .text-overlay {
    opacity: 1;
    transform: translateY(0);
}

.text-overlay h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin: 0 0 10px 0;
    color: white;
}

.text-overlay p {
    font-size: 16px;
    margin: 0;
    color: white;
    opacity: 0.8;
}

.grid-gallery {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
    gap: 5px;
}

.grid-row {
    width: 100%;
    height: 20vh;
    overflow: hidden;
    position: relative;
    margin: 2px 0;
}

.sliding-track {
    display: flex;
    position: absolute;
    height: 100%;
    animation: slideTrack 30s linear infinite;
}

/* Her satır için farklı hız ve yön */
.track-1 { animation: slideTrack 30s linear infinite; }
.track-2 { animation: slideTrackReverse 25s linear infinite; }
.track-3 { animation: slideTrack 35s linear infinite; }
.track-4 { animation: slideTrackReverse 28s linear infinite; }

.slide {
    flex: 0 0 300px;
    height: 100%;
    margin: 0 3px;
    border-radius: 5px;
    overflow: hidden;
}

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

@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideTrackReverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.grid-showcase {
    width: 100%;
    background: #FFFFFF;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 600px;
}

.grid-item.medium {
    height: 290px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF6B00;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h2 {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    padding: 20px;
    letter-spacing: 2px;
}

.orange-footer {
    background-color: #FF6B00;
    color: white;
    padding: 50px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    height: 40px;
    margin-bottom: 30px;
}

.footer-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    gap: 10px;
}

.email-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.email-form button {
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.email-form button:hover {
    background-color: #333;
}

.footer-right {
    flex: 1;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.location h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.location p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-locations {
        grid-template-columns: 1fr;
    }
}

.work-intro {
    padding: 120px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 40px;
}

.intro-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin: 0;
    color: #000;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
    padding: 10px 0;
}

.search-box .material-icons {
    color: #000;
    margin-right: 10px;
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    background: transparent;
}

.search-box input::placeholder {
    color: #666;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.work-item.large {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.work-item:hover .video-overlay {
    opacity: 1;
    transform: translateY(0);
}

.video-overlay h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin: 0 0 10px 0;
}

.video-overlay p {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item.large {
        height: 60vh;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
    max-width: 1800px;
    margin: 20px auto 0;
}

.image-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-item.large {
    grid-row: span 2;
}

.image-item.small {
    height: 100%;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-item .video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    z-index: 2;
}

.image-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

.image-item .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.image-item:hover .logo-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.image-item .text-overlay {
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: auto;
}

.image-item:hover .text-overlay {
    transform: translateY(0);
    opacity: 1;
}

.image-item .text-overlay h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.image-item .text-overlay p {
    color: white;
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .image-item.large {
        height: 500px;
    }
    
    .image-item.small {
        height: 300px;
    }
}

.single-video-container {
    padding: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.single-video-container .work-item {
    width: 66.66%; /* 2/3 genişlik */
    margin-left: 0;
    height: 500px;
}

.single-video-container .video-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.single-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .single-video-container .work-item {
        width: 100%;
    }
}

.video-section {
    display: flex;
    gap: 20px;
    width: 100%;
}

.single-video-container .work-item {
    width: 66.66%;
    height: 500px;
    flex-shrink: 0;
}

.inspiration-box {
    flex: 1;
    background-color: #FF5F38;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

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

.inspiration-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #FF5F38;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #000;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .video-section {
        flex-direction: column;
    }

    .single-video-container .work-item {
        width: 100%;
    }

    .inspiration-box {
        height: 300px;
    }
}

.influencer-page {
    background-color: white;
    min-height: 100vh;
    padding: 100px 20px 50px;
}

.influencer-page .intro-text {
    text-align: center;
    margin-bottom: 50px;
}

.influencer-page .intro-text h1 {
    color: #9F2FFF;
    font-size: 64px;
    line-height: 1.2;
    margin: 0;
}

.influencer-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-group label {
    color: #333;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    color: #000;
}

.form-group input:focus {
    outline: none;
    border-color: #9F2FFF;
    box-shadow: 0 0 0 2px rgba(159, 47, 255, 0.2);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #9F2FFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #8B00FF;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .influencer-form {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .influencer-page {
        padding: 80px 15px 30px;
    }

    .influencer-page .intro-text h1 {
        font-size: 48px;
    }

    .influencer-form {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .influencer-page {
        padding: 60px 10px 20px;
    }

    .influencer-page .intro-text h1 {
        font-size: 36px;
    }

    .influencer-form {
        padding: 20px;
    }

    .form-group label {
        font-size: 1.1rem;
    }

    .form-group input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 12px;
        font-size: 1.1rem;
    }
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BDE953;
    color: #000;
    padding: 0 2rem;
}

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

.slogan-container h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    letter-spacing: 2px;
    margin: 0;
    color: #000;
}

@media (max-width: 768px) {
    .slogan-container h1 {
        font-size: 4rem;
    }
}

/* OWWSoftware sayfası için özel footer stilleri */
.owwsoftware-page .orange-footer {
    background-color: #BDE953;
}

.owwsoftware-page .orange-footer,
.owwsoftware-page .footer-nav a,
.owwsoftware-page .location h3,
.owwsoftware-page .location p,
.owwsoftware-page .footer-left h2 {
    color: #000;
}

.owwsoftware-page .email-form input {
    background-color: #fff;
    color: #000;
}

.owwsoftware-page .email-form input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

/* Contact page styles */
.contact-page {
    background-color: #FF6B00;
}

.contact-page .contact-content {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

.contact-page header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.contact-page .header-container {
    padding: 20px 40px;
}

.contact-page .orange-footer {
    margin-top: 0;
}

/* Maps container styles */
.maps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.map-section h2 {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.map-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 1024px) {
    .maps-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .map-frame iframe {
        height: 350px;
    }
}

/* Contact CTA styles */
.contact-cta {
    padding: 40px;
    margin: 0 auto;
    max-width: 1800px;
}

.cta-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.phone-button {
    background: #FF6B00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.phone-button:hover {
    transform: scale(1.1);
    background-color: #ff8533;
}

.phone-button .material-icons {
    font-size: 30px;
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 20px;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Influencer form styles */
.influencer-form {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-group label {
    color: #9F2FFF;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid rgba(159, 47, 255, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    outline: none;
    border-color: #9F2FFF;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #9F2FFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background: #8B00FF;
    transform: translateY(-2px);
}

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

    .influencer-form {
        padding: 15px;
    }
}

/* Influencer Page Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .influencer-page .intro-text h1 {
        font-size: 80px;
    }

    .influencer-page .video-container {
        max-width: calc(100% - 60px);
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .influencer-page {
        padding-top: 80px;
    }

    .influencer-page .intro-text {
        padding: 30px 20px;
    }

    .influencer-page .intro-text h1 {
        font-size: 48px;
    }

    .influencer-page .video-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .influencer-page .video-overlay {
        left: 20px;
        right: 20px;
    }

    .influencer-page .overlay-content h2 {
        font-size: 32px;
    }

    .influencer-page .overlay-content p {
        font-size: 18px;
    }

    .influencer-page .email-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .influencer-page .email-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .influencer-page .email-form button {
        width: 100%;
    }

    .influencer-form {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .influencer-page .intro-text h1 {
        font-size: 36px;
    }

    .influencer-page .overlay-content h2 {
        font-size: 24px;
    }

    .influencer-page .overlay-content p {
        font-size: 16px;
    }

    .influencer-form {
        padding: 15px;
    }
}
