/*
Theme Name: FMS Su Arıtma
Theme URI: https://fmssuaritma.com
Author: WPThemes
Author URI: https://wpthemes.com.tr
Description: Modern ve responsive su arıtma sistemleri teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fmssuaritma
Tags: responsive, modern, water-treatment

*/

:root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --header-height: 80px;
    --border-radius: 0.75rem;
    --transition: all 0.3s ease;
    --primary-color-rgb: 37, 99, 235;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    background: var(--text-color);
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

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

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0;
    color: var(--white);
    max-width: 800px;
    margin: 0;
}

.slide-subtitle {
    display: inline-block;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.slide-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.slide-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

.slide-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.slide-buttons .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.slide-buttons .btn:hover i {
    transform: translateX(5px);
}

.slide-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.slide-buttons .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.slide-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
}

.slide-buttons .btn-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;

    border: none;
    border-radius: 0;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    opacity: 0.9;
    position: absolute;
    top: 50%;
    margin-top: -22.5px;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {

    transform: scale(1);
    opacity: 1;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.125rem;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.swiper-button-prev:hover::after {
    transform: translateX(-2px);
}

.swiper-button-next:hover::after {
    transform: translateX(2px);
}

.swiper-pagination {
    bottom: 2rem !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;

    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;

}

/* Slider Scroll Indicator */
.slider-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slider-scroll-indicator a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.slider-scroll-indicator .scroll-text {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.slider-scroll-indicator i {
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 1400px) {
    .slide-content h2 {
        font-size: 3.5rem;
    }

    .swiper-button-prev {
        left: 1rem;
    }

    .swiper-button-next {
        right: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .hero-section {
        height: 85vh;
    }

    .slide-content h2 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 992px) {
    .hero-section {
        height: 80vh;
        min-height: 550px;
    }

    .slide-content h2 {
        font-size: 2.75rem;
    }

    .slide-buttons .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        margin-top: 0;
        min-height: 400px;
    }

    .site-header {
        position: relative;
        background: var(--white);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        height: auto;
        padding: 1rem 0;
    }

    .slide {
        min-height: 400px;
    }

    .slide-content {
        padding: 2rem 0;
    }

    .slide-content h2 {
        font-size: 2.25rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .slide-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .swiper-pagination {
        bottom: 4rem !important;
    }

    .slider-scroll-indicator {
        bottom: 1.5rem;
    }

    .about-image {
        display: none;
    }

    .about-content {
        width: 100%;
        padding: 2rem 0;
    }

    .about-text {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

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

    .slide-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

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

body {
    line-height: 1.6;
    background-color: var(--light-gray);
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    height: 100%;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    color: var(--white);
    max-width: 800px;
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.3s forwards;
}

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

/* Swiper Customization */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.5rem;
    color: var(--white);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.2);
}

/* Main Content */
.site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

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

.content-area {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-area:hover {
    transform: translateY(-5px);
}

/* Footer Styles */
.site-footer {
    position: relative;
    background: #111827;
    color: #f3f4f6;

}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-bottom: -2px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Main */
.footer-main {
    padding: 6rem 0 4rem;
    position: relative;
}

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

.company-info p {
    color: #9ca3af;
    margin: 1.5rem 0;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.widget-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-widget:hover .widget-title::after {
    width: 50px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 1rem;
}

.footer-widget ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-widget ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.75rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-widget ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-items {
    display: grid;
    gap: 1.5rem;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p,
.theme-credit p {
    color: #9ca3af;
    font-size: 0.95rem;
}

.theme-credit p {
    color: #9ca3af;
    font-size: 0.95rem;
    opacity: 0.8;
}

.theme-credit a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-credit a:hover {
    color: var(--primary-color);
}

.theme-credit strong {
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .footer-widgets {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }

    .contact-info {
        grid-column: 1 / -1;
    }

    .contact-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 500px;
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-items {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .footer-newsletter {
        padding: 3rem 0;
    }

    .newsletter-text h3 {
        font-size: 1.75rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }

    .theme-credit p {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 480px) {
    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle-icon {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

/* Header Scroll Effects */
.header-hidden {
    transform: translateY(-100%);
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation Hover Effects */
.main-navigation a.hover-effect::after {
    width: 100%;
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Mobile Menu Icon Animation */
.menu-toggle-icon.active {
    background: transparent;
}

.menu-toggle-icon.active::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle-icon.active::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Widget Animations */
.widget {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Enhanced Slider Content Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.swiper-slide-active .slide-content h2 {
    animation: slideInLeft 1s forwards;
}

.swiper-slide-active .slide-content p {
    animation: slideInRight 1s 0.3s forwards;
}

.swiper-slide-active .slide-content .btn {
    animation: fadeInUp 1s 0.6s forwards;
}

/* Enhanced Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Additional Responsive Enhancements */
@media (max-width: 1024px) {
    .site-header {
        height: 70px;
    }

    .header-inner {
        width: 90%;
    }

    .slide-content h2 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }

    .mobile-menu-toggle {
        padding: 0.8rem;
    }

    .slide-content {
        width: 95%;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .main-navigation ul li {
        padding: 0.5rem 2rem;
    }

    .main-navigation.active ul {
        display: flex;
    }

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

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .header-inner {
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 6rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about-section {
    width: 100%;
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text .lead {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4b5563;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.about-image img {
    width: 140%;
    height: auto;
    margin-bottom: -150px;

}

/* Products Section */
.products-section {
    width: 100%;
    padding: 8rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(37, 99, 235, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

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

.contact-item i {
    font-size: 1.5rem;
}

.contact-form {
    margin-top: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .section-title,
    .about-text h2,
    .contact-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

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

    .btn-outline {
        margin-left: 0;
    }
}

/* Utility Classes */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Styles */
@media screen and (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 768px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.125rem;
    }

    .grid {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

/* WooCommerce Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(37, 99, 235, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.product-badge .onsale {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: bottom 0.3s ease;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-actions a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-content h3 a:hover {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-price del {
    color: #6b7280;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-rating {
    color: #fbbf24;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 8rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Enhanced Contact Section */
.contact-section {
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: -1;
}

.contact-info .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
    }
}

@media screen and (max-width: 640px) {
    .product-content h3 {
        font-size: 1.125rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }
}

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path/to/pattern.png');
    opacity: 0.1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* About Page */
.about-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 24px;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
}

.about-hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-text .lead {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #1f2937;
}

.about-features ul li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.about-hero-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: auto;

    transition: transform 0.3s ease;
}

.about-img-main:hover {
    transform: translateY(-5px);
}

/* Stats Section */
.about-stats-section {
    padding: 5rem 0;
    background-color: #fff;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover::before {
    width: 80%;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Tarihçe Bölümü */
.about-history {
    padding: 6rem 0;
    background-color: #f9fafb;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

.title-accent {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e5e7eb;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 2rem 0 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
    margin-right: auto;
}

.timeline-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
}

/* Misyon & Vizyon */
.mission-vision-section {
    padding: 6rem 0;
    background-color: #fff;
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-box, .vision-box {
    padding: 3rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mission-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid var(--primary-color);
}

.vision-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid #3b82f6;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
}

.mission-icon, .vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.vision-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.mission-content h3, .vision-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mission-content p, .vision-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li, .vision-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #4b5563;
}

.mission-list li i, .vision-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.vision-list li i {
    color: #3b82f6;
}

/* Değerlerimiz */
.values-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    padding: 2.5rem;
    text-align: center;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.value-item:nth-child(2) .value-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.value-item:nth-child(3) .value-icon {
    background-color: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.value-item:nth-child(4) .value-icon {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

.content-area {
    padding: 2rem 0 6rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .about-hero-text h2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 992px) {
    .about-hero-content, 
    .mission-vision-wrapper,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-year {
        left: 0;
        transform: none;
    }
    
    .timeline-content {
        width: 85%;
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    .history-timeline::before {
        left: 45px;
        transform: none;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 4rem 0;
    }
    
    .about-hero-text h2 {
        font-size: 2rem;
    }
    
    .mission-box, .vision-box {
        padding: 2rem;
    }
    
    .value-item {
        padding: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Products Page Styles */
.products-main {
    padding: 8rem 0;
    background: #f8fafc;
}

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

.products-intro .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.products-intro .section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
}

.products-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-button:hover,
.filter-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(37, 99, 235, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-badge .onsale,
.product-badge .featured {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-badge .featured {
    background: #2563eb;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    justify-content: center;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-actions .action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: var(--primary-color);
}

.product-excerpt {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-category span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-details {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-details i {
    transition: transform 0.3s ease;
}

.btn-details:hover {
    color: var(--secondary-color);
}

.btn-details:hover i {
    transform: translateX(3px);
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-products p {
    color: #64748b;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.no-products::before {
    content: '\f06e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.no-filtered-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.no-products i,
.no-filtered-products i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.no-products p,
.no-filtered-products p {
    color: #6b7280;
    font-size: 1.125rem;
}

.no-filtered-products {
    animation: fadeIn 0.5s ease;
}

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

/* Product Features Section */
.product-features {
    padding: 6rem 0;
    background: #fff;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text {
    padding-right: 2rem;
}

.title-accent {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.features-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-text p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1.125rem;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem;
}

.features-image {
margin-bottom: -120px;
}




/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path/to/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .features-text h2 {
        font-size: 2.25rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 992px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-text {
        padding-right: 0;
    }
    
    .features-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .products-intro .section-title {
        font-size: 2rem;
    }
    
    .products-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-button {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
    
    .features-text h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-button {
        width: 100%;
    }
    
    .products-intro .section-description,
    .features-text p {
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 1rem;
    }
}

/* Product Detail Page */
.product-detail-main {
    padding: 5rem 0;
    background: #f8fafc;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-main-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-main-image img,
.product-gallery:hover .product-main-image img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumb-item {
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumb-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.thumb-item.active {
    border-color: var(--primary-color);
}

.thumb-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Product Info */
.product-categories {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.product-category {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.product-sku, .product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    font-weight: 600;
    color: #374151;
}

.meta-value {
    color: #6b7280;
}

.meta-value.in-stock {
    color: #10b981;
    font-weight: 600;
}

.meta-value.out-of-stock {
    color: #ef4444;
    font-weight: 600;
}

/* Product Features */
.product-key-features {
    margin-bottom: 2rem;
}

.product-key-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 1.05rem;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .product-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-title {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 768px) {
    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .single-product-main {
        padding: 3rem 0;
    }
    
    .product-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .product-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .inquiry-content h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 2rem 0 4rem;
}

.page-hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Contact Info */
.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.info-item p {
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.info-item a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Single Product Page Styles */
.product-hero {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.single-product-main {
    padding: 3rem 0;
}

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

.product-gallery {
    position: relative;
}

.product-gallery-main {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

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



.gallery-thumb {
    border: 2px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary-color);
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.25rem;
}

.product-info h1 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-category {
    font-size: 0.875rem;
    color: #64748b;
}

.product-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-category a:hover {
    text-decoration: underline;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    overflow: hidden;
}

.quantity button {
    background: #f1f5f9;
    border: none;
    padding: 0.5rem 1rem;
    color: #64748b;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity button:hover {
    background: #e2e8f0;
}

.quantity input {
    width: 3rem;
    text-align: center;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 0.5rem;
}

.add-to-cart {
    flex: 1;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-to-cart:hover {
    background: var(--primary-color-dark);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-new {
    background: #10b981;
    color: white;
}

.badge-sale {
    background: #ef4444;
    color: white;
}

.product-features {

    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
}

.feature-item i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery-thumbs {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .product-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-form {
        flex-direction: column;
    }
    
    .quantity {
        width: 100%;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 1rem 0;
    }
    
    .product-info h1 {
        font-size: 1.5rem;
    }
    
    .product-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Modern Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header .lead {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}



.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    color: white;
    font-size: 1.25rem;
}

.contact-text h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    color: #1e293b;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.1);
}

.input-group input:focus + .input-icon,
.input-group textarea:focus + .input-icon {
    color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.25);
}

.submit-button:hover::before {
    left: 100%;
}

.button-icon {
    font-size: 1.1rem;
}

.form-response {
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-card,
    .form-card {
        padding: 1.25rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.svg') center/cover;
    opacity: 0.1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Info Blocks */
.contact-info-section {
margin-bottom: 5rem;
}

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

.contact-block {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

}

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

.block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.block-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.block-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.block-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.block-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.block-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.block-link:hover {
    color: var(--secondary-color);
}

.block-link:hover i {
    transform: translateX(5px);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.is-open {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-badge.is-closed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status-badge i {
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

/* Contact Form Section */
.contact-main-section {
    padding: 5rem 0;
    background: #fff;
}

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

.form-card, .map-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-header, .map-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.form-icon, .map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.form-icon i, .map-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-map {
    height: 400px;
    width: 100%;
}

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

.map-actions {
    display: flex;
    padding: 1.5rem;
    gap: 1rem;
}

.map-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-button i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

.map-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Social Section */
.social-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.social-wrapper {
    text-align: center;
}

.social-header {
    margin-bottom: 3rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon i {
    font-size: 1.5rem;
    color: #fff;
}

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

.social-icons .social-icon {
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons .social-icon i {
    color: #374151;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.social-icons .social-icon span {
    font-weight: 500;
}

.social-icons .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    color: #fff;
}

.social-icons .social-icon:hover i {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-blocks {
        grid-template-columns: 1fr;
    }
    
    .map-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .block-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icons .social-icon {
        width: 100%;
    }
}

/* Contact Form Alert Styles */
#contact-form-home .alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

#contact-form-home .alert-success {
    background-color: #10B981;
    color: #ffffff;
    border: 1px solid #059669;
}

#contact-form-home .alert-danger {
    background-color: #EF4444;
    color: #ffffff;
    border: 1px solid #DC2626;
}

#contact-form-home .alert i {
    margin-right: 8px;
}

/* Modern Gallery Styles */
.page-hero {
    background: linear-gradient(to right, #1f2937, #374151);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero .page-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.gallery-section {
    margin-top: 100px;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-button {
    background: #f3f4f6;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-button .button-count {
    background: #e5e7eb;
    color: #6b7280;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.filter-button:hover {
    background: #e5e7eb;
}

.filter-button.active {
    background: #2563eb;
    color: #fff;
}

.filter-button.active .button-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.gallery-grid {
    margin: 0 -12px;
}

.gallery-item {
    width: calc(33.333% - 24px);
    margin: 12px;
    break-inside: avoid;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

.gallery-item-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.gallery-item-inner:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gallery-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gallery-zoom {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.no-gallery-message {
    text-align: center;
    padding: 4rem 0;
    color: #6b7280;
}

.no-gallery-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gallery-item {
        width: calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }

    .page-hero .page-title {
        font-size: 2rem;
    }

    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-item {
        width: calc(100% - 24px);
    }
}

/* Gallery Page Styles */
.page-hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    margin-bottom: 4rem;
}

.page-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.page-description {
    color: #93c5fd;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.75rem 1.5rem;
    background: #f0f9ff;
    border: none;
    border-radius: 0.5rem;
    color: #1e40af;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button .button-count {
    background: #bfdbfe;
    color: #1e40af;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
    background: #1e40af;
    color: #fff;
}

.filter-button:hover .button-count,
.filter-button.active .button-count {
    background: #fff;
    color: #1e40af;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.2);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 175, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-zoom {
    width: 3.5rem;
    height: 3.5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-zoom i {
    color: #1f2937;
    font-size: 1.25rem;
}

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

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

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

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

.gallery-item {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
}

/* Single Product Page Modern Styles */
.product-hero {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    padding: 2rem 0;
    color: #fff;
    margin-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

.single-product-main {
    padding-bottom: 5rem;
}

.product-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-gallery {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-badges {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2rem;
}

.new-badge {
    background: #3b82f6;
    color: white;
}

.featured-badge {
    background: #1e40af;
    color: white;
}

.sale-badge {
    background: #ef4444;
    color: white;
}

.product-main-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-zoom-overlay {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zoom-icon:hover {
    background: #1e40af;
    color: #fff;
    transform: scale(1.1);
}

.product-gallery:hover .gallery-zoom-overlay {
    opacity: 1;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    overflow-x: auto;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-item:hover {
    opacity: 0.9;
}

.thumb-item.active {
    opacity: 1;
    border-color: #1e40af;
}

.thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 1rem 0;
}

.product-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-category {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.product-summary {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.product-sku, .product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    font-weight: 600;
    color: #1f2937;
}

.meta-value {
    color: #6b7280;
}

.meta-value.in-stock {
    color: #10b981;
    font-weight: 600;
}

.meta-value.out-of-stock {
    color: #ef4444;
    font-weight: 600;
}

.product-key-features {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product-key-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.features-list li i {
    color: #1e40af;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #1e40af;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-secondary {
    background: white;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-secondary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.product-tabs {
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.tabs-nav {
    display: flex;
    overflow-x: auto;
    background: #f3f4f6;
}

.tab-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4b5563;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.tab-button:hover {
    color: #1e40af;
}

.tab-button.active {
    color: #1e40af;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1e40af;
}

.tabs-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-content {
    color: #4b5563;
    line-height: 1.7;
}

.tab-content h1, .tab-content h2, .tab-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.tab-content p {
    margin-bottom: 1.5rem;
}

.tab-content ul, .tab-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table table {
    width: 100%;
}

.specs-table th, .specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.specs-table th {
    font-weight: 600;
    color: #1f2937;
    width: 40%;
    background: #f9fafb;
}

.specs-table tr:last-child th, .specs-table tr:last-child td {
    border-bottom: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-item.active .faq-question {
    background: #dbeafe;
}

.product-videos {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

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

.video-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-item h4 {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #1f2937;
    background: white;
}

.related-products {
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 175, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .action-btn {
    transform: translateY(0);
}

.action-btn:hover {
    background: #1e40af;
    color: white;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-content h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-content h3 a:hover {
    color: #1e40af;
}

.product-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details i {
    transition: transform 0.3s ease;
}

.btn-details:hover {
    color: #1e3a8a;
}

.btn-details:hover i {
    transform: translateX(4px);
}

.product-inquiry {
    background: linear-gradient(to right, #f0f9ff, #dbeafe);
    padding: 3rem 0;
    border-radius: 0.75rem;
}

.inquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.inquiry-content {
    padding: 2rem;
}

.inquiry-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.inquiry-content p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 3rem;
    height: 3rem;
    background: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.method-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.method-details p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
}

.inquiry-form {
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: #1f2937;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-color: #1e40af;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-content-wrapper {
        gap: 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .tab-button {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .product-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 1.5rem 0;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .thumb-item {
        width: 60px;
        height: 60px;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-details {
        margin-top: 0.5rem;
    }
}

/* Mobil Görünüm İyileştirmeleri */
@media screen and (max-width: 768px) {
    /* Container düzenlemesi */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Hero section düzenlemesi */
    .hero-section .slide-content {
        padding: 30px 0;
    }

    .hero-section h2 {
        font-size: 28px;
        line-height: 1.3;
    }

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

    /* Features section düzenlemesi */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    /* Products section düzenlemesi */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    /* About section düzenlemesi */
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        width: 50%;
        margin-bottom: 20px;
    }

    /* Contact section düzenlemesi */
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    /* Genel düzenlemeler */
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Slider düzenlemesi */
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .hero-section h2 {
        font-size: 24px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .slide-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stat-item {
        width: 100%;
    }
}

/* About Section Mobil Düzenlemeler */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-text {
        text-align: center;
        padding: 0 15px;
    }

    .about-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-text .lead {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 25px 0;
    }

    .stat-item {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .stat-number {
        font-size: 24px;
        font-weight: 700;
        color: #2196F3;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 14px;
        color: #666;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0;
        padding: 0;
        list-style: none;
    }

    .about-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        padding: 10px 15px;
        background: #f8f9fa;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .about-features li i {
        color: #2196F3;
        font-size: 16px;
    }

    .about-image {
        width: 100%;
        padding: 0 15px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .about-text .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-features li {
        font-size: 14px;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 60px 20px 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-nav li {
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-nav a:hover {
    color: #2196F3;
}

/* Hamburger Menü Düzenlemeleri */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1000;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header Düzenlemeleri */
@media screen and (max-width: 768px) {
    .site-header {
        position: relative;
        z-index: 1000;
    }

    .header-inner {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background: #fff;
    }

    .hamburger-menu {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

/* Gallery Grid Styles */
.gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.gallery-caption {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-actions {
    display: flex;
    justify-content: center;
}

.gallery-zoom {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.gallery-zoom:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .gallery-caption {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item-inner {
        padding-bottom: 66.67%; /* 3:2 Aspect Ratio for mobile */
    }
}

/* Footer Contact Styles */
.footer-widget.contact-info {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 1rem;
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.icon-wrapper i {
    color: var(--white);
    font-size: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-details .label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details address {
    font-style: normal;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

.contact-details .contact-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details .contact-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details .hours {
    color: var(--white);
    line-height: 1.5;
}

.footer-widget.contact-info .widget-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-widget.contact-info .widget-title::after {
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
    .footer-widget.contact-info {
        padding: 1.5rem;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-group {
        gap: 1rem;
    }

    .icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .icon-wrapper i {
        font-size: 0.875rem;
    }
}

/* İletişim Bölümü İkon Renkleri */
.contact-details .contact-item .icon-wrapper i {
    color: var(--primary-color);
}