@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
    --gold-primary: #d4af37;
    --gold-secondary: #ffd700;
    --gold-light: #fff6d6;
    --dark-primary: #1a1a1a;
    --dark-secondary: #333333;
    --white: #ffffff;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--dark-primary);
    background-color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
}

.loader i {
    font-size: 4rem;
    color: var(--gold-primary);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

/* Brand - Logo & Name */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.brand:hover {
    transform: scale(1.02);
}

.brand i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-left: 10px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.brand:hover i {
    transform: rotate(10deg);
    color: var(--gold-secondary);
}

.brand-name {
    margin-right: 5px;
}

.brand-name span {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.brand:hover .brand-name span {
    color: var(--gold-secondary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--gold-primary);
    font-weight: 700;
}

/* Right Side - Contact & Language */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-left: 8px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid var(--gold-primary);
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.contact-btn i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-btn span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 8px;
}

.contact-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover i {
    transform: rotate(-15deg);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 10px;
    margin-left: 0;
}

.selected-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.selected-language:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.selected-language i.fa-globe {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.selected-language span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-primary);
    min-width: 120px;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: none;
    z-index: 9999;
}

.language-dropdown.active {
    display: block;
}

.language-selector.active .language-dropdown {
    display: block;
}

.selected-language i.fa-chevron-down {
    font-size: 0.8rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.language-selector.active .selected-language i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown li {
    list-style: none;
}

.language-dropdown a {
    display: block;
    padding: 8px 15px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-dropdown a:hover,
.language-dropdown a.active {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.language-dropdown a.active::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
    color: var(--gold-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero section adjustment for fixed header */
.hero {
    padding-top: 80px;
}

/* Responsive design for header */
@media (max-width: 992px) {
    .nav-menu ul {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .brand-name span {
        font-size: 1.8rem;
    }
    
    .brand i {
        font-size: 2rem;
    }
    
    .contact-btn {
        padding: 6px 10px;
    }
    
    .contact-btn span {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        padding: 10px 0;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .menu-toggle {
        display: none; /* Hamburger menü butonunu gizle */
    }
    
    .brand {
        margin: 0;
        position: relative;
        z-index: 1005;
        text-align: right;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        display: none; /* Ana menüyü gizle */
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        opacity: 1;
        visibility: visible;
        z-index: 1005;
        flex-direction: row;
    }
    
    .contact-buttons {
        display: none; /* Telefon numarasını gizle */
    }
    
    /* Dil seçiciyi doğrudan görünür yap */
    .language-selector {
        margin: 0 15px 0 0;
        position: relative;
        z-index: 1005;
        width: auto;
        display: inline-block;
    }
    
    .selected-language {
        padding: 8px 15px;
        background-color: var(--gold-primary);
        color: var(--dark-primary);
        font-weight: bold;
        border: 1px solid var(--dark-primary);
        border-radius: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .selected-language i {
        color: var(--dark-primary);
        margin: 0 5px;
        font-size: 0.9rem;
    }
    
    .language-dropdown {
        background-color: var(--dark-primary);
        border: 1px solid var(--gold-primary);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 1012;
        right: 0;
        left: auto;
        transform: none;
        width: 120px;
        margin-top: 5px;
    }
    
    .language-dropdown a {
        font-weight: bold;
        padding: 10px;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .language-dropdown a:hover {
        background-color: var(--gold-primary);
        color: var(--dark-primary);
    }
    
    /* Overlay kaldır */
    .overlay {
        display: none;
    }
}

/* Hero section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/herobg1.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    padding-top: 80px;
}

/* Hero Animations */
.animate-title {
    opacity: 0;
    animation: fadeInDown 1.2s forwards 0.3s;
}

.animate-text {
    opacity: 0;
    animation: fadeInUp 1.2s forwards 0.6s;
}

.animate-btn {
    opacity: 0;
    animation: fadeInScale 1.2s forwards 0.9s;
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--gold-secondary);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.hero p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 20px auto 40px;
    line-height: 1.4;
}

.hero-btn {
    display: inline-block;
    background-color: var(--gold-primary);
    color: var(--dark-primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--dark-primary);
    transition: width 0.3s ease-in-out;
    z-index: -1;
}

.hero-btn:hover {
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover::before {
    width: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

/* About section */
.about {
    padding: 120px 0;
    background-color: var(--gold-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--gold-primary);
    bottom: 0;
    left: 20%;
    border-radius: 2px;
}

.about-text {
    max-width: 800px;
    margin-bottom: 60px;
    font-size: 1.3rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 30px;
}

.feature {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(212, 175, 55, 0.05);
    transition: height 0.5s ease;
    z-index: 0;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 4px solid var(--gold-primary);
}

.feature:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature p {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-text {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.3rem;
    line-height: 1.8;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
}

.service-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 20%,
        rgba(212, 175, 55, 0.1) 40%,
        rgba(212, 175, 55, 0.1) 60%,
        transparent 80%
    );
    transform: rotate(45deg);
    transition: all 0.7s ease;
    z-index: -1;
    opacity: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(100%, 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
    border: 2px dashed var(--gold-primary);
}

.service-item:hover .service-icon {
    transform: rotateY(360deg);
    background-color: var(--gold-primary);
    color: var(--white);
    border: 2px solid var(--gold-primary);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-primary);
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-secondary);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background-color: var(--dark-primary);
    position: relative;
    color: var(--white);
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery .section-title {
    color: var(--white);
}

.gallery-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold-primary);
    color: var(--dark-primary);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.gallery-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: all 0.5s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--gold-primary);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 1rem;
}

.fade-in-filter {
    animation: fadeInFilter 0.5s ease forwards;
}

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

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--gold-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--gold-primary);
    opacity: 0.05;
    border-radius: 50%;
}

.testimonials .section-title {
    text-align: center;
}

.testimonial-slider {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    opacity: 0;
    animation: testimonialFadeIn 0.5s forwards;
}

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

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

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-secondary);
    font-style: italic;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    line-height: 1;
    color: var(--gold-primary);
    opacity: 0.2;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-primary);
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--gold-primary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--gold-primary);
    transform: scale(1.2);
}

