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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

/* Color Variables - Welltex Theme */
:root {
    --primary-red: #dc2626;
    --secondary-red: #b91c1c;
    --accent-black: #1f2937;
    --light-gray: #6b7280;
    --dark-gray: #374151;
    --medium-gray: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --error-red: #ef4444;
    --border-light: rgba(31, 41, 55, 0.1);
}

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

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
}

.btn-secondary {
    background: transparent;
    color: var(--accent-black);
    border: 2px solid var(--accent-black);
}

.btn-secondary:hover {
    background: var(--accent-black);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    animation: slideInFromTop 0.8s ease-out;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.logo {
    animation: fadeInLeft 0.8s ease-out;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo h2 {
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 0;
    font-weight: 800;
    transition: all 0.3s ease;
}

.logo:hover h2 {
    transform: scale(1.05);
    color: var(--secondary-red);
}

.logo span {
    font-size: 0.9rem;
    color: var(--accent-black);
    font-weight: 600;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nav-link {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary-red);
    font-weight: 600;
    background: var(--bg-light);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s;
}

.contact-info:hover::before {
    left: 100%;
}

.contact-info:hover {
    background: var(--accent-black);
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.2);
}

.contact-info i {
    color: var(--accent-black);
    transition: color 0.3s ease;
}

.contact-info:hover i {
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: var(--bg-light);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-light);
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-contact {
        gap: 1rem;
    }
    
    .contact-info span {
        display: none;
    }
    
    .contact-info {
        padding: 0.7rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 40%, var(--accent-black) 100%);
    z-index: -2;
    background-size: cover;
    background-position: center;
    animation: scaleIn 1.2s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
    margin-bottom: 2.5rem;
}

.animated-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white;
    animation: slideInFromTop 1.2s ease-out 0.7s both;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: slideInFromTop 1.2s ease-out 0.7s both, gradientShift 3s ease-in-out infinite;
}

.title-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: #e5e7eb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 1.2s ease-out 0.9s both;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out 1.1s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: scaleIn 0.8s ease-out calc(1.3s + var(--delay, 0s)) both;
    position: relative;
    overflow: hidden;
}

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

.feature-item:hover::before {
    left: 100%;
}

.feature-item:nth-child(1) { --delay: 0s; }
.feature-item:nth-child(2) { --delay: 0.1s; }
.feature-item:nth-child(3) { --delay: 0.2s; }

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: #f3f4f6;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: rotate(360deg);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 1.5s both;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 180px;
    justify-content: center;
}

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

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

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

.scroll-arrow {
    width: 35px;
    height: 35px;
    border: 3px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

/* Hero Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.page-header .animated-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.page-header .title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    color: white;
    animation: slideInFromTop 1.2s ease-out 0.7s both;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: slideInFromTop 1.2s ease-out 0.7s both, gradientShift 3s ease-in-out infinite;
}

.page-header .title-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #e5e7eb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 1.2s ease-out 0.9s both;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out 1.1s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    animation: fadeInUp 1.2s ease-out 1.3s both;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Page Particles Effect */
.page-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.page-particles::before,
.page-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.page-particles::before {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.page-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 3px;
    animation: scaleIn 0.6s ease-out 0.3s both;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services, .services-preview {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services::before,
.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(220,38,38,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.services .container,
.services-preview .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0s)) both;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) { --delay: 0.1s; }
.service-card:nth-child(2) { --delay: 0.2s; }
.service-card:nth-child(3) { --delay: 0.3s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(185, 28, 28, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
    transform: scale(1.1) rotate(360deg);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card h3 {
    color: var(--accent-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: var(--primary-red);
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-features span {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--secondary-red);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(185, 28, 28, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-features span::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.5s;
}

.service-features span:hover::before {
    left: 100%;
}

.service-card:hover .service-features span {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.summary-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    animation: scaleIn 0.8s ease-out calc(var(--delay, 0s)) both;
}

.summary-card:nth-child(1) { --delay: 0.1s; }
.summary-card:nth-child(2) { --delay: 0.2s; }
.summary-card:nth-child(3) { --delay: 0.3s; }
.summary-card:nth-child(4) { --delay: 0.4s; }
.summary-card:nth-child(5) { --delay: 0.5s; }

.summary-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.summary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.summary-card:hover .summary-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
}

.summary-icon i {
    font-size: 1.8rem;
    color: white;
}

.summary-card h3 {
    color: var(--accent-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.summary-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 400 yerine 280px */
    gap: 2rem; /* 3rem çok açıyordu, biraz küçülttüm */
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0s)) both;
}

.product-card:nth-child(1) { --delay: 0.2s; }
.product-card:nth-child(2) { --delay: 0.4s; }

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.3) 70%);
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(45deg, transparent 20%, rgba(220, 38, 38, 0.5) 80%);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.product-content {
    padding: 2.5rem;
}

.product-content h3 {
    color: var(--accent-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.product-features span {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    color: var(--medium-gray);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.product-card:hover .product-features span {
    background: var(--accent-black);
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-description p {
    margin-bottom: 2rem;
    color: var(--light-gray);
    line-height: 1.9;
    font-size: 1.1rem;
    animation: fadeInLeft 0.8s ease-out calc(var(--delay, 0s)) both;
}

.about-description p:nth-child(1) { --delay: 0.2s; }
.about-description p:nth-child(2) { --delay: 0.4s; }
.about-description p:nth-child(3) { --delay: 0.6s; }

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.4s ease;
    animation: scaleIn 0.8s ease-out calc(var(--delay, 0s)) both;
}

.stat-item:nth-child(1) { --delay: 0.3s; }
.stat-item:nth-child(2) { --delay: 0.4s; }
.stat-item:nth-child(3) { --delay: 0.5s; }

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.3);
}

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

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-left: 5px;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #f3f4f6;
}

.image-placeholder span {
    font-size: 1.4rem;
    font-weight: 700;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0s)) both;
}

