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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #111827;
    color: #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
    margin-right: 5px;
}

.logo-section a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    isolation: isolate;
}

.logo-section a:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.logo-section a:active {
    color: #000;
}

.logo-section a:active:after {
    background: transparent;
}

.logo-section a:hover:before {
    opacity: 1;
}

.logo-section a:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111827;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    position: relative;
    z-index: 1;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.phone-link:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.phone-link:active {
    color: #000;
}

.phone-link:active:after {
    background: transparent;
}

.phone-link:hover:before {
    opacity: 1;
}

.phone-link:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.phone-link:hover {
    background: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.phone-link i {
    font-size: 1rem;
}

.phone-text {
    display: none;
}

.phone-number {
    font-weight: 700;
}

/* Responsive Header Phone */
/* Header Phone Styles */
.header-phone {
    display: none;
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
    
    .phone-text {
        display: inline;
    }
    
    .phone-link {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.625rem 1.125rem;
    border-radius: 10px;
    background: none;
    border: none;
    color: #f3f4f6;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9375rem;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.nav-link:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.nav-link:active {
    color: #000;
}

.nav-link:active:after {
    background: transparent;
}

.nav-link:hover:before {
    opacity: 1;
}

.nav-link:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111827;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.nav-link:hover {
    background-color: transparent;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.5rem;
    color: #f3f4f6;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
}

.lang-btn:hover {
    background: rgba(55, 65, 81, 0.8);
    border-color: rgba(75, 85, 99, 0.8);
}

.lang-btn i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-selector.active .lang-btn i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    min-width: 150px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: #f3f4f6;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #374151;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #374151;
}

.lang-code {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
}

.mobile-lang-selector {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
}

@media (max-width: 1024px) {
    .language-selector {
        display: none;
    }
}

.dropdown-container {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.dropdown-container.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 12rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.dropdown-container.active .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #f3f4f6;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #374151;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
    background: none;
    border: none;
    color: #f3f4f6;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.mobile-menu-btn:hover {
    background-color: #374151;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background: none;
    border: none;
    color: #f3f4f6;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.mobile-dropdown-btn:hover {
    background-color: #374151;
}

.mobile-dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: #f3f4f6;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-dropdown-item:hover {
    background-color: #374151;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: #f3f4f6;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background-color: #374151;
}

/* Mobile Phone Bar */
.mobile-phone-bar {
    display: none;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 0.75rem 1rem;
    text-align: center;
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #374151;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-phone-link:active {
    opacity: 0.8;
    transform: scale(0.98);
}

.mobile-phone-link i {
    font-size: 1.125rem;
    animation: pulse 2s infinite;
}

.mobile-phone-number {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

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

/* Responsive */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
    
    .mobile-phone-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mobile-phone-bar {
        display: block;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #111827;
}

/* Slider Container */
.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    border-radius: 0 0 1rem 0;
}

.slide-title {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-btn-prev {
    left: 1rem;
}

.slider-btn-next {
    right: 1rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.slider-dot {
    width: 2rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #2563eb;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-category {
        font-size: 1rem;
    }

    .slide-content {
        padding: 1.5rem;
    }

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

    .slide-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .slider-btn-prev {
        left: 0.5rem;
    }

    .slider-btn-next {
        right: 0.5rem;
    }
}

/* Hizmetlerimiz Section */
.services-section {
    padding: 80px 20px;
    background-color: white;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1rem 0;
}

.service-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .service-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* Tamamlanan Projeler Section */
.references-section {
    padding: 80px 20px;
    background-color: #f8fafc;
    display: none;
    overflow: visible;
}

.references-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.references-slider-container {
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.references-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    margin: -2rem 0;
}

.references-slider {
    display: flex;
    gap: 2.5rem;
    animation: slideReferences 40s linear infinite;
    width: fit-content;
}

.references-slider:hover {
    animation-play-state: paused;
}

.reference-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    flex-shrink: 0;
    width: 200px;
}

.reference-item {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    z-index: 1;
}

.reference-item:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
    border-color: #2563eb;
    z-index: 100;
}

.reference-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.reference-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    max-width: 180px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.reference-item-wrapper:hover .reference-name {
    color: #2563eb;
}

