/* ============================================
   Februusix - Main Stylesheet
   Februusix Design Style
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2442;
    --primary-light: #2d4a7c;
    --secondary-color: #d4a039;
    --secondary-light: #e6b84a;
    --secondary-dark: #b8892e;
    --text-color: #2d3748;
    --text-light: #718096;
    --text-dark: #1a202c;
    --bg-color: #ffffff;
    --bg-light: #f0f4f8;
    --bg-gray: #edf2f7;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #f56565;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-width: 1200px;
    --header-height: 90px;
    --top-bar-height: 45px;
}

/* ===== Text Justify - Tüm Sayfalarda ===== */
p,
.description,
.product-description,
.product-description p,
.service-description,
.service-description p,
.content,
.content p,
.product-detail-content p,
.product-short-desc,
.service-short-desc,
.about-content p,
.about-content-full p,
.footer-about p {
    text-align: justify;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Top Header Bar ===== */
.top-header {
    background-color: #121212;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-header-left {
    display: flex;
    gap: 30px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.top-info:hover {
    color: var(--secondary-color);
}

.top-info i {
    font-size: 12px;
    color: var(--secondary-color);
}

.top-header-right {
    display: flex;
    align-items: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.lang-switcher span {
    opacity: 0.4;
    color: #fff;
}

.lang-switcher a {
    color: rgba(255,255,255,0.6);
    padding: 2px 5px;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--secondary-color);
}

/* ===== Main Header ===== */
.main-header {
    background-color: var(--bg-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-menu > li > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li > a i {
    font-size: 10px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-color);
}

.nav-menu > li > a.active::after {
    width: 100%;
}

/* ===== CENTER LOGO - Large Circle ===== */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.logo-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 30px;
    border: none;
}

.logo-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-light {
    display: none;
}

.main-header.scrolled .logo-wrapper {
    width: 100px;
    height: 100px;
    top: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-logo {
    display: inline-block;
    margin-bottom: 40px;
}

.mobile-logo img {
    height: 200px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    display: inline-block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--secondary-color);
}

.mobile-lang {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.mobile-lang a {
    color: rgba(255,255,255,0.7);
    padding: 10px 25px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    font-weight: 600;
}

.mobile-lang a.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--top-bar-height));
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

/* YouTube Video */
.slider-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.slider-video-embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    border: none;
}

/* Slider Overlay - Gradient from left */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26,54,93,0.85) 0%, rgba(26,54,93,0.6) 40%, rgba(26,54,93,0.2) 70%, transparent 100%);
    z-index: 1;
}

/* Slider Content - LEFT ALIGNED */
.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slider-text {
    max-width: 550px;
    color: #fff;
}

.slider-text h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-text p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
}

.slider-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--secondary-color);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,160,57,0.4);
}

.btn-text {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    background: none;
}

.btn-text i {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--secondary-color);
}

.btn-text:hover i {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-dark {
    background: var(--primary-color);
    color: #fff;
}

.btn-dark:hover {
    background: var(--primary-dark);
}

/* ===== CTA Box Section - OVERLAPPING SLIDER ===== */
.cta-box-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 40px 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 5px solid var(--secondary-color);
}

.cta-box-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 10px;
}

.cta-box-content p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
    max-width: 550px;
    line-height: 1.7;
}

/* ===== Services Section - MODERN LINE ICONS ===== */
.services-section {
    background: var(--bg-light);
}

.services-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-icon-line {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-line svg {
    width: 65px;
    height: 65px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-item:hover .service-icon-line svg {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.service-item:hover h4 {
    color: var(--secondary-color);
}

.service-divider {
    width: 1px;
    background: var(--border-color);
    align-self: stretch;
    margin: 25px 0;
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-content {
    padding-top: 10px;
}

.about-content .section-label {
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-info .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ===== Footer ===== */
.main-footer {
    background: #121212;
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    height: 200px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 18px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ===== Page Header ===== */
.page-header {
    background: #121212;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.contact-info-card i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: #e1e1e1;
    padding: 35px 0;
    text-align: center;
}

.cta-section .cta-content h3 {
    color: #4e4c47;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-section .btn-primary {
    background: #1b1b1b;
    color: #fff;
}

/* ===== About Page Full Content ===== */
.about-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-full,
.about-content-full p,
.about-content-full div,
.about-content-full span {
    color: #232323;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

.about-content-full p {
    margin-bottom: 20px;
}

.about-content-full h2,
.about-content-full h3 {
    color: var(--text-dark);
    margin: 30px 0 15px;
    text-align: left;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image::before {
        display: none;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cta-box-content p {
        max-width: 100%;
    }
    
    .service-divider {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-header {
        height: auto;
        padding: 10px 0;
    }
    
    .top-header-inner {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-header-left {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo {
        position: relative;
        left: auto;
        transform: none;
    }
    
    .logo-wrapper {
        width: 80px;
        height: 80px;
        top: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slider-text h1 {
        font-size: 28px;
    }
    
    .slider-arrows {
        display: none;
    }
    
    .cta-box-section {
        margin-top: -30px;
        padding-bottom: 50px;
    }
    
    .services-row {
        flex-direction: column;
    }
    
    .service-item {
        border-bottom: 1px solid var(--border-color);
        padding: 25px;
    }
    
    .service-item:last-child {
        border-bottom: none;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-content h2 {
        font-size: 26px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    /* Footer e-posta mobil düzeltme */
    .footer-contact-icons .contact-icon-list {
        text-align: left;
    }
    
    .footer-contact-icons .contact-icon-list li {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-contact-icons .contact-icon-list .value {
        word-break: break-all;
        font-size: 13px;
        text-align: left;
    }
    
    .footer-contact-icons .contact-icon-list .value.emails {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .footer-contact-icons .contact-icon-list .value.emails a {
        font-size: 12px;
        word-break: break-all;
        text-align: left;
    }
    
    .footer-logo {
    display: flex;
    justify-content: center;
    }

    .footer-logo img {
    margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .slider-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 250px;
    }
}

/* Product Categories Section */
.product-categories-section {
    background: #e8edf2;
    padding: 80px 0;
}

.product-categories-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-categories-intro {
    flex: 0 0 320px;
    max-width: 320px;
}

.product-categories-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product-categories-intro p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-categories-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-category-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-category-image {
    height: 180px;
    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.05);
}

.product-category-content {
    padding: 20px;
}

.product-category-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c9a227;
    display: inline-block;
}

.product-category-content p {
    color: #718096;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    min-height: 40px;
}

.category-link {
    color: #1a365d;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.category-link:hover {
    color: #c9a227;
}

.category-link i {
    font-size: 10px;
    transition: transform 0.3s;
}

.category-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .product-categories-wrapper {
        flex-direction: column;
    }
    
    .product-categories-intro {
        flex: none;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .product-categories-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-categories-section {
        padding: 50px 0;
    }
    
    .product-categories-intro h2 {
        font-size: 24px;
    }
    
    .product-categories-cards {
        grid-template-columns: 1fr;
    }
    
    .product-category-content p {
        min-height: auto;
    }
}