.feature-box:nth-child(1) { --delay: 0.5s; }
.feature-box:nth-child(2) { --delay: 0.6s; }

.feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    color: var(--primary-red);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2) rotate(360deg);
}

.feature-box span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Mission Vision Values */
.mission-vision {
    background: var(--bg-light);
}

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

.mvv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0s)) both;
}

.mvv-card:nth-child(1) { --delay: 0.2s; }
.mvv-card:nth-child(2) { --delay: 0.4s; }
.mvv-card:nth-child(3) { --delay: 0.6s; }

.mvv-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
}

.mvv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mvv-card h3 {
    color: var(--accent-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mvv-card p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    animation: scaleIn 0.8s ease-out calc(var(--delay, 0s)) both;
}

.team-card:nth-child(1) { --delay: 0.2s; }
.team-card:nth-child(2) { --delay: 0.4s; }
.team-card:nth-child(3) { --delay: 0.6s; }

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    position: relative;
    overflow: hidden;
}

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

.team-content h3 {
    color: var(--accent-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

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

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0s)) both;
}

.feature-card:nth-child(1) { --delay: 0.1s; }
.feature-card:nth-child(2) { --delay: 0.2s; }
.feature-card:nth-child(3) { --delay: 0.3s; }
.feature-card:nth-child(4) { --delay: 0.4s; }
.feature-card:nth-child(5) { --delay: 0.5s; }
.feature-card:nth-child(6) { --delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
}

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

.feature-card h3 {
    color: var(--accent-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Footer */
.footer {
    background: var(--accent-black);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-logo h2 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.footer-logo span {
    color: #9ca3af;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-red);
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(15px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-contact p:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary-red);
    width: 20px;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    transform: scale(1.2);
}

.footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .services-grid,
    .summary-grid,
    .products-grid,
    .mvv-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1rem 1.5rem;
    }
    
    .service-card,
    .summary-card,
    .mvv-card,
    .feature-card {
        padding: 2rem;
    }
    
    .product-content,
    .team-content {
        padding: 1.5rem;
    }
}



/* Enhanced Services Page Styles */
.services-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(220,38,38,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

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

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--accent-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-red);
}

.visual-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.visual-card h4 {
    color: var(--accent-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.visual-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Main Services Section */
.main-services {
    padding: 6rem 0;
    background: white;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.02);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
    transform: scale(1.1) rotate(5deg);
}

.service-detail-card .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-card h3 {
    color: var(--accent-black);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-detail-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--primary-red);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-features span {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--secondary-red);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(185, 28, 28, 0.2);
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-features span {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* Process Timeline */
.welltex-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
}

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

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: color 0.4s ease;
}

.process-step:hover .step-icon i {
    color: white;
}

.step-content h4 {
    color: var(--accent-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Welltex Section */
.why-welltex {
    padding: 6rem 0;
    background: white;
}

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

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--accent-black), var(--medium-gray));
    transform: scale(1.1) rotate(360deg);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card h4 {
    color: var(--accent-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services CTA Section */
.services-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-large i {
    font-size: 1.2rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 4rem 0;
    }
    
    .main-services {
        padding: 4rem 0;
    }
    
    .welltex-process {
        padding: 4rem 0;
    }
    
    .why-welltex {
        padding: 4rem 0;
    }
    
    .services-cta {
        padding: 4rem 0;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}


/* Product Catalog Styles */
.product-filter-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.filter-header {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-header h2 {
    color: var(--accent-black);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
}

.filter-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    color: var(--medium-gray);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.filter-btn i {
    font-size: 1.2rem;
}

/* Product Catalog Section */
.product-catalog {
    padding: 4rem 0;
    background: white;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.catalog-info h3 {
    color: var(--accent-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.product-count {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-dropdown select {
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: white;
    color: var(--accent-black);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.view-toggle {
    display: flex;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0.3rem;
}

.view-btn {
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.products-grid.list-view .product-image-container {
    flex: 0 0 300px;
    height: 250px;
}

.products-grid.list-view .product-info {
    flex: 1;
}

/* Product Card */
.product-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-images {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.product-image.active {
    opacity: 1;
}

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

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

.badge.popular {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.badge.bestseller {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.badge.certified {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.badge.medical {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.badge.premium {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

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

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.image-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover .image-navigation {
    opacity: 1;
}

.nav-btn {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-title {
    color: var(--accent-black);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-count {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.product-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--secondary-red);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

.product-colors, .product-sizes {
    margin-bottom: 1rem;
}

.color-label, .size-label {
    display: block;
    color: var(--accent-black);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.color-options, .size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option.active {
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.size-option {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: white;
    color: var(--medium-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.size-option:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.size-option.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

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

.current-price {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 800;
}

.original-price {
    color: var(--medium-gray);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.discount {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.product-buttons .btn {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding-top: 2rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    z-index: 1001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.product-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.image-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-zoom:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.thumbnail-images {
    height: 100px;
}

.thumbnails {
    display: flex;
    gap: 1rem;
    height: 100%;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.thumbnail:hover {
    transform: scale(1.05);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-header .product-category {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.modal-header .product-title {
    color: var(--accent-black);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-description p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-features h4,
.modal-sectors h4,
.modal-specifications h4 {
    color: var(--accent-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--medium-gray);
}

.modal-features li i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.sector-tag {
    background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
    color: var(--accent-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

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

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.spec-label {
    font-weight: 600;
    color: var(--accent-black);
}

.spec-value {
    color: var(--medium-gray);
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.option-group label {
    font-weight: 600;
    color: var(--accent-black);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.qty-input {
    width: 60px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--accent-black);
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.modal-price {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-price .current-price {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 800;
}

.modal-price .original-price {
    color: var(--medium-gray);
    text-decoration: line-through;
    font-size: 1.3rem;
}

.modal-price .discount {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design for Product Catalog */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 0.8rem 1.5rem;
    }
    
    .catalog-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .catalog-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .product-filter-section {
        padding: 3rem 0 1rem;
    }
    
    .filter-header h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .modal-header .product-title {
        font-size: 1.5rem;
    }
    
    .modal-price .current-price {
        font-size: 1.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnails {
        flex-wrap: wrap;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
}



/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    margin-right: 15px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 18px;
}

.whatsapp-btn span {
    font-weight: 600;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 10px;
        margin-right: 10px;
    }
}

/* Fixed WhatsApp Button (Optional - for floating button) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-info-card h3 {
    color: var(--accent-black);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.contact-info-card p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--accent-black);
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-form-container p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-black);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-form-map-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .title-line {
        font-size: 3.5rem;
    }
    
    .title-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .title-line {
        font-size: 3rem;
    }
    
    .title-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .services-grid,
    .summary-grid,
    .products-grid,
    .mvv-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .summary-card,
    .mvv-card,
    .feature-card {
        padding: 2rem;
    }
    
    .product-content,
    .team-content {
        padding: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .title-line {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-card,
    .summary-card,
    .mvv-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

