/* FONTS — Bebas Neue (free, Google Fonts) used for primary headings */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* H1, H2, H3 → Bebas Neue (primary headings) */
h1, h2, h3,
.logo-bold {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
}

/* H4, H5, H6 → Poppins (sub-headings) */
h4, h5, h6,
.subheading {
    font-family: 'Poppins', sans-serif;
}

/* Body text → Montserrat (already set on * above) */

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* VIDEO BACKGROUND */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
}

/* MAIN CONTENT */
.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

/* LOGO HEADER */
.logo-header {
    margin-bottom: 30px;
    z-index: 10;
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    letter-spacing: 6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-bold {
    font-weight: 700;
}

.logo-light {
    font-weight: 300;
    opacity: 0.8;
}

/* FLOATING NAVBAR (GLASSMORPHISM) */
.floating-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 60px;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease;
}

.floating-nav:hover {
    background: rgba(20, 20, 20, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
    margin: 0 auto;
    /* center links if logo isn't in nav */
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
    opacity: 1;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 3 dots specific style instead of a typical hamburger bar */
.mobile-menu-btn.dots {
    width: 30px;
    height: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn.dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Active 3 dots -> X animation */
.mobile-menu-btn.dots.active span:nth-child(1) {
    transform: translateX(12px) scale(0);
    opacity: 0;
}

.mobile-menu-btn.dots.active span:nth-child(2) {
    transform: rotate(45deg);
    width: 20px;
    height: 3px;
    border-radius: 2px;
}

.mobile-menu-btn.dots.active span:nth-child(3) {
    transform: rotate(-45deg) translateX(-7px) translateY(7px);
    width: 20px;
    height: 3px;
    border-radius: 2px;
}

/* HERO SECTION CONTENT */
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
    max-width: 900px;
    margin-top: -50px;
    /* Slight offset since header pushes it down */
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content .highlight {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: #fff;
}

/* LEFT SOCIAL SIDEBAR */
.social-sidebar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 12px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: scale(1.2);
    color: #fff;
}

/* BOTTOM WIDGET */
.bottom-widget {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.widget-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.widget-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: #e0e0e0;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .floating-nav {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 15px 30px;
        border-radius: 40px;
        width: max-content;
        position: fixed;
        bottom: 30px;
        right: 30px;
        top: auto;
        left: auto;
    }

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

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

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;

        /* Hidden mobile menu styling */
        position: fixed;
        bottom: 90px;
        right: 30px;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
        width: max-content;

        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.9);
        transform-origin: bottom right;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nav-links a {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .social-sidebar {
        left: auto;
        right: 20px;
        padding: 10px;
        gap: 15px;
    }
}

/* CONTENT SECTIONS */
.content-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    position: relative;
    z-index: 5;
    /* Animation setup */
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Contact section fades down into the footer */
#iletisim {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(5, 5, 8, 0.55) 60%,
        rgba(5, 5, 8, 1) 100%
    );
}

.content-section:not(.services-fullscreen-section)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 700px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-container {
    background: transparent;
    padding: 60px;
    border-radius: 0;
    max-width: 1300px;
    width: 95%;
    text-align: center;
    transition: transform 0.5s ease;
}

.glass-container h2 {
    font-size: 48px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-container p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

/* SERVICES FULLSCREEN SECTION */
.services-fullscreen-section {
    position: relative;
    width: 100vw;
    height: 900vh;
    padding: 0;
    /* Override generic section padding */
    display: block;
    overflow: visible;
}

.services-sticky-container {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-bg.fade-out {
    opacity: 0;
    transform: scale(1.03);
}

.service-bg-darkening {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 55%, transparent 100%),
        linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* SERVICE INFO — Redesigned */
.service-info {
    position: absolute;
    bottom: 150px;
    left: 50px;
    z-index: 5;
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 480px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-info-accent-line {
    width: 3px;
    min-height: 100%;
    background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0.15) 100%);
    border-radius: 3px;
    flex-shrink: 0;
    margin-right: 22px;
}

.service-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.service-info-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.4s ease;
}

.service-info h3 {
    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    -webkit-text-fill-color: #fff;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    transition: opacity 0.4s ease;
}

