/* --- YCDesign --- */
/* --- Copying and reproduction are prohibited. --- */

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/playfair-display-v40-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600; 
    src: url('/fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700; 
    src: url('/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/montserrat-v31-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500; 
    src: url('/fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600; 
    src: url('/fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

:root {
    --deep-space-blue: #080C16;
    --luxury-gold: #EAB665;
    --text-light: #F0F2F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--deep-space-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-item {
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.main-header {
    background-color: rgba(8, 12, 22, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 1px solid rgba(234, 182, 101, 0.15);
    animation: slideInDown 0.8s ease-out;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; 
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 5px; 
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 12px; 
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1; 
}

.logo-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; 
    color: var(--luxury-gold); 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-weight: 500;
}

.logo-icon {
    height: 32px;
}

.hamburger-menu {
    display: block;
    cursor: pointer;
    z-index: 10001;
}

.hamburger-menu div {
    width: 28px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.4s ease;
}

.hamburger-menu.open .bar1 { transform: rotate(-45deg) translate(-5px, 6px); background-color: var(--luxury-gold); }
.hamburger-menu.open .bar2 { opacity: 0; }
.hamburger-menu.open .bar3 { transform: rotate(45deg) translate(-5px, -6px); background-color: var(--luxury-gold); }

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(8, 12, 22, 0.98);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 60px; 
}

.menu-links { flex: 1; }

.menu-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.menu-links .nav-item {
    margin: 20px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.menu-overlay.show .nav-item { transform: translateY(0); opacity: 1; }
.menu-overlay.show .nav-item:nth-child(1) { transition-delay: 0.2s; }
.menu-overlay.show .nav-item:nth-child(2) { transition-delay: 0.3s; }
.menu-overlay.show .nav-item:nth-child(3) { transition-delay: 0.4s; }
.menu-overlay.show .nav-item:nth-child(4) { transition-delay: 0.5s; }
.menu-overlay.show .nav-item:nth-child(5) { transition-delay: 0.6s; }

.menu-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.nav-svg-icon {
    width: 28px;
    height: 28px;
    fill: rgba(255, 255, 255, 0.5);
    margin-right: 15px;
    transition: all 0.4s ease;
}

.menu-links a:hover {
    color: var(--luxury-gold);
    transform: translateX(10px);
}

.menu-links a:hover .nav-svg-icon {
    fill: var(--luxury-gold);
    transform: scale(1.15) rotate(5deg);
}

.menu-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease 0.4s;
}

.menu-overlay.show .menu-image-wrapper { opacity: 1; transform: translateX(0); }

.menu-helper-img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(234, 182, 101, 0.2));
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('/sources/images/Hero_Backgorund.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8,12,22,0.85) 0%, rgba(8,12,22,0.4) 100%);
    z-index: 0;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    opacity: 0;
    animation: fadeInSlideLeft 1s ease-out 0.5s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, var(--luxury-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 90%;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--luxury-gold);
    text-decoration: none;
    border: 1px solid var(--luxury-gold);
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background-color: var(--luxury-gold);
    color: var(--deep-space-blue);
    box-shadow: 0 0 20px rgba(234, 182, 101, 0.4);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    opacity: 1;
    animation: fadeInSlideRight 1.2s ease-out 0.8s forwards;
}

.hero-laptop {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(-10px 20px 30px rgba(0,0,0,0.5));
}

@keyframes fadeInSlideLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInSlideRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInDown {
    0% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .menu-content { flex-direction: column; justify-content: center; text-align: center; margin-top: 20px; }
    .menu-links a { justify-content: center; }
    .nav-svg-icon { margin-right: 10px; }
    .menu-image-wrapper { display: none; }
    .hero-section { min-height: 120vh; }
    .hero-container { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-content { padding-right: 0; margin-bottom: 50px; bottom: 15px; }
    .hero-image-wrapper { justify-content: center; }
}

.scroll-wrapper {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    animation: simpleFadeIn 1s ease-out 2.5s forwards; 
}

.scroll-down-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mouse-icon {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.5px;
    transition: all 0.4s ease;
}

.mouse-wheel {
    fill: rgba(255, 255, 255, 0.6);
    stroke: none;
    animation: wheelScrollAnim 1.5s infinite ease-out; 
    transition: all 0.4s ease;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.scroll-down-btn:hover .mouse-icon { stroke: var(--luxury-gold); }
.scroll-down-btn:hover .mouse-wheel { fill: var(--luxury-gold); }
.scroll-down-btn:hover .scroll-text { color: var(--luxury-gold); }

@keyframes simpleFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes wheelScrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 768px) {
    .scroll-wrapper {
        bottom: 20px;
    }
}

.brand-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #05080f; 
    border-top: 1px solid rgba(234, 182, 101, 0.1); 
    border-bottom: 1px solid rgba(234, 182, 101, 0.1);
    padding: 25px 0;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.brand-ticker-wrap::before,
.brand-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.brand-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #05080f 0%, transparent 100%);
}

.brand-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #05080f 0%, transparent 100%);
}

.ticker-track {
    display: flex;
    animation: infiniteScroll 35s linear infinite; 
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 40px;
}

.ticker-star {
    width: 24px;
    height: 24px;
    fill: var(--luxury-gold);
    animation: pulseStar 2s ease-in-out infinite;
}

.ticker-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@keyframes pulseStar {
    0% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(234,182,101,0.6)); }
    100% { opacity: 0.6; transform: scale(0.9); }
}

@media (max-width: 768px) {
    .brand-ticker-wrap { padding: 15px 0; }
    .ticker-item span { font-size: 14px; }
    .ticker-item { padding: 0 25px; }
    .ticker-star { width: 18px; height: 18px; }
    .brand-ticker-wrap::before, .brand-ticker-wrap::after { width: 50px; }
}

.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.fade-bottom { transform: translateY(50px); }
.reveal.fade-left { transform: translateX(-50px); }
.reveal.fade-right { transform: translateX(50px); }

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.about-section {
    padding: 120px 0;
    background-color: var(--deep-space-blue);
    overflow: hidden; 
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.section-subtitle-small {
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid rgba(234, 182, 101, 0.3);
    padding-bottom: 5px;
}

.about-section .section-title {
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight-text {
    color: var(--luxury-gold);
    font-style: italic;
    font-weight: 600;
}

.about-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 95%;
}

.about-list {
    list-style: none;
    margin-bottom: 45px;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.check-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--luxury-gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 15px;
    flex-shrink: 0;
    background: rgba(234, 182, 101, 0.1);
    border-radius: 50%;
    padding: 3px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(234, 182, 101, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.about-main-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(-15px 25px 35px rgba(0,0,0,0.6));
}

.experience-badge {
    position: absolute;
    top: 5%;
    left: -20px;
    background: rgba(8, 12, 22, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(234, 182, 101, 0.3);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    overflow: hidden;
}

.experience-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    animation: badgeShine 4s infinite;
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--luxury-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.exp-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.floating-item-slow {
    animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@media (max-width: 992px) {
    .about-container { flex-direction: column; text-align: center; gap: 50px; }
    .about-section .section-title { text-align: center; }
    .about-text { margin: 0 auto 30px auto; }
    .about-list li { justify-content: center; }
    .experience-badge { top: -30px; left: 18%; transform: translateX(-50%); animation: none; }
}

.services-section {
    padding: 120px 0;
    background-color: var(--deep-space-blue);
    position: relative;
    overflow: hidden; 
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 182, 101, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.title-separator {
    width: 60px;
    height: 2px;
    background-color: var(--luxury-gold);
    margin: 0 auto 20px auto;
    position: relative;
}

.title-separator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 25px;
    width: 10px;
    height: 6px;
    background-color: var(--deep-space-blue); 
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.02); /* Çok hafif cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.05); /* İnce gri çerçeve */
    border-radius: 16px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.service-card:hover::after {
    left: 150%; 
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(234, 182, 101, 0.05); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--luxury-gold); 
    transition: all 0.4s ease;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 30px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--luxury-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(234, 182, 101, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(234, 182, 101, 0.05); 
    background: rgba(255, 255, 255, 0.04);
}

.service-card:hover .card-icon-wrapper {
    background: var(--luxury-gold); 
}

.service-card:hover .service-icon {
    color: var(--deep-space-blue); 
    transform: scale(1.1);
}

.service-card:hover .card-link {
    color: #fff;
}

.service-card:hover .arrow-icon {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .services-section { padding: 80px 0; }
    .section-title { font-size: 32px; }
    .service-card { padding: 40px 30px; }
}

.stats-section {
    padding: 80px 0;
    background-color: #03050a; 
    border-top: 1px solid rgba(234, 182, 101, 0.05);
    border-bottom: 1px solid rgba(234, 182, 101, 0.05);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--luxury-gold), transparent);
    opacity: 0.3;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
}

.stat-icon-wrap {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
    background: rgba(234, 182, 101, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--luxury-gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-suffix {
    font-size: 32px;
    color: var(--luxury-gold);
    margin: 0 5px;
}

.stat-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number { font-size: 36px; }
    .stat-suffix { font-size: 24px; }
}
@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.portfolio-section {
    padding: 120px 0;
    background-color: var(--deep-space-blue);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background-color: #0b101d;
    aspect-ratio: 4/3; 
}

.portfolio-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 12, 22, 0.95) 0%, rgba(8, 12, 22, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    padding: 40px 30px;
    z-index: 2;
    transition: background 0.4s ease;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 6px;
    transform: translateY(0); 
    transition: transform 0.4s ease;
}

.portfolio-category {
    font-size: 13px;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.portfolio-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--luxury-gold);
    padding-bottom: 4px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(0);
    transition: transform 0.4s ease, color 0.3s ease;
}

.portfolio-link:hover {
    color: var(--luxury-gold);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.08); 
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(8, 12, 22, 0.98) 0%, rgba(8, 12, 22, 0.3) 100%);
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-category,
.portfolio-item:hover .portfolio-link {
    transform: translateY(-10px); 
}

