/* Custom Styles for Medikal Kent */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}

/* ========== Loading Screen ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a73e8 0%, #00c851 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    margin: 0;
    padding: 0;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin: 0;
    padding: 2rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-logo {
    margin-bottom: 0;
}

.logo-container {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: logoEntrance 1.5s ease-out;
}

.company-logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        color: #00ff00;
    }
    50% { 
        transform: scale(1.2) rotate(-5deg);
        color: #ffffff;
        text-shadow: 0 0 15px rgba(255,255,255,0.8);
    }
}

.loading-spinner {
    margin: 0;
}

.spinner-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.spinner-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

.spinner-inner {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #00ff00;
    border-right: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(0,255,0,0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    40% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .logo-container {
        padding: 1.5rem;
    }
    
    .company-logo {
        max-width: 140px;
        max-height: 90px;
    }
    
    .spinner-circle {
        width: 80px;
        height: 80px;
    }
    
    .loading-text {
        font-size: 1.2rem;
    }
    
    .loading-dots span {
        width: 6px;
        height: 6px;
    }
}

.loading-progress {
    width: 250px;
    margin: 0 auto;
}

.progress-line {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #ffffff, #00ff00);
    border-radius: 3px;
    transform: translateX(-100%);
    animation: progressMove 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0,255,0,0.5);
}

@keyframes progressMove {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

.loading-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.loading-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: floatShapes 4s ease-in-out infinite;
}

.loading-bg-shapes .shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.loading-bg-shapes .shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.loading-bg-shapes .shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Page transition */
body.loaded {
    overflow: auto;
}

.main-content {
    transition: opacity 1s ease;
}

.main-content.show {
    opacity: 1 !important;
}

/* ========== CSS Variables ========== */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #6c757d;
    --success-color: #00c851;
    --accent-green: #00ff00;
    --dark-blue: #1557b0;
    --light-blue: #4285f4;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient-primary: linear-gradient(135deg, #1a73e8 0%, #00c851 100%);
    --gradient-secondary: linear-gradient(135deg, #1557b0 0%, #00ff00 100%);
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.section-header h6 {
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    border-radius: 4px;
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 115, 232, 0.1);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Particles.js Canvas */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    max-width: 100vw;
    overflow: hidden;
}

/* Page Header particles positioning */
.bg-primary.position-relative #particles-js {
    opacity: 0.4;
    z-index: 1;
}

/* ========== Page Header Styles ========== */
.page-header {
    background: var(--gradient-primary) !important;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header #particles-js {
    opacity: 0.4;
    z-index: 1;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-icon {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-buttons .btn {
    margin-bottom: 10px;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
    margin: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Parallax Elements */
.parallax-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.parallax-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00c851, transparent);
    border-radius: 50%;
    z-index: 1;
}

.parallax-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #1a73e8, transparent);
    border-radius: 50%;
    z-index: 1;
}

.parallax-3 {
    bottom: 20%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    z-index: 1;
}

.parallax-text {
    transform: translateZ(0);
    will-change: transform;
}

.parallax-icon {
    transform: translateZ(0);
    will-change: transform;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-shapes 4s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: #00c851;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: #1a73e8;
    animation-delay: 1s;
}

.shape-3 {
    bottom: 30%;
    left: 60%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    animation-delay: 2s;
}

@keyframes float-shapes {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(120deg); 
    }
    66% { 
        transform: translateY(-10px) rotate(240deg); 
    }
}

/* Responsive adjustments for parallax */
@media (max-width: 768px) {
    .parallax-element,
    .floating-shapes {
        display: none;
    }
}

/* About Section */
.about-image {
    text-align: center;
    position: relative;
}

.about-icon {
    font-size: 12rem;
    color: var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    display: block;
}

/* Services Section */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--secondary-color);
}

/* Products Section - Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.testimonial-card:hover {
    border-image: var(--gradient-primary) 1;
}

.stars i {
    color: var(--success-color) !important;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    margin-top: 5px;
}

/* Contact Section */
.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-info .contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    width: 30px;
    color: var(--success-color);
}

.contact-info .contact-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-info .contact-item p {
    margin: 0;
    color: var(--secondary-color);
}

.contact-info .contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info .contact-item a:hover {
    color: var(--primary-color);
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer */
footer {
    background: #1a1a1a !important;
}

footer h5, footer h6 {
    color: white;
    font-weight: 600;
}

footer p, footer li {
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-green);
}

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
}

