/**
    By DARKOD®
    25.09.2025
**/
a {
    text-decoration: none;
}
:root {
    --primary-green: #708D39;
    --secondary-brown: #734822;
    --light-green: #e9f2dd;
    --light-brown: #f5efe8;
    --dark-green: #5a7530;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
    background: 
radial-gradient(circle at 20% 80%, rgba(112, 141, 57, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(115, 72, 34, 0.1) 0%, transparent 50%),
linear-gradient(135deg, rgba(112, 141, 57, 0.75) 0%, rgba(115, 72, 34, 0.9) 100%), 
url('../../img/favorigarten-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, white, transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 2.2em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}
@media (max-width: 1090px) {
    .hero-title {
        font-size: 1.5em;
    }
}
.hero-divider {
    width: 80px;
    height: 4px;
    background: white;
    margin: 30px 0;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.2;
}

.hero-phone {
    background: white;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero-phone i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-element {
    position: absolute;
    background: rgba(var(--bs-white-rgb),0.05);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 1290px) {
    .floating-element {
        display: none;
    }
}

.floating-1 {
    bottom: -55%;
    right: 30%;
    width: 200px;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 0;
    left: -5%;
    width: 180px;
    animation: float 7s ease-in-out infinite 1s;
}

.floating-3 {
    bottom: 5%;
    right: -15%;
    width: 160px;
    animation: float 5s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.floating-element h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--bs-white);
}

.floating-element small {
    color: var(--bs-white);
    line-height: 1.4;
    opacity: 0.5;
}

.stats-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
opacity: 0;
transform: translateY(30px);
    }
    to { 
opacity: 1;
transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from { 
opacity: 0;
transform: translateY(-30px);
    }
    to { 
opacity: 1;
transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from { 
opacity: 0;
transform: translateX(30px);
    }
    to { 
opacity: 1;
transform: translateX(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
transform: translateY(0) translateX(-50%);
    }
    40% {
transform: translateY(-10px) translateX(-50%);
    }
    60% {
transform: translateY(-5px) translateX(-50%);
    }
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-green);
}

.section-title:after {
    content: '';
    display: flex;
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
    margin-top: 15px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--primary-green);
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
}

.feature-list {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 12px;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(112, 141, 57, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info {
    background-color: var(--light-green);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.contact-item a {
    color: #222;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.map-container {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--light-green);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* CTA SECTION */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-light {
    background: white;
    color: var(--primary-green);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    background-color: #222;
    color: white;
    padding: 70px 0 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-phone {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
    
    .stats-container {
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title:after {
        margin: 15px auto 0;
    }
    
    .map-container {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