.portfolio-btn-wrapper {
    text-align: center;
}

@media (max-width: 768px) {
    .portfolio-section { padding: 80px 0; }
    .portfolio-title { font-size: 22px; }
}

.main-footer {
    background-color: #03050a;
    padding: 100px 0 20px 0;
    border-top: 1px solid rgba(234, 182, 101, 0.1);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--luxury-gold), transparent);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo-icon {
    height: 36px;
    margin-right: 12px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s ease;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    background-color: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--deep-space-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(234, 182, 101, 0.3);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--luxury-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--luxury-gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--luxury-gold);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-form {
    display: flex;
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 6px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--luxury-gold); 
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    width: 45px;
    background-color: var(--luxury-gold);
    border: none;
    border-radius: 4px;
    color: var(--deep-space-blue);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #fff;
}

.newsletter-form button:hover svg {
    transform: translateX(3px) translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--luxury-gold);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .main-footer { padding: 80px 0 20px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; } 
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .footer-bottom-links a { margin: 0 10px; }
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 25px; 
}

.nav-phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-phone-icon {
    width: 18px;
    height: 18px;
    color: var(--luxury-gold);
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.nav-phone:hover {
    color: var(--luxury-gold);
}

.nav-phone:hover .nav-phone-icon {
    transform: scale(1.1) rotate(5deg);
}

.nav-video-btn {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-video-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-video-btn:hover {
    color: var(--luxury-gold);
}

.nav-video-btn:hover .nav-video-icon {
    transform: scale(1.1);
}

.video-modal {
    display: none; 
    position: fixed;
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.video-modal.show {
    display: flex;
    opacity: 1;
    animation: fadeInModal 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    padding: 0;
    overflow: hidden;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    outline: none;
    background: #000;
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-video:hover {
    background: rgba(255, 255, 255, 0.3); 
    transform: scale(1.1); 
}

@keyframes fadeInModal {
    0% { transform: scale(0.95) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .video-modal-content { width: 92%; border-radius: 16px; }
    .video-modal-content video { border-radius: 16px; }
    .close-video { right: 0; top: -45px; width: 35px; height: 35px; font-size: 20px;}
}

@media (max-width: 768px) {
    .nav-video-btn { display: none; } 
    .video-modal-content { width: 95%; }
    .close-video { right: 5px; top: -35px; }
}

.nav-quote-btn {
    padding: 8px 24px;
    background: linear-gradient(to right, var(--luxury-gold), #ff9500);
    color: var(--deep-space-blue);
    text-decoration: none;
    border-radius: 30px; 
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 182, 101, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 182, 101, 0.4);
    background: #fff;
    color: var(--deep-space-blue);
}

@media (max-width: 992px) {
    .nav-right-actions { gap: 15px; }
    .nav-phone span { display: none; } 
}

@media (max-width: 768px) {
    .nav-phone, .nav-lang { display: none; }
    .nav-quote-btn { padding: 6px 15px; font-size: 12px; border-radius: 20px;}
    .hamburger-menu { margin-left: 10px; }
}

.menu-links {
    overflow: hidden; 
    position: relative;
}

.menu-slider {
    display: flex;
    width: 200%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); 
}

.menu-slider.slide-active {
    transform: translateX(-50%); 
}

.menu-panel {
    width: 50%;
    flex-shrink: 0;
    padding-right: 20px;
}

.nav-arrow-icon {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.3);
    margin-left: 15px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.nav-item a:hover .nav-arrow-icon {
    transform: translateX(5px);
    fill: var(--luxury-gold);
}

.menu-back-btn {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.menu-back-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-right: 8px;
}

.menu-back-btn:hover {
    color: var(--luxury-gold);
}

.sub-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--luxury-gold);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-section {
    padding: 60px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.clients-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.clients-ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    width: max-content; 
    animation: scrollClients 25s linear infinite; 
}

.clients-ticker-wrap:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px; 
    padding: 0 30px;
}

.client-logo img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%) opacity(40%);
    transition: all 0.4s ease;
    cursor: pointer;
}

