/* Home Page Specific Styles */

/* Hero Section Customizations */
.hero {
    min-height: 700px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--border-radius-full);
    animation: underlineGrow 2s ease-in-out infinite alternate;
}

@keyframes underlineGrow {
    0% { width: 0%; }
    100% { width: 100%; }
}

.hero-features {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features .feature {
    transition: transform var(--transition-base);
}

.hero-features .feature:hover {
    transform: translateY(-5px);
}

.hero-features .feature img {
    filter: brightness(0) invert(1);
    transition: filter var(--transition-base);
}

.hero-features .feature:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--primary-color));
}

.hero-features .feature span {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
}

/* Services Section */
.services {
    position: relative;
    background: var(--bg-white);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-light), transparent);
}

.services .section-header h2 {
    position: relative;
    display: inline-block;
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-full);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::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 var(--transition-slow);
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-link {
    position: relative;
    overflow: hidden;
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transition: left var(--transition-base);
    z-index: -1;
}

.service-link:hover::before {
    left: 0;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
}

/* Info Sections Styling */
.tonajli-vinc-info,
.sepetli-vinc-info {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tonajli-vinc-info::before,
.sepetli-vinc-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-content h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.info-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-full);
}

.info-text p:first-letter {
    font-size: 1.8em;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin: 0 8px 0 0;
}

.vinc-types,
.sepetli-vinc-specs {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.vinc-types::before,
.sepetli-vinc-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.vinc-types h3,
.sepetli-vinc-specs h3 {
    color: var(--primary-color);
    position: relative;
    padding-left: var(--space-4);
}

.vinc-types ul li,
.sepetli-vinc-specs ul li {
    position: relative;
    padding-left: var(--space-6);
    transition: all var(--transition-fast);
}

.vinc-types ul li::before,
.sepetli-vinc-specs ul li::before {
    content: '▶';
    position: absolute;
    left: var(--space-2);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    transition: transform var(--transition-fast);
}

.vinc-types ul li:hover,
.sepetli-vinc-specs ul li:hover {
    background: rgba(255, 107, 53, 0.05);
    padding-left: var(--space-8);
}

.vinc-types ul li:hover::before,
.sepetli-vinc-specs ul li:hover::before {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-choose {
    background: var(--bg-white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.feature-item {
    transition: all var(--transition-base);
    border-radius: var(--border-radius-lg);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.01));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-item h3 {
    transition: color var(--transition-fast);
}

.feature-item:hover h3 {
    color: var(--primary-color);
}

/* Customer Satisfaction Section */
.customer-satisfaction {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.customer-satisfaction::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.customer-satisfaction .section-header h2,
.customer-satisfaction .section-header p {
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.satisfaction-stats {
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Contact Section */
.quick-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-contact-content {
    position: relative;
    z-index: 1;
}

.contact-buttons .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.contact-buttons .btn-primary:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact-buttons .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }