/* Tools Page - Compiaz Booking & mehr */

/* Hero Section */
.tools-hero {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.tools-hero::before {
    display: none;
}

.tools-hero::after {
    display: none;
}

.tools-hero .container {
    position: relative;
    z-index: 2;
}

.tools-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.tools-hero .hero-text {
    flex: 1;
}

.tools-hero .hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.tools-hero .hero-text .hero-subtitle {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tools-hero .hero-text .hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tools-hero .hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240, 58, 112, 0.1);
    border: 1px solid rgba(240, 58, 112, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #fff;
    transition: all 0.3s ease;
}

.tools-hero .hero-text .hero-badge:hover {
    background: rgba(240, 58, 112, 0.2);
    transform: translateY(-2px);
}

.tools-hero .hero-text .hero-badge i {
    color: #f03a70;
}

.tools-hero .hero-image {
    display: none;
}

@media (max-width: 991px) {
    .tools-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .tools-hero .hero-text .hero-badges {
        justify-content: center;
    }
    .tools-hero {
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .tools-hero {
        padding: 5rem 0 2rem;
    }
}

/* Feature Sections */
.tool-section {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
}

.tool-section:nth-child(even) {
    background: #000;
}

.tool-section .container {
    width: 100%;
}

.tool-section .section-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.tool-section .section-content.reverse {
    flex-direction: row-reverse;
}

.tool-section .text-side {
    flex: 1;
}

.tool-section .text-side h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tool-section .text-side h3 {
    font-size: 1.1rem;
    color: #f03a70;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tool-section .text-side p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tool-section .text-side .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-section .text-side .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: #ddd;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tool-section .text-side .feature-list li:hover {
    background: rgba(240, 58, 112, 0.06);
    border-color: rgba(240, 58, 112, 0.15);
    transform: translateX(5px);
}

.tool-section .text-side .feature-list li i {
    color: #f03a70;
    margin-top: 0.3rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.tool-section .image-side {
    flex: 0 0 auto;
    max-width: 380px;
    width: 380px;
}

.tool-section .image-side img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease;
}

.tool-section .image-side img:hover {
    transform: scale(1.02);
}

.tool-section .image-side .image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tool-section .image-side .image-stack img {
    width: 100%;
}

@media (max-width: 991px) {
    .tool-section {
        min-height: auto;
        padding: 3rem 0;
    }
    .tool-section .section-content,
    .tool-section .section-content.reverse {
        flex-direction: column;
    }
    .tool-section .image-side {
        max-width: 280px;
        width: 280px;
        margin: 0 auto;
    }
    .tool-section .image-side .image-stack {
        grid-template-columns: 1fr 1fr;
        max-width: 280px;
    }
    .tool-section .text-side h2 {
        font-size: 1.8rem;
    }
    .tool-section .text-side .feature-list li {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .tool-section {
        padding: 2.5rem 0;
    }
    .tool-section .image-side {
        max-width: 200px;
        width: 200px;
    }
    .tool-section .image-side .image-stack {
        max-width: 200px;
    }
    .tool-section .text-side h2 {
        font-size: 1.5rem;
    }
    .tool-section .text-side h3 {
        font-size: 0.95rem;
    }
    .tool-section .text-side p {
        font-size: 0.9rem;
    }
    .tool-section .text-side .feature-list li {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    .tool-section .text-side .feature-list li i {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.tools-pricing {
    background: #000;
    padding: 5rem 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.card-effect {
    perspective: 1000px;
}

.card-inner {
    --card-accent: #f03a70;
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
}

.card-inner--featured {
    border-color: rgba(240, 58, 112, 0.25);
    box-shadow: 0 8px 32px rgba(240, 58, 112, 0.1);
}

.card-inner:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-inner--featured:hover {
    box-shadow: 0 20px 50px rgba(240, 58, 112, 0.2);
}

.card__liquid {
    position: absolute;
    top: -80px;
    left: 0;
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    transition:
        transform 0.7s cubic-bezier(0.36, 0, 0.66, -0.56),
        opacity 0.3s ease-in-out;
    opacity: 0;
}

.card__liquid--featured {
    background: rgba(240, 58, 112, 0.3);
}

.card-inner:hover .card__liquid {
    transform: translateY(30px) translateX(-20px) rotate(-20deg) scale(1.2);
    opacity: 0.7;
}

.card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 30%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.02) 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.card-inner:hover .card__shine {
    opacity: 1;
    animation: shine-effect 2s infinite linear;
}

.card__glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.card__glow--featured {
    background: radial-gradient(
        circle at 50% 0%,
        rgba(240, 58, 112, 0.25) 0%,
        rgba(240, 58, 112, 0) 60%
    );
}

.card-inner:hover .card__glow {
    opacity: 1;
}

.card__content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card__badge {
    display: inline-block;
    width: fit-content;
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    padding: 0.3em 0.8em;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    transition: all 0.5s ease;
}

.card__badge--featured {
    background: rgba(240, 58, 112, 0.15);
    color: #f03a70;
}

.card-inner:hover .card__badge {
    background: rgba(255, 255, 255, 0.12);
}

.card-inner:hover .card__badge--featured {
    background: rgba(240, 58, 112, 0.25);
}

.card__plan-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.card__plan-desc {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card__price-block {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card__currency {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

.card__amount {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.card-inner--featured .card__amount {
    background: linear-gradient(135deg, #f03a70, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card__period {
    color: #666;
    font-size: 0.85rem;
}

.card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.card__features li {
    color: #bbb;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card__features li i {
    color: #f03a70;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.card__cta {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card__cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

.card__cta--featured {
    background: linear-gradient(135deg, #f03a70, #e91e63);
    border: none;
    box-shadow: 0 4px 20px rgba(240, 58, 112, 0.25);
}

.card__cta--featured:hover {
    box-shadow: 0 8px 30px rgba(240, 58, 112, 0.4);
    background: linear-gradient(135deg, #f03a70, #e91e63);
}

@keyframes shine-effect {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@media (max-width: 576px) {
    .card-inner {
        width: 100%;
    }
    .pricing-cards {
        gap: 1.5rem;
    }
    .card__amount {
        font-size: 2.2rem;
    }
}

/* CTA Section */
.tools-cta {
    background: #000;
    padding: 5rem 0;
    text-align: center;
}

.tools-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.tools-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tools-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tools-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f03a70, #e91e63);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(240, 58, 112, 0.3);
}

.tools-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(240, 58, 112, 0.4);
    color: #fff;
}

/* Contact Section */
.tools-contact {
    background: #000;
    padding: 5rem 0;
}

.tools-contact .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tools-contact .glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.tools-contact .contact-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.tools-contact .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tools-contact .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f03a70;
    box-shadow: 0 0 15px rgba(240, 58, 112, 0.15);
    color: #fff;
}

.tools-contact .form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.tools-contact .floating-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tools-contact .floating-label i {
    margin-right: 0.5rem;
}

.tools-contact .modern-textarea .floating-label {
    top: 1rem;
    transform: none;
}

.tools-contact .form-control:focus ~ .floating-label,
.tools-contact .form-control:not(:placeholder-shown) ~ .floating-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    background: #0a0a0a;
    padding: 0 0.5rem;
    color: #f03a70;
}

.tools-contact .form-check-label {
    color: #aaa;
    font-size: 0.85rem;
}

.tools-contact .form-check-label a {
    color: #f03a70;
}

.tools-contact .btn-primary {
    background: linear-gradient(135deg, #f03a70, #e91e63);
    border: none;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tools-contact .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 58, 112, 0.3);
}

.tools-contact select.form-control {
    appearance: none;
    -webkit-appearance: none;
}

.tools-contact .modern-select {
    position: relative;
}

.tools-contact .modern-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

@media (max-width: 991px) {
    .tools-contact .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 58, 112, 0.3), transparent);
    margin: 0;
}
