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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #0f0f23;
    color: #fff;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ff6b35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #ff6b35;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Home hero: offset for fixed header on mobile */
    #home.hero-section {
        padding-top: 130px;
        min-height: calc(100vh - 130px);
        height: auto;
    }
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px 30px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Phones: make sections single-column and adjust sizing */
@media (max-width: 576px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    .container,
    .hero-container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
        width: 100%;
    }

    img, video {
        max-width: 100%;
        height: auto;
        display: block;
    }
    iframe {
        max-width: 100%;
        display: block;
    }
    /* Home hero: offset for fixed header on small phones */
    #home.hero-section {
        padding-top: 110px;
        min-height: calc(100vh - 110px);
        height: auto;
    }
    .container {
        padding: 0 16px;
    }

    .header-container {
        height: 80px;
        padding: 0 16px;
    }

    .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 0.5px;
        text-align: center;
        line-height: 1.1;
        /* Taşma yapmasın, gerektiğinde ikinci satıra geçebilir */
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Homepage Services: single column and centered */
    #services .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }
    #services .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    /* Homepage Portfolio: single column and centered */
    #portfolio .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }
    #portfolio .portfolio-item {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    #portfolio .portfolio-description {
        text-align: center;
    }

    /* Detail pages: stack CTA buttons vertically */
    .awards-section:not(#awards) .services-button-container,
    .references-section:not(#references) .services-button-container,
    .portfolio-section:not(#portfolio) .services-button-container,
    .services-section:not(#services) .services-button-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .awards-section:not(#awards) .services-button-container .btn,
    .references-section:not(#references) .services-button-container .btn,
    .portfolio-section:not(#portfolio) .services-button-container .btn,
    .services-section:not(#services) .services-button-container .btn {
        width: 100%;
        max-width: 520px;
    }

    /* Detail page - Services (no #services id present) */
    .services-section:not(#services) .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }
    .services-section:not(#services) .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    /* Detail page - Portfolio (no #portfolio id present) */
    .portfolio-section:not(#portfolio) .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }
    .portfolio-section:not(#portfolio) .portfolio-item {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .portfolio-section:not(#portfolio) .portfolio-description {
        text-align: center;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 120px;
        height: 120px;
    }

    .award-card {
        padding: 16px 12px;
    }

    .award-image {
        height: 120px;
    }

    .portfolio-image {
        height: 200px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .footer-logo-icon {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.1;
        text-align: center;
        /* Taşma yapmasın, gerektiğinde ikinci satıra geçebilir */
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    /* Kart başlıkları tek satırda kalsın */
    .service-card h3,
    .award-card h3,
    .portfolio-description h4 {
        text-align: center;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: manual;
    }

    /* Additional heading downsizing on phones */
    .about-text h2 { font-size: 28px; }
    .about-card h3 { font-size: 18px; }
    .team-card h3 { font-size: 16px; }
    .value-card h3 { font-size: 18px; }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><radialGradient id="grad" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:0.3"/><stop offset="100%" style="stop-color:%23000;stop-opacity:1"/></radialGradient></defs><rect width="1920" height="1080" fill="url(%23grad)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* About Page Hero Section - Daha küçük */
.about-hero {
    height: 50vh;
    min-height: 250px;
    padding-top: 130px;
}
.references-hero {
    height: 40vh;
    min-height: 250px;
    padding-top: 130px;
}
.services-hero {
    height: 50vh;
    min-height: 250px;
    padding-top: 130px;
}
.awards-hero {
    height: 50vh;
    min-height: 250px;
    padding-top: 130px;
}
.portfolio-hero {
    height: 50vh;
    min-height: 250px;
    padding-top: 130px;
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Video */
.hero-video {
    flex: 1;
    max-width: 650px;
}

.video-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-frame {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-frame:hover {
    transform: scale(1.02);
}

.video-embed {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}

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

.btn-icon {
    font-size: 14px;
}

/* Container and Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 20px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #111;
}

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

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 15px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 16px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Awards Section */
.awards-section {
    padding: 120px 0;
    background: #000;
}

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

.award-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.award-card:hover::before {
    left: 100%;
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.award-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.award-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-card p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 12px;
}

.award-year {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.awards-button-container {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-button-container {
    text-align: center;
    margin-top: 50px;
}

.portfolio-button-container {
    text-align: center;
    margin-top: 50px;
}

.references-button-container {
    text-align: center;
    margin-top: 50px;
}

/* References Section */
.references-section {
    padding: 120px 0;
    background: #111;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.reference-logo {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.reference-logo:hover::before {
    left: 100%;
}

.reference-logo:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.logo-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.reference-logo a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.reference-logo:hover .logo-container img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    left: 100%;
}

.portfolio-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.portfolio-image iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.4s ease;
}

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

.portfolio-image div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image div {
    background: linear-gradient(145deg, #f7931e, #ff6b35);
}

.portfolio-description {
    padding: 25px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    position: relative;
    z-index: 2;
}

.portfolio-description h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-description p {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.portfolio-category {
    display: inline-block;
    background: linear-gradient(145deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-info-card,
.contact-form-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.card-header {
    margin-bottom: 25px;
    text-align: center;
}

.contact-info-card h3,
.contact-form-card h3 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    font-size: 24px;
    color: #ff6b35;
}

.contact-item:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    opacity: 0.8;
    line-height: 1.3;
    margin-bottom: 3px;
    font-size: 14px;
}

.contact-details small {
    opacity: 0.6;
    font-size: 11px;
    color: #ff6b35;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6b35;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

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

/* Select elementleri için özel stiller */
.form-group select {
    color: #fff;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px;
    border: none;
}

.form-group select option:hover {
    background-color: #ff6b35;
    color: #fff;
}

.form-group select option:checked {
    background-color: #ff6b35;
    color: #fff;
}

.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group select:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Select dropdown menüsü için ek stiller */
.form-group select:focus option {
    background-color: #2a2a2a;
    color: #fff;
}

.form-group select:focus option:hover {
    background-color: #ff6b35;
    color: #fff;
}

/* Tüm select option'ları için genel stil */
select option {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

select option:hover {
    background-color: #ff6b35 !important;
    color: #fff !important;
}

select option:checked {
    background-color: #ff6b35 !important;
    color: #fff !important;
}

/* İlk option (placeholder) için özel stil */
select option:first-child {
    background-color: #1a1a1a !important;
    color: #94a3b8 !important;
    font-style: italic;
}

/* Bütçe aralığı option'ları için özel stil */
select option[value="small"],
select option[value="medium"],
select option[value="large"],
select option[value="custom"] {
    background-color: #1a1a1a !important;
    color: #fff !important;
    font-weight: 500;
}

/* Proje türü option'ları için özel stil */
select option[value="video"],
select option[value="photo"],
select option[value="social"],
select option[value="documentary"],
select option[value="drone"],
select option[value="post"],
select option[value="other"] {
    background-color: #1a1a1a !important;
    color: #fff !important;
    font-weight: 500;
}

/* Map Container */
.map-container {
    margin-top: 40px;
}

.map-container h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    display: block;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.15));
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover::before {
    left: 100%;
}

.social-link svg {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* About Page Specific Styles */
.about-section {
    padding: 120px 0;
    background: #111;
}

.about-content {
    padding: 120px 0;
    background: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6b35;
}

.about-card p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: #000;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.value-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: #111;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card .position {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-card p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        height: 100px;
    }

    .logo-icon {
        width: 100px;
        height: 100px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 20px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-video {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .contact-item {
        padding: 12px;
        gap: 12px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-icon {
        font-size: 20px;
    }

    .contact-details h4 {
        font-size: 13px;
    }

    .contact-details p {
        font-size: 13px;
    }

    .contact-details small {
        font-size: 10px;
    }

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

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .award-card {
        padding: 20px 12px;
    }

    .award-image {
        height: 100px;
    }

    .award-card h3 {
        font-size: 16px;
    }

    .award-card p {
        font-size: 12px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-image {
        font-size: 16px;
    }

    .portfolio-overlay h4 {
        font-size: 16px;
    }

    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .reference-logo {
        padding: 20px 15px;
    }

    .logo-container {
        height: 60px;
    }

    .logo-placeholder {
        font-size: 14px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        font-size: 50px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .team-card {
        padding: 25px 20px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .about-text p {
        font-size: 16px;
    }
}

/* Popup Styles */
#successPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease;
}

.popup-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

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

/* Mobile responsive popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .popup-icon {
        font-size: 3rem;
    }
    
    .popup-content h3 {
        font-size: 1.25rem;
    }
    
    .popup-content p {
        font-size: 0.9rem;
    }
}

/* Additional mobile typography tuning */
@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    p,
    li,
    .section-subtitle {
        font-size: 14px;
    }
    .service-card p,
    .portfolio-description p,
    .award-card p {
        font-size: 13px;
    }
    .nav-link {
        font-size: 14px;
    }
}
