/* Soprano Titanium - Profesyonel Karşılaştırma Tasarımı */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vorteile Hero Section */
.vorteile-hero-section {
    background: #dcdbd7;
    padding: 0;
    margin: 40px 0;
    overflow: hidden;
}

.vorteile-hero-content {
    display: flex;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    gap: 0;
    padding: 0;
    height: 270px;
}

.vorteile-hero-image {
    flex: 0 0 50%;
    position: relative;
}

.vorteile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.vorteile-hero-text {
    flex: 0 0 50%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #dcdbd7;
}

.vorteile-hero-title {
    font-size: 2.2rem;
    color: #3a3737;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.vorteile-hero-subtitle {
    font-size: 1.1rem;
    color: #3a3737;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.3;
    opacity: 0.8;
}

.vorteile-hero-button {
    display: inline-block;
    background: #ff7d57;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vorteile-hero-button:hover {
    background: #e66a45;
    transform: translateY(-2px);
    color: white;
}

/* Content Section - achseln sayfasındaki gibi */
.content-section {
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-image-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 60px 0;
    min-height: 400px;
}

.content-image-row.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0;
    max-width: 50%;
}

.content-text h2 {
    font-size: 2.2rem;
    color: #3a3737;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff7d57;
    border-radius: 2px;
}

.content-text h3 {
    font-size: 1.5rem;
    color: #3a3737;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.content-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff7d57;
    border-radius: 1px;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.soprano-highlight {
    color: #ff7d57;
    font-weight: 700;
    position: relative;
    text-decoration: none;
}

.soprano-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff7d57, #e66a45);
    border-radius: 1px;
}

.content-image {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.side-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

/* Simple Comparison Table */
.comparison-simple {
    margin-top: 30px;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.comparison-row.header {
    background: #f8f9fa;
    font-weight: 700;
    border-bottom: 2px solid #ff7d57;
}

.comparison-item {
    flex: 1;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.comparison-item.soprano {
    color: #3a3737;
    font-weight: 500;
}

.comparison-item.other {
    color: #666;
}

.comparison-item i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.comparison-item.soprano i {
    background: #ff7d57;
    color: white;
}

.comparison-item.other i {
    background: #ff6b6b;
    color: white;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.comparison-title {
    font-size: 1.8rem;
    color: #3a3737;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff7d57;
    border-radius: 2px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #ff7d57;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #e66a45;
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .content-image-row {
        flex-direction: column;
        gap: 30px;
        margin: 30px 0;
        min-height: auto;
    }
    
    .content-text,
    .content-image {
        max-width: 100%;
        min-width: auto;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .content-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .side-image {
        height: 300px;
        width: 100%;
    }
    
    .comparison-simple {
        margin-top: 20px;
    }
    
    .comparison-row {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
    
    .comparison-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .comparison-row.header {
        flex-direction: row;
        background: #f8f9fa;
        padding: 15px 0;
        margin-bottom: 10px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.85rem;
        margin: 20px 0;
    }
    
    /* Vorteile Section Mobile */
    .vorteile-section {
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .vorteile-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .zertifikat-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .zertifikat-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .zertifikat-text h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .zertifikat-text p {
        font-size: 0.9rem;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vorteile-item {
        text-align: center;
        padding: 20px 15px;
    }
    
    .vorteile-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .vorteile-item-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .vorteile-item-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Vorteile Hero Section Mobile */
    .vorteile-hero-section {
        margin: 40px 0;
    }
    
    .vorteile-hero-content {
        flex-direction: column;
        height: auto;
    }
    
    .vorteile-hero-image {
        flex: none;
        height: 250px;
    }
    
    .vorteile-hero-text {
        flex: none;
        padding: 30px 20px;
        text-align: center;
    }
    
    .vorteile-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .vorteile-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .vorteile-hero-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .locations-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .location-card {
        padding: 20px 15px;
        text-align: center;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
    }
    
    .location-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .location-address {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .location-phone {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-text h2 {
        font-size: 1.4rem;
    }
    
    .content-text h3 {
        font-size: 1.1rem;
    }
    
    .side-image {
        height: 250px;
    }
    
    .comparison-item {
        font-size: 0.85rem;
    }
    
    .vorteile-title {
        font-size: 1.6rem;
    }
    
    .vorteile-hero-title {
        font-size: 1.6rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
}


/* Vorteile Section */
.vorteile-section {
    margin: 80px 0;
    padding: 0 20px;
}

.vorteile-title {
    font-size: 2.2rem;
    color: #3a3737;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Zertifikat Badge */
.zertifikat-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3a3737;
    color: white;
    padding: 20px 30px;
    margin: 0 auto 50px auto;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(58, 55, 55, 0.2);
    gap: 15px;
    border-left: 4px solid #ff7d57;
}

.zertifikat-icon {
    font-size: 2rem;
    color: #ff7d57;
    flex-shrink: 0;
}

.zertifikat-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.zertifikat-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vorteile-item {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
}

.vorteile-icon {
    width: 80px;
    height: 80px;
    background: #3a3737;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
}

.vorteile-icon::after {
    content: '✓';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #ff7d57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
}

.vorteile-icon i {
    font-size: 2rem;
    color: white;
}

.vorteile-item-title {
    font-size: 1.1rem;
    color: #3a3737;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vorteile-item-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for Vorteile Hero */
@media (max-width: 992px) {
    .vorteile-hero-content {
        flex-direction: column;
        height: auto;
    }
    
    .vorteile-hero-image {
        flex: none;
        height: 300px;
    }
    
    .vorteile-hero-text {
        flex: none;
        padding: 40px 30px;
        text-align: center;
    }
    
    .vorteile-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vorteile-hero-section {
        margin: 30px 0;
    }
    
    .vorteile-hero-content {
        height: auto;
    }
    
    .vorteile-hero-image {
        height: 250px;
    }
    
    .vorteile-hero-text {
        padding: 30px 20px;
    }
    
    .vorteile-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .vorteile-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .vorteile-hero-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact-section {
    background: #3a3737;
    color: white;
    padding: 60px 0;
}

.contact-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-weight: 600;
}

.locations-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 400px;
    border: 2px solid #ff7d57;
}

.location-card:hover {
    background: #ff7d57;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 125, 87, 0.3);
}

.location-card:hover .location-title,
.location-card:hover .location-phone {
    color: white;
}

.location-card:hover .location-address {
    color: #f0f0f0;
}

.location-card:hover .location-icon {
    color: white;
}

.location-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff7d57;
}

.location-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff7d57;
}

.location-address {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3737;
    font-weight: 500;
}

.location-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff7d57;
}

.location-phone i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .soprano-card {
        transform: none;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
    }
    
    .showcase-content p {
        font-size: 1rem;
    }
    
    .laser-image {
        height: 300px;
    }
    
    .full-image {
        height: 300px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .vorteile-title {
        font-size: 1.8rem;
    }
    
    .vorteile-icon {
        width: 70px;
        height: 70px;
    }
    
    .vorteile-icon i {
        font-size: 1.8rem;
    }
    
    .locations-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .zertifikat-badge {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        margin: 0 15px 40px 15px;
        gap: 12px;
    }
    
    .zertifikat-icon {
        font-size: 1.8rem;
    }
    
    .zertifikat-text h3 {
        font-size: 1.1rem;
    }
    
    .zertifikat-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .vorteile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vorteile-icon {
        width: 60px;
        height: 60px;
    }
    
    .vorteile-icon i {
        font-size: 1.5rem;
    }
    
    .vorteile-icon::after {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}
