/*
Theme Name: Meco Medikal
Theme URI: https://mecomedikal.com
Author: Meco Medikal
Author URI: https://mecomedikal.com
Description: Modern medical equipment WordPress theme with 3D animations, slider, and responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meco-medikal
Tags: medical, health, e-commerce, responsive, modern, clean
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-light: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    overflow: hidden; /* Dışarı taşan 3D gölgeleri engellemek için */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    perspective: 1000px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo img, 
.custom-logo-link img {
    max-height: 50px !important; /* Logo yüksekliğini 50px yaptık */
    height: 50px !important;
    max-width: 220px !important; /* Logonun yatayda çok yer kaplamasını önlemek için sınır koyduk */
    width: auto !important;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-3d {
    display: inline-block;
    transform-style: preserve-3d;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    50% { transform: rotateY(8deg) rotateX(3deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    display: block; /* Sectionların kaybolmasını engellemek için düzeltildi */
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    perspective: 1000px;
}

.title-3d {
    display: inline-block;
    transform-style: preserve-3d;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: translateZ(0) scale(1); }
    50% { transform: translateZ(20px) scale(1.05); }
}

/* Image Slider */
.slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 100px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    perspective: 1000px;
    font-weight: 800;
    letter-spacing: -1px;
}

.title-3d {
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.title-3d:hover {
    transform: translateZ(20px) rotateX(5deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-3d {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-3d:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.hero-3d-object {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 1s ease-out;
}

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

.floating-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
    transform-style: preserve-3d;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateX(3deg) rotateY(3deg); }
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.floating-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.floating-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.feature-3d:hover {
    transform: translateZ(20px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.stat-card {
    background: var(--gradient);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.stat-3d:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Products Section */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px) translateZ(10px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.product-image {
    background: #fdfdfd;
    height: 280px;
    position: relative;
    overflow: hidden;
    display: block;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

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

.product-icon {
    background: var(--gradient);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left; /* Daha modern ve okunabilir olması için sola çekildi */
    padding: 20px;
}

.product-category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--light-text);
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.product-card-title {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
}

.product-card-excerpt {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card-price::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.btn-product-modern {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-product-modern:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    color: white;
}

.product-card-footer {
    margin-top: 15px;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.contact-3d:hover {
    transform: translateZ(15px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--light-text);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    color: var(--text-color);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-section ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.social-3d:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.85;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-3d-object {
        order: -1;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 25px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title,
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid,
    .team-grid,
    .certifications-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-card, .team-card, .cert-card, .feature-card {
        padding: 30px 20px;
    }
    
    .partnerships-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
}

/* About Page Responsive Adjustments */
@media (max-width: 992px) {
    .about-intro-section {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 40px;
    }
    .about-image {
        order: -1; /* Image appears above text on mobile */
        display: flex; /* Mobilde tekrar görünür yap */
    }
    .about-highlights {
        grid-template-columns: 1fr; /* Mobilde alt alta diz */
        gap: 15px;
        margin: 30px 0 0;
    }
    .about-page, .mvv-section, .team-section, .certifications-section {
        margin-bottom: 50px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .about-visual { width: 250px; height: 250px; }
    .visual-ring { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    html, body {
        position: relative;
    }

    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }

    .logo {
        font-size: 1.4rem;
    }
    
    .section-title,
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-content {
        gap: 30px;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .about-page {
        padding: 60px 0;
    }
    .about-intro-section {
        margin-bottom: 60px;
    }
    .section-heading, .about-text-content h2 { 
        font-size: 1.6rem; 
        margin-bottom: 30px;
        text-align: center;
    }
    .about-highlights {
        gap: 15px;
    }
    .highlight-number {
        font-size: 1.5rem;
    }
    
    .product-main-image {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .product-icon-large {
        font-size: 4rem;
    }

    /* Mobilde 3D görsel boyutlarını tam sığacak şekilde küçült */
    .about-visual { width: 180px; height: 180px; }
    .visual-ring { width: 220px; height: 220px; }
    .visual-icon { font-size: 3rem; }

    .about-text-content {
        text-align: center;
    }
    .about-description {
        font-size: 1rem;
        text-align: center;
    }
}

/* Page Header Styles */
.page-header {
    background: var(--gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Home Features Section */
.home-features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 100%;
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.feature-3d:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-light);
}

.cta-content {
    background: var(--gradient);
    color: white;
    padding: 70px 50px;
    border-radius: 24px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.cta-3d:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.cta-content .btn-primary:hover {
    background: var(--bg-light);
}

/* About Page Styles */
.about-page {
    padding: 80px 0;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    width: 100%;
}

.about-text-content {
    width: 100%;
    max-width: 100% !important;
    display: block !important;
    overflow: hidden;
}

.about-image {
    text-align: center; /* Görseli ortala */
}

/* Modern About Page Redesign Styles */
.about-modern-layout {
    padding: 100px 0;
    overflow-x: hidden;
}

.about-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto 0;
    border-radius: 2px;
}

.stats-counter-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.stat-item {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.stat-count {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.mvv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.team-card-v2 {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.team-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8fafc;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.certs-modern-section .certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Mobile Fixes for New Layout */
@media (max-width: 992px) {
    .about-split-section, 
    .stats-counter-bar, 
    .modern-values-grid, 
    .certs-modern-section .certifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stat-count { font-size: 2.5rem; }
    .about-split-section { text-align: center; }
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-3d-wrapper {
    perspective: 1000px;
}

.about-visual {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: visualRotate 10s linear infinite;
    max-width: 100%;
}

.about-custom-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes visualRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.visual-icon {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.visual-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px solid rgba(0, 102, 204, 0.2);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.about-text-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.highlight-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.highlight-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Dinamik boyutlandırma */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.highlight-text {
    color: var(--light-text);
    font-size: 0.9rem;
}

.mvv-section {
    margin-bottom: 80px;
}

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

.mvv-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.mvv-3d:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.mvv-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.team-3d:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.avatar-placeholder {
    font-size: 3rem;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.certifications-section {
    margin-bottom: 80px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--gradient);
    color: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.cert-3d:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cert-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cert-card p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Products Page Styles */
.products-page {
    padding: 80px 0;
}

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

.filter-btn {
    padding: 12px 32px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    font-size: 0.95rem;
}

.filter-3d:hover {
    transform: translateY(-3px) rotateX(3deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.filter-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.products-features {
    margin-top: 80px;
    width: 100% !important;
}

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

.feature-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.feature-3d:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.feature-box .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.map-container {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.map-3d:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.contact-form-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

.faq-section {
    margin-top: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.faq-3d:hover {
    transform: translateY(-5px) rotateX(3deg);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

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

.section-heading {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Product Detail Page Styles */
.product-detail-page {
    padding: 80px 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-visual {
    width: 250px;
    height: 250px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visualRotate 10s linear infinite;
}

.product-icon-large {
    font-size: 6rem;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-3d:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

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

.thumbnail-icon {
    font-size: 2.5rem;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
}

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

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

.product-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-count {
    color: var(--light-text);
    font-size: 0.9rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--light-text);
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-description {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-features h3,
.product-specifications h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features li {
    color: var(--light-text);
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.product-specifications th,
.product-specifications td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.product-specifications th {
    color: var(--primary-color);
    font-weight: 600;
    width: 150px;
}

.product-specifications td {
    color: var(--light-text);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 10px;
    border-radius: 50px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

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

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.qty-input:focus {
    outline: none;
}

.btn-add-cart {
    flex: 1;
    min-width: 200px;
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.5rem;
}

.product-delivery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-text);
}

.delivery-icon {
    font-size: 1.5rem;
}

.related-products {
    margin-top: 80px;
}

.product-reviews {
    margin-top: 80px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.review-3d:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-date {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-left: 10px;
}

.review-text {
    color: var(--light-text);
    line-height: 1.6;
}

/* Partnerships Section */
.partnerships-section {
    padding: 80px 0;
    background: white;
}

.partnerships-subtitle {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px solid var(--glass-border);
}

.partner-3d:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(3deg);
    box-shadow: var(--shadow-lg);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

body {
    animation: pageLoad 0.6s ease-out;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Advanced 3D Animations */
@keyframes rotate3d {
    0% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    75% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(-5deg);
    }
    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) translateZ(30px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(-10px) translateZ(20px) rotateX(0deg) rotateY(0deg);
    }
    75% {
        transform: translateY(-20px) translateZ(30px) rotateX(-5deg) rotateY(-5deg);
    }
}

@keyframes pulse3d {
    0%, 100% {
        transform: scale(1) translateZ(0);
        box-shadow: var(--shadow-md);
    }
    50% {
        transform: scale(1.05) translateZ(20px);
        box-shadow: var(--shadow-xl);
    }
}

@keyframes glow3d {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 60px rgba(37, 99, 235, 0.4);
    }
}

/* Advanced 3D Card Effects */
.card-3d-advanced {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d-advanced:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(50px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(37, 99, 235, 0.2);
}

.card-3d-advanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-3d-advanced:hover::before {
    opacity: 1;
}

/* 3D Floating Elements */
.floating-3d {
    animation: float3d 6s ease-in-out infinite;
}

.rotating-3d {
    animation: rotate3d 8s ease-in-out infinite;
}

.pulsing-3d {
    animation: pulse3d 3s ease-in-out infinite;
}

.glowing-3d {
    animation: glow3d 2s ease-in-out infinite;
}

/* 3D Text Effects */
.text-3d {
    text-shadow: 
        1px 1px 0 rgba(0, 0, 0, 0.1),
        2px 2px 0 rgba(0, 0, 0, 0.1),
        3px 3px 0 rgba(0, 0, 0, 0.1),
        4px 4px 0 rgba(0, 0, 0, 0.1);
    transform: perspective(500px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.text-3d:hover {
    transform: perspective(500px) rotateX(0deg) translateZ(20px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Modern focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Modern selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