.testimonial-active {
    animation: testimonialActive 0.5s forwards;
}

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

/* Contact section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact .section-title {
    color: var(--white);
}

.contact-info-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

.contact-item {
    flex: 1 1 300px;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Item Icons 3D Effect */
.icon-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotateY(20deg) rotateX(10deg);
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.3),
        5px 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item:hover .contact-icon {
    color: var(--gold-secondary);
    transform: rotateY(-20deg) rotateX(-10deg) scale(1.1);
    animation: iconFloat 2s ease-in-out infinite alternate;
}

@keyframes iconFloat {
    0% {
        transform: rotateY(-15deg) rotateX(-5deg) translateY(0);
    }
    100% {
        transform: rotateY(15deg) rotateX(5deg) translateY(-10px);
    }
}

.contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--gold-secondary);
}

.contact-item p {
    font-size: 1.2rem;
}

.map-container {
    margin-top: 80px;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark-primary);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--dark-primary), var(--gold-primary), var(--dark-primary));
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 0 0 auto;
    min-width: auto;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
}

.footer-logo i {
    font-size: 2.2rem;
}

.footer-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-contact {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.footer-contact p {
    margin: 5px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--gold-primary);
    margin-left: 10px;
    font-size: 1.2rem;
}

.footer-nav {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 900px;
    margin: 0 auto;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-align: center;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
    background-color: rgba(0, 0, 0, 0.5);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: center;
    width: 100%;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive design for header */
@media (max-width: 1200px) {
    .contact-btn span {
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .contact-buttons {
        flex-direction: column;
        margin-left: 10px;
    }
    
    .contact-btn {
        padding: 6px 10px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-info {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links a {
        min-width: 100px;
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page loading animation */
body.loaded {
    animation: fadeIn 0.8s ease;
}

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

/* Responsive design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .contact-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .header-right {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background-color: var(--dark-primary);
        transition: all 0.4s ease;
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-right.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        height: auto;
        padding: 30px 0;
    }
    
    nav ul li {
        height: auto;
        margin: 0;
    }
    
    nav ul li a {
        height: auto;
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-buttons {
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
        margin: 0;
    }
    
    .contact-btn {
        margin: 5px 0;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature, .contact-item {
        flex: 1 1 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .about-text, .feature p, .contact-item p, .service-item p {
        font-size: 1rem;
    }
    
    .feature h3, .contact-item h3, .service-item h3 {
        font-size: 1.4rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Yeni Basit Dil Seçici */
.lang-container {
    position: relative;
    margin: 0 10px;
}

#lang-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

#lang-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#lang-button i.fa-globe {
    color: var(--gold-primary);
}

#lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 120px;
    background-color: var(--dark-primary);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-top: 4px;
    padding: 5px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

#lang-dropdown a {
    display: block;
    padding: 8px 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
}

#lang-dropdown a:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

#lang-dropdown a.active {
    color: var(--gold-primary);
    font-weight: bold;
}

/* Responsive için */
@media (max-width: 768px) {
    .lang-container {
        margin: 10px 0;
    }
    
    #lang-button {
        width: 100%;
        justify-content: center;
    }
    
    #lang-dropdown {
        width: 100%;
    }
}

/* Developer Info */
.developer-info {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.htdeltov-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 20px;
    overflow: hidden;
}

.htdeltov-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: all 0.8s ease;
}

.htdeltov-link:hover {
    color: var(--gold-secondary);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

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

.htdeltov-text {
    margin: 0 5px;
}

.htdeltov-link i {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .language-selector {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .language-selector {
        margin: 20px 30px;
        width: calc(100% - 60px);
    }
    
    .selected-language {
        justify-content: center;
    }
    
    .language-dropdown {
        width: 100%;
    }
    
    /* Adjust existing media query to add space for language selector */
    .header-right {
        padding-bottom: 30px;
    }
}

.htdeltov-link.shimmer::before {
    left: 100%;
    animation: shimmer 1.5s ease-out;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.htdeltov-link:hover i {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold-primary);
    color: var(--dark-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

body.menu-open {
    overflow: hidden;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Make language selector more accessible on mobile */
.language-selector {
    margin: 0 5px;
    position: relative;
    z-index: 1001;
}

.selected-language {
    padding: 12px 20px;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-primary);
    border-radius: 30px;
} 