.service-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
    max-width: 420px;
    margin: 4px 0 0;
    transition: opacity 0.4s ease;
}

.service-info-footer {
    margin-top: 14px;
}

.service-info-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-info-cta:hover {
    color: #fff;
    gap: 14px;
}

.service-info-cta i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.service-info-cta:hover i {
    transform: translateX(4px);
}

/* Mobile responsive for the new info box */
@media (max-width: 768px) {
    .service-info {
        bottom: 150px;
        left: 20px;
        right: 20px;
        max-width: calc(100vw - 40px);
    }

    .service-info h3 {
        font-size: 28px;
    }

    .service-info p {
        font-size: 12px;
    }
}

/* macOS STYLE DOCK */
.mac-dock-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    transform: none;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    /* Fade hint on both sides for mobile scroll */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.mac-dock {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);

    /* Scrollable on all screens, centered on desktop */
    width: max-content;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.mac-dock::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .mac-dock-container {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .mac-dock {
        justify-content: center;
        overflow-x: visible;
    }
}

.dock-item {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    color: #fff;
    font-size: 20px;
}

@media (min-width: 768px) {
    .dock-item {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Dock Item Hover Details */
.dock-item:hover {
    width: 90px;
    height: 90px;
    margin: 0 10px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 36px;
    transform: translateY(-10px);
}

/* Sibling scaling */
.dock-item:hover+.dock-item,
.dock-item:has(+ .dock-item:hover) {
    width: 75px;
    height: 75px;
    margin: 0 5px;
    font-size: 30px;
    transform: translateY(-5px);
}

.mac-dock:has(.dock-item:hover) .dock-item:not(:hover) {
    opacity: 0.6;
}

/* Active item */
.dock-item.active {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

/* Tooltip */
.dock-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    z-index: 20;
}

.dock-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.dock-item:hover .dock-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    top: -50px;
}

/* RESPONSIVE CSS FOR MOBILE & TABLETS */
@media (max-width: 1400px) {
    #hizmetlerimiz .glass-container {
        max-width: 100%;
        width: 98%;
        padding: 40px 20px;
    }
}

@media (max-width: 1024px) {
    .glass-container {
        padding: 40px 30px;
    }

    .services-media {
        height: 400px;
    }

    .service-media-overlay h3 {
        font-size: 26px;
    }

    .service-media-overlay p {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .glass-container {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .glass-container h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .floating-nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .services-track {
        padding: 0 5vw;
        gap: 15px;
    }

    .service-slide {
        min-width: 250px;
        max-width: 280px;
        padding: 30px 20px;
    }

    .service-slide i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .service-slide h3 {
        font-size: 18px;
    }

    .services-media {
        height: 300px;
    }

    .service-media-overlay {
        padding: 20px;
    }

    .service-media-overlay h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service-media-overlay p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Contact Resizing */
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px 10px;
    }

    .contact-text h2 {
        font-size: 36px;
        text-align: center;
    }

    .contact-text p {
        text-align: center;
        font-size: 16px;
    }

    .contact-card {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-card .icon-box {
        margin: 0 auto;
    }

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

    .contact-details span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service-slide {
        min-width: 160px;
        max-width: 180px;
        padding: 15px 10px;
    }

    .services-media {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
        flex-direction: column;
        gap: 5px;
    }
}

/* CONTACT SECTION REDESIGN */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px 20px;
}

@media (min-width: 900px) {
    .contact-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .contact-wrapper h2 {
        text-align: left;
        margin-bottom: 25px;
    }
}

.contact-text {
    flex: 1;
    padding-right: 40px;
}

.contact-text h2 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    font-weight: 300;
}

