/* Global Styles */
:root {
    --primary-color: #bcb8ad;
    --secondary-color: #8c8780;
    --accent-color: #d8d4cc;
    --text-color: #4a4844;
    --light-gray: #f5f4f2;
    --dark-gray: #3a3835;
    --menu-bg: #aba19e;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-gray);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(to right, #2c3e50, #4a4844);
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #f1c40f;
}

.contact-info i {
    font-size: 16px;
}

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

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #f1c40f;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    background: #4a4844;
    box-shadow: 0 2px 10px rgba(74,72,68,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.top-nav {
    padding: 1rem 0;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: var(--light-gray);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--menu-bg);
    min-width: 500px;
    box-shadow: 0 5px 15px rgba(140,135,128,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dropdown:hover .dropdown-content {
    display: grid;
}

.dropdown-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section ul li {
    margin: 0.5rem 0;
}

.dropdown-section ul a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.dropdown-section ul a:hover {
    color: white;
    padding-left: 0.5rem;
}

.iletisim-btn {
    background: #fd4e42;
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 500 !important;
}

.iletisim-btn:hover {
    background: #ff6b60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253,78,66,0.3);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(58,56,53,0.8), rgba(58,56,53,0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #fd4e42;
    color: white;
    box-shadow: 0 5px 15px rgba(253,78,66,0.3);
}

.secondary-btn {
    border: 2px solid #fd4e42;
    color: #fd4e42;
}

.secondary-btn:hover {
    background: #fd4e42;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253,78,66,0.4);
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.category-item ul {
    list-style: none;
}

.category-item ul li {
    margin: 0.8rem 0;
}

.category-item ul a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-item ul a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Utility Classes */
.mt-5 {
    margin-top: 5rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(140,135,128,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(140,135,128,0.2);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--menu-bg);
}

.feature-item h4 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-color);
    opacity: 0.9;
    font-size: 1rem;
}

/* Projects Grid in Features Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(58,56,53,0.9);
    padding: 2rem;
    color: white;
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--primary-color);
}

.contact-whatsapp {
    background: #25D366;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-whatsapp:hover {
    transform: translateY(-5px);
}

.contact-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
}

.contact-whatsapp i {
    font-size: 2rem;
}

.contact-whatsapp p {
    color: white;
    opacity: 0.9;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.main-footer {
    background: var(--dark-gray);
    color: var(--light-gray);
    padding: 4rem 0 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.8;
}

.footer-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-category h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-category ul {
    list-style: none;
}

.footer-category ul li {
    margin: 0.5rem 0;
}

.footer-category ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-category ul a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.footer-contact i {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    background: rgba(58,56,53,0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: 120px;
        width: 100%;
        overflow-x: hidden;
    }

    .main-header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .social-links {
        margin-top: 8px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        background: #4a4844;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        z-index: 1000;
        height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu > li > a {
        padding: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-content {
        position: static;
        min-width: 100%;
        width: 100%;
        display: none;
        padding: 0.5rem;
        background: rgba(171, 161, 158, 0.2);
        box-shadow: none;
        margin: 0;
    }

    .dropdown.active .dropdown-content {
        display: grid;
        grid-template-columns: 1fr;
    }

    .dropdown-section {
        padding: 0.5rem;
    }

    .dropdown-section h4 {
        font-size: 1rem;
        color: white;
        margin-bottom: 0.5rem;
    }

    .dropdown-section ul li {
        margin: 0;
    }

    .dropdown-section ul li a {
        padding: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        z-index: 1001;
        padding: 0.5rem;
    }

    .iletisim-btn {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.8rem !important;
    }

    /* Hero Section Mobile */
    .hero-section {
        height: 60vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Sections Mobile */
    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .categories-grid,
    .features-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .category-item,
    .feature-item {
        padding: 1.5rem;
    }

    /* Contact Form Mobile */
    .contact-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-whatsapp {
        padding: 1.5rem;
    }

    .contact-whatsapp a {
        font-size: 1.2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-categories {
        grid-template-columns: 1fr;
    }
}

/* Additional Mobile Menu Styles */
@media (max-width: 768px) {
    .top-bar .contact-info {
        display: none;
    }

    .top-bar .social-links {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        height: 35px;
    }

    .top-nav {
        padding: 0.8rem 0;
    }
}

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

/* Product Hero Section */
.product-hero {
    background: linear-gradient(rgba(58,56,53,0.8), rgba(58,56,53,0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.product-header h1 {
    font-size: 2.5rem;
    color: #fd4e42;
    margin-bottom: 1rem;
}

.product-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.product-header.aos-init.aos-animate h1 {
    color: #fd4e42;
}

.product-header.aos-init.aos-animate p {
    color: #fd4e42;
    opacity: 0.9;
}

/* Product Details Section */
.product-details {
    padding: 4rem 0;
    background: var(--light-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(140,135,128,0.1);
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(140,135,128,0.2);
}

.product-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(140,135,128,0.1);
}

.product-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.product-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-color);
}

.product-info ul li i {
    color: var(--menu-bg);
    font-size: 1.2rem;
}

.product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.product-cta .primary-btn,
.product-cta .secondary-btn {
    flex: 1;
    text-align: center;
} 