.client-logo img:hover {
    filter: grayscale(0%) opacity(100%); 
    transform: scale(1.05); 
}

.client-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    white-space: nowrap;
}

.client-logo span:hover {
    color: var(--luxury-gold);
    transform: scale(1.05);
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@media (max-width: 768px) {
    .clients-section { padding: 40px 0; }
    .client-logo { width: 180px; padding: 0 15px;}
    .client-logo span { font-size: 16px; }
    .client-logo img { max-height: 35px; }
}

.main-header,
.hero-section,
.brand-ticker-wrap,
.services-section,
.about-section,
.stats-section,
.portfolio-section,
.clients-section,
.main-footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    width: 100% !important;
    max-width: 1250px !important;
    margin: 0 auto !important; 
    padding-left: 20px; 
    padding-right: 20px;
    box-sizing: border-box !important;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1350px !important; 
    }
    html {
        font-size: 105% !important; 
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px !important; 
    }
    html {
        font-size: 115% !important; 
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1750px !important; 
    }
    html {
        font-size: 130% !important; 
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2400px !important; 
    }
    html {
        font-size: 180% !important; 
    }
    .hero-laptop, .about-main-img {
        transform: scale(1.2);
        transform-origin: center right;
    }
}

.explode-gallery-section {
    position: relative;
    height: 300vh;
    background-color: var(--deep-space-blue);
    --scroll-progress: 0; 
}

.explode-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px; 
}

.explode-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.explode-text-area {
    text-align: center;
    position: absolute;
    top: 8%;
    z-index: 10;
    opacity: calc(1 - (var(--scroll-progress) * 1.5)); 
}

.explode-scene {
    position: relative;
    width: 450px;
    height: 320px;
    margin-top: 60px;
    transform-style: preserve-3d;
}

.explode-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform;
}

.glass-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(234, 182, 101, 0.2);
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1;
    transition: transform 0.4s ease; 
}

.explode-item:not(.center-item):hover .card-img {
    transform: scale(1.08);
}