.contact-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 35px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-card>* {
    position: relative;
    z-index: 1;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card .icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover .icon-box {
    background: #fff;
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-details h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-details span {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ABOUT SECTION REDESIGN */
.about-story-container {
    max-width: 1000px;
    padding: 60px 50px;
    text-align: left;
    margin: 0 auto;
    position: relative;
}

.about-story-container h2 {
    font-size: 56px;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-story-container h3 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.about-lead {
    font-size: 24px !important;
    line-height: 1.6 !important;
    color: #fff !important;
    margin-bottom: 25px !important;
    font-weight: 400;
}

.about-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 25px !important;
}

.highlight-word {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 2px 8px;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-block;
}

.highlight-word:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.about-quote {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-left: 2px solid rgba(255, 255, 255, 0.25);
    padding: 30px 40px;
    border-radius: 0 24px 24px 0;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-quote:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left-color: rgba(255, 255, 255, 0.6);
}

.quote-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.4s ease, color 0.4s ease;
}

.about-quote:hover .quote-icon {
    transform: rotate(-10deg) scale(1.1);
    color: #fff;
}

.about-quote p {
    font-size: 20px !important;
    font-weight: 500;
    color: #fff !important;
    margin: 0 !important;
    font-style: italic;
    line-height: 1.5 !important;
}

/* Staggered text animations triggered by scroll object */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.content-section.active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential stagger for text elements */
.content-section.active .staggered:nth-child(1) {
    transition-delay: 0.1s;
}

.content-section.active .staggered:nth-child(2) {
    transition-delay: 0.25s;
}

.content-section.active .staggered:nth-child(3) {
    transition-delay: 0.4s;
}

.content-section.active .staggered:nth-child(4) {
    transition-delay: 0.55s;
}

.content-section.active .staggered:nth-child(5) {
    transition-delay: 0.7s;
}

.content-section.active .staggered:nth-child(6) {
    transition-delay: 0.85s;
}

.content-section.active .staggered:nth-child(7) {
    transition-delay: 1.0s;
}

@media (max-width: 900px) {
    .about-story-container {
        padding: 40px 20px;
    }

    .about-story-container h2 {
        font-size: 42px;
    }

    .about-story-container h3 {
        font-size: 26px;
    }

    .about-lead {
        font-size: 18px !important;
    }

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

    .about-quote {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 0 0 24px 24px;
    }

    .about-quote p {
        font-size: 16px !important;
    }

    .about-quote:hover {
        transform: translateY(10px) translateX(0);
        border-top-color: rgba(255, 255, 255, 0.5);
        border-left-color: transparent;
    }
}

/* ===================== FOOTER ===================== */
.site-footer {
    position: relative;
    z-index: 5;
    background: rgb(5, 5, 8);
    border-top: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px 60px;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-link {
    text-decoration: none;
}

.footer-logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.footer-logo-bold {
    color: #fff;
}

.footer-logo-light {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    max-width: 280px;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
}

.footer-socials a:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Link columns */
.footer-links-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 22px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, gap 0.25s ease;
}

.footer-links-col ul li a i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links-col ul li a:hover {
    color: #fff;
    gap: 12px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

.footer-fikern {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-fikern:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-fikern-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-fikern:hover .footer-fikern-logo {
    opacity: 0.9;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 30px 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 24px 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 12px;
    }
}

/* ===================== WEB TASARIM SECTION ===================== */
.web-tasarim-section {
    padding: 140px 60px;
    align-items: stretch;
}

.wt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

/* Text side */
.wt-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wt-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.wt-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
}

.wt-accent {
    background: linear-gradient(135deg, #e0e0e0 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wt-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding-left: 18px;
}

.wt-body {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0;
}

.wt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.wt-tags span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.wt-tags span:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.wt-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 6px;
    width: fit-content;
    transition: gap 0.3s ease, border-color 0.3s ease;
}

.wt-cta:hover {
    gap: 16px;
    border-color: #fff;
}

.wt-cta i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.wt-cta:hover i {
    transform: translateX(4px);
}

/* Photo side */
.wt-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.wt-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wt-photo-wrap:hover .wt-photo {
    transform: scale(1.04);
}

/* Floating badge on photo */
.wt-photo-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.wt-photo-badge i {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .web-tasarim-section {
        padding: 100px 30px;
    }

    .wt-inner {
        gap: 50px;
    }

    .wt-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .web-tasarim-section {
        padding: 80px 24px;
    }

    .wt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Photo above text on mobile */
    .wt-photo-wrap {
        order: -1;
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }

    .wt-title {
        font-size: 44px;
    }

    .wt-lead {
        font-size: 16px;
    }
}