/* Tablet için overflow kontrolleri */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-logo {
        height: 35px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .about-icon {
        font-size: 6rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .contact-info .contact-item {
        margin-bottom: 30px;
    }
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================
   9. Products Catalog
   ============================ */

.product-filter .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.product-filter .btn.active,
.product-filter .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    background: var(--gradient-primary);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.product-image i {
    font-size: 3rem;
    opacity: 0.9;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-title {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.product-features li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 12px;
}

.product-item {
    opacity: 1;
    transition: all 0.5s ease;
}

.product-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Product Categories */
.product-item[data-category="diagnostic"] .product-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-item[data-category="laboratory"] .product-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-item[data-category="surgical"] .product-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-item[data-category="rehabilitation"] .product-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.product-item[data-category="emergency"] .product-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* ============================
   10. Testimonials Section
   ============================ */

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content .stars {
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -25px;
    right: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.author-info h6 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.author-info small {
    color: var(--text-color);
    font-size: 13px;
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Partners Section */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-item span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .partner-item i {
        font-size: 1.5rem;
    }
    
    .partner-item span {
        font-size: 12px;
    }
}

/* ============================
   11. Statistics Section
   ============================ */

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(26, 115, 232, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(26, 115, 232, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

/* ============================
   11. Contact Section & Maps
   ============================ */

.contact-info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-info-card h5 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.map-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* Backup Map Styles */
.backup-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a73e8 0%, #00c851 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.backup-map-content {
    padding: 30px;
    max-width: 300px;
}

.backup-map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.backup-map h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.backup-map p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.backup-map-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
}

.backup-map-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.backup-map-info strong {
    color: white;
    font-size: 14px;
}

.backup-map .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.backup-map .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" opacity="0.3"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px;
}

.google-map::before {
    content: 'Haritayı yüklemek için tıklayın';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-info h6 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.map-info p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.map-actions .btn {
    font-size: 12px;
    padding: 8px 15px;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-form .form-control,
.contact-form select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.contact-form .btn-primary {
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .map-container {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .google-map {
        height: 300px;
    }
    
    .map-overlay {
        position: relative;
        margin-top: 15px;
        padding: 15px;
    }
    
    .map-actions .btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 🎪 HOVER EFFECTS ========== */

/* Button Hover Effects */
.btn {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1565c0, #00c851);
    border-color: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, #1a73e8, #00c851);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
}

/* Card Hover Effects */
.card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.1), transparent);
    transition: left 0.8s;
    z-index: 1;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.2);
}

/* Service Card Special Effects */
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 200, 81, 0.15);
}

.service-card:hover .card-body {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(0, 200, 81, 0.05));
}

/* Product Card Effects */
.product-card {
    transition: all 0.5s ease;
}

.product-card:hover {
    transform: translateY(-12px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card img {
    transition: transform 0.5s ease;
}

/* Navigation Hover Effects */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #1a73e8, #00c851);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #1a73e8 !important;
    transform: translateY(-2px);
}

/* Icon Hover Effects */
.feature-icon, .service-icon {
    transition: all 0.4s ease;
}

.feature-icon:hover, .service-icon:hover {
    transform: rotateY(360deg) scale(1.2);
    color: #00c851 !important;
}

/* Social Media Icons */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    color: #00c851 !important;
}

/* Form Input Effects */
.form-control {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.3);
    transform: scale(1.02);
}

/* Testimonial Card Effects */
.testimonial-card:hover {
    transform: translateY(-8px) rotateZ(1deg);
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(0, 200, 81, 0.05));
}

/* Pulse Animation for Important Elements */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(26, 115, 232, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* Logo Hover Effect */
.navbar-brand img:hover {
    transform: rotate(360deg) scale(1.1);
    transition: all 0.8s ease;
}

/* Glowing Effect for CTA Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #1a73e8, transparent);
    animation: rotate 2s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ========== About Page Styles ========== */
.hero-icon-container {
    position: relative;
    display: inline-block;
}

.hero-main-icon {
    font-size: 15rem;
    opacity: 0.2;
    color: white;
    animation: float 4s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-2 {
    top: 60%;
    right: 15%;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 25%;
    left: 20%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a73e8, #00c851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

.team-card {
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.team-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #007bff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Statistics */
.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item i {
    opacity: 0.8;
}

/* Products Page Styles */
.product-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 24px;
    margin: 0 8px 10px 0;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
    color: #007bff;
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
}

.product-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    background: var(--gradient-primary);
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-detail-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.product-features .fas {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.8rem;
}

.product-brands {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.brand-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-logo i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.brand-logo span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Product Items Animation */
.product-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.product-item.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

/* Stats Counter Animation */
.stat-number {
    display: inline-block;
}

/* Testimonials Page Styles */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 115, 232, 0.15);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h6 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 115, 232, 0.15);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.project-info h5 {
    margin: 0;
    color: #333;
    font-weight: 700;
}

.project-info p {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.9rem;
}

.project-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(26, 115, 232, 0.1);
    color: #1a73e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Certification Cards */
.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.15);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.certification-card h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.certification-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .project-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 115, 232, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info-card h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.map-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    background: rgba(26, 115, 232, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #1a73e8;
}

.hours-card,
.quick-contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    font-weight: 600;
    color: #333;
}

.hour-item .time {
    color: #007bff;
    font-weight: 600;
}

.hour-item.closed .time {
    color: #dc3545;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(26, 115, 232, 0.05);
    border: 1px solid rgba(26, 115, 232, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: rgba(26, 115, 232, 0.1);
    transform: translateX(5px);
    color: #333;
}

.quick-action-btn.emergency {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.1);
}

.quick-action-btn.emergency:hover {
    background: rgba(220, 53, 69, 0.1);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.quick-action-btn.emergency .action-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.action-content {
    flex-grow: 1;
}

.action-content h6 {
    margin: 0 0 0.25rem;
    font-weight: 600;
    color: #333;
}

.action-content span {
    color: #666;
    font-size: 0.9rem;
}

.accordion-item {
    border: 1px solid rgba(26, 115, 232, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background: rgba(26, 115, 232, 0.05);
    color: #1a73e8;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-form-container,
    .map-container,
    .hours-card,
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .map-iframe {
        height: 300px;
    }
    
    .quick-action-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .action-icon {
        margin-right: 0;
    }
}

/* ========== Services Page Styles ========== */
.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a73e8, #00c851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.service-features li:last-child {
    border-bottom: none;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a73e8, #00c851);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #1a73e8;
    font-size: 1.5rem;
}

.feature-box {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 115, 232, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(26, 115, 232, 0.1);
    transform: translateX(5px);
}

/* ========== Category Cards ========== */
.category-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #1a73e8;
}

.category-icon {
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card .text-muted {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Basit Overflow Düzeltmesi */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}