@keyframes slideReferences {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@media (max-width: 768px) {
    .references-section {
        padding: 60px 20px;
    }

    .references-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .references-slider {
        gap: 2rem;
    }

    .reference-item-wrapper {
        width: 160px;
    }

    .reference-item {
        width: 150px;
        height: 150px;
    }

    .reference-name {
        font-size: 0.8125rem;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .references-section {
        padding: 60px 20px;
    }

    .references-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .references-slider {
        gap: 1.5rem;
    }

    .reference-item-wrapper {
        width: 140px;
    }

    .reference-item {
        width: 120px;
        height: 120px;
    }

    .reference-name {
        font-size: 0.75rem;
        max-width: 120px;
    }
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
    background-color: white;
    display: none;
    overflow: visible;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.partners-slider-container {
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.partners-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
    margin: -1rem 0;
}

.partners-slider {
    display: flex;
    gap: 2rem;
    animation: slidePartners 30s linear infinite;
    width: fit-content;
}

.partners-slider:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
    z-index: 100;
    position: relative;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
    }

    .partners-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .partners-slider {
        gap: 1.5rem;
    }

    .partner-item {
        width: 140px;
        height: 100px;
        padding: 1rem;
    }
}

/* Hakkımızda Section */
.about-section {
    padding: 80px 20px;
    background-color: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* Certifications */
.certifications {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e5e7eb;
}

.certifications-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.certification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.certification-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.certification-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.25rem;
}

.certification-icon-fallback {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.certification-content {
    flex: 1;
}

.certification-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.certification-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        height: 300px;
    }

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

    .about-text {
        font-size: 1rem;
    }

    .certifications {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .certifications-title {
        font-size: 1.25rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certification-item {
        padding: 1.25rem;
    }

    .certification-logo {
        width: 70px;
        height: 70px;
    }

    .certification-icon-fallback {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .certification-name {
        font-size: 1rem;
    }

    .certification-description {
        font-size: 0.875rem;
    }
}

/* İletişim Section */
.contact-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Ürünler Section */
.products-section {
    padding: 80px 20px;
    background-color: #f5f1eb;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

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

.product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

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

.product-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.product-btn {
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.product-btn:hover {
    background-color: #1d4ed8;
}

/* Ürün Detay Section */
.product-detail-section {
    padding: 20px 20px 40px 20px;
    background-color: #f9fafb;
    min-height: calc(100vh - 80px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #2563eb;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: #2563eb;
    transform: translateX(5px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.back-link:hover::before {
    transform: scaleY(1);
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-detail-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.5rem;
    background: #f3f4f6;
    position: relative;
    cursor: pointer;
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-image:hover {
    transform: scale(1.05);
}

.image-zoom-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-detail-image:hover .image-zoom-hint {
    opacity: 1;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f3f4f6;
}

.gallery-thumbnail:hover {
    border-color: #2563eb;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: #2563eb;
    border-width: 3px;
}

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

.detail-category {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.detail-short-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
}

.detail-full-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.detail-price-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.detail-features,
.detail-specifications {
    margin-bottom: 2rem;
}

.detail-features h3,
.detail-specifications h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1.25rem 0;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list li i {
    color: #2563eb;
    flex-shrink: 0;
}

.specs-table {
    width: 100%;
    max-width: 700px;
    border-collapse: collapse;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.specs-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.specs-table tbody tr:hover:not(.spec-header-row) {
    background-color: #f9fafb;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.spec-header-row {
    background-color: #2563eb;
    color: white;
}

.spec-light-row {
    background-color: #1d4ed8;
    color: white;
}

.specs-table td {
    padding: 0.625rem 0.4rem;
    font-size: 0.8125rem;
}

.spec-label {
    font-weight: 600;
    color: #111827;
    background-color: #f9fafb;
    text-align: left;
    white-space: nowrap;
    width: 160px;
    padding-left: 0.75rem !important;
}

.spec-header-label {
    background-color: #2563eb !important;
    color: white !important;
}

.spec-light-label {
    background-color: #1d4ed8 !important;
    color: white !important;
}

.spec-value {
    color: #6b7280;
    text-align: center;
    min-width: 70px;
    line-height: 1.4;
}

.spec-header-value {
    background-color: #2563eb !important;
    color: white !important;
    font-weight: 600;
}

.spec-light-value {
    background-color: #1d4ed8 !important;
    color: white !important;
    font-weight: 600;
}

.spec-value br {
    display: block;
    content: "";
    margin-top: 0.25rem;
}

.detail-actions {
    display: flex;
    margin-top: 2rem;
}

.contact-btn {
    width: 100%;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.contact-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

.product-not-found {
    text-align: center;
    padding: 4rem 2rem;
}

.product-not-found h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 2rem;
}

/* Responsive Products */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 20px;
    }

    .products-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

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

    .detail-price {
        font-size: 2rem;
    }

    .contact-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .image-zoom-hint {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Reference Lightbox */
.reference-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.reference-lightbox.active {
    display: flex;
}

.reference-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.reference-lightbox .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10001;
}

.reference-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.reference-lightbox .lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-lightbox .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.reference-lightbox .lightbox-prev,
.reference-lightbox .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-lightbox .lightbox-prev {
    left: 2rem;
}

.reference-lightbox .lightbox-next {
    right: 2rem;
}

.reference-lightbox .lightbox-prev:hover,
.reference-lightbox .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.reference-lightbox .lightbox-counter {
    margin-top: 1rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .reference-lightbox .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .reference-lightbox .lightbox-prev,
    .reference-lightbox .lightbox-next {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .reference-lightbox .lightbox-prev {
        left: 1rem;
    }

    .reference-lightbox .lightbox-next {
        right: 1rem;
    }

    .reference-lightbox .lightbox-content img {
        max-height: 75vh;
    }

    .reference-lightbox .lightbox-counter {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: #111827;
    padding: 3rem 20px 1.5rem;
    border-top: 1px solid #374151;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a {
    position: relative;
    z-index: 0;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
    margin-left: -1rem;
}

.footer-section a:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.footer-section a:active {
    color: #000;
}

.footer-section a:active:after {
    background: transparent;
}

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

.footer-section a:hover {
    color: #fff;
}

.footer-section a:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111827;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #9ca3af;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
}

.footer-nav a:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.footer-nav a:active {
    color: #000;
}

.footer-nav a:active:after {
    background: transparent;
}

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

.footer-nav a:hover {
    color: #fff;
}

.footer-nav a:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111827;
    left: 0;
    top: 0;
    border-radius: 10px;
}

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

.footer-contact-item i {
    color: #3b82f6;
    font-size: 1.125rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.footer-map {
    margin-top: 1.5rem;
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #374151;
}

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

/* Social Media Links */
.social-media {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-media h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.social-links a i {
    position: relative;
    z-index: 3;
}

.social-links a:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 50%;
}

.social-links a:active {
    color: #000;
}

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

.social-links a[aria-label="Facebook"] {
    background-color: #1877f2;
}

.social-links a[aria-label="Facebook"]:after {
    z-index: 1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1877f2;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.social-links a[aria-label="Facebook"]:hover:after {
    background-color: #1877f2;
}

.social-links a[aria-label="Facebook"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.social-links a[aria-label="LinkedIn"] {
    background-color: #0077b5;
}

.social-links a[aria-label="LinkedIn"]:after {
    z-index: 1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0077b5;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.social-links a[aria-label="LinkedIn"]:hover:after {
    background-color: #0077b5;
}

.social-links a[aria-label="LinkedIn"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.social-links a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[aria-label="Instagram"]:after {
    z-index: 1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    left: 0;
    top: 0;
    border-radius: 50%;
}

.social-links a[aria-label="Instagram"]:hover:after {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[aria-label="Instagram"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 67, 0.3);
}

/* Trust Badges */
.trust-badges {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.trust-badges h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 0.375rem;
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badge i {
    font-size: 1rem;
}

/* Warranty Section */
.warranty-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.warranty-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #111827;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.warranty-item {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.warranty-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.warranty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.warranty-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1rem 0;
}

.warranty-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 20px 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .badges-grid {
        justify-content: center;
    }

    .warranty-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .warranty-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .warranty-item {
        padding: 1.5rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

/* Image Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10001;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    margin-top: 1rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-thumbnail img {
    cursor: pointer;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-content img {
        max-height: 75vh;
    }

    .lightbox-counter {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: white;
    min-height: 80vh;
}

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

.faq-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

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

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question i {
    color: #2563eb;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-main-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 2rem 0 4rem;
    background: #f9fafb;
    min-height: calc(100vh - 200px);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-section-item {
    margin-bottom: 2.5rem;
}

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

.legal-section-item h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section-item p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-section-item ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section-item li {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.legal-section-item a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1rem 0 2rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-section-item h2 {
        font-size: 1.5rem;
    }
    
    .legal-section-item h3 {
        font-size: 1.125rem;
    }
}

/* Google Business Profile Link */
.google-business-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 33%, #fbbc05 66%, #34a853 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.google-business-link:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 50%;
}

.google-business-link:active {
    color: #000;
}

.google-business-link:hover:before {
    opacity: 1;
}

.google-business-link i {
    position: relative;
    z-index: 2;
}

.google-business-link:hover {
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 33%, #fbbc05 66%, #34a853 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonials-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.testimonial-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image-wrapper {
    border-color: #2563eb;
    transform: scale(1.1);
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-stars .fa-star {
    color: #fbbf24;
}

.testimonial-stars .far {
    color: #d1d5db;
}

.testimonial-comment {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-image-wrapper {
        width: 70px;
        height: 70px;
    }
}