.main-glass {
    border: 2px solid var(--luxury-gold);
    background: linear-gradient(135deg, rgba(234,182,101,0.1) 0%, rgba(8,12,22,0.8) 100%);
    z-index: 10;
}

.center-img {
    opacity: 0.4;
}

.main-card-content {
    text-align: center;
    z-index: 5;
    position: relative;
    line-height: 1.4 !important;
}

.main-card-content h3 {
    font-size: 2.8rem;
    letter-spacing: 2px;
}

.main-masterpiece {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 15px !important;
    letter-spacing: 1px;
}

.project-counter-visual { position: absolute; bottom: 25px; z-index: 5; text-align: center; }
.project-counter-visual span { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.scroll-down-icon-visual { width: 20px; height: 35px; border: 2px solid rgba(255,255,255,0.2); border-radius: 10px; margin: 8px auto 0; }

.center-item {
    transform: translateZ(calc(var(--scroll-progress) * -800px)) scale(calc(1 - (var(--scroll-progress) * 0.4)));
    opacity: calc(1 - (var(--scroll-progress) * 1.3));
    transition: transform 0.15s ease-out, opacity 0.1s ease-out;
}

.piece-1 { transform: translate(calc(var(--scroll-progress) * -180%), calc(var(--scroll-progress) * -120%)) translateZ(calc(var(--scroll-progress) * 300px)) rotate(calc(var(--scroll-progress) * -15deg)) scale(calc(0.5 + (var(--scroll-progress) * 0.7))); opacity: var(--scroll-progress); z-index: 20; }
.piece-2 { transform: translate(calc(var(--scroll-progress) * 180%), calc(var(--scroll-progress) * -120%)) translateZ(calc(var(--scroll-progress) * 200px)) rotate(calc(var(--scroll-progress) * 15deg)) scale(calc(0.5 + (var(--scroll-progress) * 0.6))); opacity: var(--scroll-progress); z-index: 18; }
.piece-3 { transform: translate(calc(var(--scroll-progress) * -180%), calc(var(--scroll-progress) * 120%)) translateZ(calc(var(--scroll-progress) * 100px)) rotate(calc(var(--scroll-progress) * -25deg)) scale(calc(0.5 + (var(--scroll-progress) * 0.5))); opacity: var(--scroll-progress); z-index: 16; }
.piece-4 { transform: translate(calc(var(--scroll-progress) * 180%), calc(var(--scroll-progress) * 120%)) translateZ(calc(var(--scroll-progress) * 150px)) rotate(calc(var(--scroll-progress) * 25deg)) scale(calc(0.5 + (var(--scroll-progress) * 0.6))); opacity: var(--scroll-progress); z-index: 14; }

@media (max-width: 768px) {
    .explode-gallery-section { height: 250vh; }
    .explode-text-area { top: 12%; }
    .explode-scene { width: 300px; height: 220px; }
    
    .glass-card { 
        border-radius: 15px; 
        border: 1px solid rgba(234,182,101,0.15); 
        backdrop-filter: blur(12px); 
        -webkit-backdrop-filter: blur(12px);
    }
    .main-glass { border: 2px solid var(--luxury-gold); }
    
    .main-card-content h3 { font-size: 1.8rem; }
    .main-masterpiece { font-size: 1rem; margin-top: 10px !important; }
    
    .piece-1 { transform: translate(calc(var(--scroll-progress) * -90%), calc(var(--scroll-progress) * -90%)) scale(calc(0.4 + (var(--scroll-progress) * 0.5))); }
    .piece-2 { transform: translate(calc(var(--scroll-progress) * 90%), calc(var(--scroll-progress) * -90%)) scale(calc(0.4 + (var(--scroll-progress) * 0.5))); }
    .piece-3 { transform: translate(calc(var(--scroll-progress) * -90%), calc(var(--scroll-progress) * 90%)) scale(calc(0.4 + (var(--scroll-progress) * 0.4))); }
    .piece-4 { transform: translate(calc(var(--scroll-progress) * 90%), calc(var(--scroll-progress) * 90%)) scale(calc(0.4 + (var(--scroll-progress) * 0.5))); }
}

/* --- THE END --- */