/*
 * Competitor Comparison Pages - Shared Styles
 * For use with DICE, Eventbrite, Ticketmaster alternatives and similar pages
 */

/* Hero Section */
.competitor-hero {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('/resources/css/pages/contact-us-v4/img/concert-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 51, 102, 0.3);
    position: relative;
}

.competitor-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 153, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.hero-phone {
    max-width: 380px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) rotate(1deg) translateZ(50px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border-radius: 8px;
    border: 2px solid #444;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    filter: brightness(1.05);
}

.hero-image:hover .hero-phone {
    transform: perspective(1000px) rotateY(-10deg) rotateX(3deg) rotate(0deg) translateZ(60px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}


.floating-element {
    position: absolute;
    opacity: 0.7;
    filter: blur(2px);
    animation: float 10s infinite ease-in-out;
    border-radius: 50%;
}

.element-1 {
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,51,102,0.7) 0%, rgba(255,51,102,0) 70%);
    border-radius: 50%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,153,0,0.7) 0%, rgba(255,153,0,0) 70%);
    border-radius: 50%;
    animation-delay: 2s;
}

.element-3 {
    top: 40%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(102,204,255,0.7) 0%, rgba(102,204,255,0) 70%);
    border-radius: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Headings */
.competitor-hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.competitor-hero h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none;
    font-weight: 800;
    display: inline-block;
}

.hero-intro {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%;
    position: relative;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 3px solid rgba(255, 51, 102, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 51, 102, 0.1) 0%, transparent 60%);
    border-radius: 12px;
    z-index: -1;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #ff3366;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #ff9933;
}

.feature-card h3 {
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-icon {
    font-size: 2.2em;
    margin-bottom: 18px;
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 35px;
    margin: 40px 0;
    border: 1px solid rgba(255, 51, 102, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-table-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 51, 102, 0.25);
    transform: translateY(-5px);
}

.comparison-table-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 153, 0, 0.07) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(255, 153, 0, 0.15));
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.comparison-table th:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 51, 102, 0.5), rgba(255, 153, 0, 0.5));
}

.comparison-table th:first-child {
    border-top-left-radius: 8px;
}

.comparison-table th:last-child {
    border-top-right-radius: 8px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(255, 51, 102, 0.05);
    transition: all 0.2s ease;
}

.comparison-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.1);
}

.comparison-table tr:nth-child(even):hover {
    background: rgba(255, 51, 102, 0.05);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #fff;
    border-left: 3px solid transparent;
}

.comparison-table tr:hover td:first-child {
    border-left: 3px solid rgba(255, 51, 102, 0.5);
}

.ticketfairy-col {
    color: #fff;
    font-weight: 500;
    position: relative;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: text-top;
}

.check-icon i {
    color: #4CAF50;
    font-size: 18px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

.competitor-col {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    font-weight: 400;
}

.dash-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: text-top;
}

.dash-icon i {
    color: #ff5252;
    font-size: 18px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: rgba(255, 51, 102, 0.2);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 100px;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.2), rgba(255, 153, 0, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: Georgia, serif;
    opacity: 0.6;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 51, 102, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(255, 153, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.05em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 25px;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

/* FAQ Section */
#faq-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-title {
    font-size: 1.5em;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
}

#faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 5% 5%, rgba(255, 51, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 95% 95%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.faq-entity {
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.faq-entity:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 51, 102, 0.15);
}

.faq-question {
    font-weight: 600;
    font-size: 1.1em;
    color: #fff;
    margin: 0;
    padding: 18px 50px 18px 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ff3366, #ff9933);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-entity:hover .faq-question::before {
    opacity: 1;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: rgba(255, 51, 102, 0.7);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    background: rgba(255, 51, 102, 0.1);
}

.faq-entity.active .faq-question {
    background: rgba(255, 51, 102, 0.1);
}

.faq-entity.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
    background: rgba(255, 51, 102, 0.2);
}

.faq-answer {
    margin: 0;
    padding: 0 20px 20px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.faq-entity.active .faq-answer {
    display: block;
    animation: fadeInDown 0.4s ease forwards;
}

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

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

/* Banner Highlights */
.banner-highlight {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border-radius: 16px;
    padding: 35px;
    margin: 35px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 51, 102, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 51, 102, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(255, 153, 0, 0.06) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.banner-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(255, 51, 102, 0.25);
}

.banner-highlight h2, .banner-highlight h3 {
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6em;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-highlight h3 i {
    margin-right: 12px;
    font-size: 1.1em;
}

.banner-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Tag Pills */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95em;
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.3);
    font-weight: 600;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.tag-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(255, 153, 0, 0.1));
    z-index: -1;
    opacity: 0.7;
}

.tag-pill:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    border-color: rgba(255, 51, 102, 0.5);
}

.tag-pill:hover::before {
    opacity: 1;
}

.tag-pill i {
    margin-right: 10px;
    font-size: 1.1em;
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Buttons */
#main-ctas-container {
    margin-top: 35px;
}

#main-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.button.gradient-orange {
    background: linear-gradient(45deg, #ff3366, #ff9933);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.button.gradient-orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff9933, #ff3366);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button.gradient-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.6);
}

.button.gradient-orange:hover::before {
    opacity: 1;
}

.button.button-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.button.button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Action Cards */
.action-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border-radius: 10px;
    padding: 35px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid rgba(255, 51, 102, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 51, 102, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.action-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 51, 102, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.action-card h3 {
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}

.action-card i {
    font-size: 3.2em;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* Form Styling */
.form-fields {
    margin-top: 25px;
}

.name-fields {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-field-container {
    margin-bottom: 15px;
    width: 100%;
}

.custom-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) inset;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-input:focus {
    outline: none;
    border-color: rgba(255, 51, 102, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.1) inset;
}

.radio-group {
    margin-top: 5px;
    text-align: left;
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.radio-group p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95em;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px 0;
}

.radio-option:hover {
    transform: translateX(3px);
}

.radio-option input {
    margin-right: 10px;
    accent-color: #ff3366;
}

.radio-option span {
    color: rgba(255, 255, 255, 0.8);
}

.form-field-container .button {
    margin-top: 15px;
    width: 100%;
}

/* Lists */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.advantage-list li {
    padding: 12px 5px 12px 35px;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.advantage-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.advantage-list li:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(3px);
    border-radius: 4px;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    top: 12px;
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: bold;
}

.advantage-list li strong {
    color: #ff3366;
    font-weight: 600;
}

/* Related Solutions Links */
.faq-entities ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.faq-entities ul li {
    position: relative;
    margin: 0;
    padding: 0;
    flex: 1 0 250px;
}

.faq-entities ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 51, 102, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.faq-entities ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 153, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.faq-entities ul li a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 51, 102, 0.3);
}

.faq-entities ul li a:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-entities ul {
        flex-direction: column;
    }
    
    .faq-entities ul li {
        flex: 1 0 auto;
    }
}

/* Animations */
.animation-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Titles */
.title-top {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
}

.title-top h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: -0.5px;
}

.title-top p {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.title-top::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ff3366, #ff9933);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Benefits section styling */
#benefits {
    margin: 60px 0;
    position: relative;
    padding: 20px 0;
}

#benefits .inner-wrapper {
    position: relative;
    z-index: 1;
}

#benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    z-index: 0;
}

.benefits-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }
}

.benefits-container .banner-highlight {
    margin: 25px 0 10px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 51, 102, 0.2);
    overflow: visible;
    transition: all 0.3s ease;
}

.benefits-container .banner-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 51, 102, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(255, 153, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.benefits-container .banner-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border-color: rgba(255, 51, 102, 0.3);
}

.banner-icon {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.8), rgba(255, 153, 0, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.banner-icon i {
    font-size: 24px;
    color: white;
}

.banner-highlight {
    padding-top: 50px;
    position: relative;
}

.banner-highlight h3 {
    margin-bottom: 20px;
    position: relative;
}

.banner-highlight h3 i {
    display: none; /* Hide the icon in the heading since we now have the banner icon */
}

.banner-highlight .advantage-list {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Helper Classes */
.no-setup-fees {
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 3px 12px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.gradient-orange-text {
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.comparison-highlight {
    background: rgba(255, 51, 102, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.section-margin-bottom {
    margin-bottom: 80px;
}

.section-margin-top {
    margin-top: 80px;
}

.content-margin-top {
    margin-top: 40px;
}


/* Enhanced floating elements */
.floating-elements {
    opacity: 0.7;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 80%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 51, 102, 0.3);
    animation: modalFade 0.3s ease-in-out;
    overflow: hidden;
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 153, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.close:hover,
.close:focus {
    color: #ff3366;
    text-decoration: none;
}

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

/* Additional floating elements */
.element-4 {
    bottom: 30%;
    left: 15%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0,204,102,0.6) 0%, rgba(0,204,102,0) 70%);
    border-radius: 50%;
    animation-delay: 1.5s;
}

.element-5 {
    top: 25%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255,204,0,0.6) 0%, rgba(255,204,0,0) 70%);
    border-radius: 50%;
    animation-delay: 4s;
}

/* Secondary screenshot */
.floating-preview {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border: 2px solid #444;
    max-width: 240px;
    z-index: 3;
    transition: all 0.4s ease-in-out;
    filter: brightness(1.05);
}

.floating-preview.analytics {
    bottom: -30px;
    right: -40px;
    transform: rotate(5deg) translateZ(20px);
    animation: float-analytics 8s infinite ease-in-out;
}

.floating-preview.marketing {
    top: 10px;
    left: -30px;
    transform: rotate(-5deg) translateZ(30px);
    animation: float-marketing 6s infinite ease-in-out;
    max-width: 200px;
    z-index: 4;
}

.hero-image:hover .floating-preview.analytics {
    transform: rotate(5deg) translateZ(30px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-image:hover .floating-preview.marketing {
    transform: rotate(-5deg) translateZ(40px) translateY(5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

@keyframes float-analytics {
    0% { transform: rotate(5deg) translateZ(20px) translateY(0); }
    50% { transform: rotate(5deg) translateZ(20px) translateY(-10px); }
    100% { transform: rotate(5deg) translateZ(20px) translateY(0); }
}

@keyframes float-marketing {
    0% { transform: rotate(-5deg) translateZ(30px) translateY(0); }
    50% { transform: rotate(-5deg) translateZ(30px) translateY(-8px); }
    100% { transform: rotate(-5deg) translateZ(30px) translateY(0); }
}

/* Client Logos Section */
#logos {
    margin: 50px 0;
}

.pink-border-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pink-border-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.pink-border-box p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.2em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.grid-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 35px;
    margin-top: 30px;
    justify-items: center;
    align-items: center;
    position: relative;
}

.grid-logos img {
    transition: all 0.3s ease;
    filter: grayscale(40%) brightness(0.9);
    opacity: 0.85;
    max-width: 100%;
    height: auto;
}

.grid-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Sticky CTAs */
.sticky-ctas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 51, 102, 0.3);
}

.sticky-ctas.visible {
    transform: translateY(0);
}

.sticky-ctas .inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.sticky-logo {
    flex: 0 0 auto;
}

.sticky-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sticky-buttons .button {
    margin: 0;
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Tag Container and Tag Pills */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 51, 102, 0.15);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tag-pill:hover {
    background: rgba(255, 51, 102, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tag-pill i {
    margin-right: 6px;
    font-size: 0.9em;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        padding: 35px 20px;
    }
    
    .comparison-table {
        min-width: 700px; /* Ensure table doesn't shrink too much */
    }
    
    .title-top h2 {
        font-size: 2em;
    }
    
    .grid-logos {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .inner-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero section - Improved mobile styles */
    .competitor-hero {
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        position: relative;
        margin: 15px auto 0;
        order: 2;
        transform: none !important;
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: center;
    }

    .hero-content {
        order: 1;
        z-index: 10;
    }

    .competitor-hero h1 {
        font-size: 2em;
        margin-bottom: 15px;
        text-align: center;
    }

    .competitor-hero h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-intro {
        max-width: 100%;
        font-size: 1em;
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Improved button layouts */
    #main-ctas-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
    }
    
    #main-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    #main-ctas .button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1em;
        border-radius: 12px;
        margin: 0;
    }

    .button.gradient-orange {
        box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
    }

    .button.button-outline {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Card styling */
    .feature-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    /* Improved hero images */
    .hero-phone {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        z-index: 3;
        position: relative;
    }

    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .floating-preview {
        display: none; /* Hide secondary screenshots on mobile */
    }
    
    /* Logo grid */
    .grid-logos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }
    
    /* Improved tag pills layout */
    .tag-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }
    
    .tag-pill {
        font-size: 0.85em;
        padding: 10px 15px;
        margin: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal;
        min-height: 40px;
    }
    
    .tag-pill i {
        margin-right: 8px;
        font-size: 1em;
    }
    
    /* Benefits section */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-container .banner-highlight {
        margin: 30px 0 10px;
        padding: 40px 20px 25px;
    }

    .banner-icon {
        top: -25px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .banner-icon i {
        font-size: 20px;
    }
    
    /* Sections spacing */
    .banner-highlight,
    .testimonial-card,
    .comparison-table-wrapper,
    #faq-section {
        padding: 25px;
        margin: 25px 0;
    }
    
    .comparison-table-wrapper {
        padding: 20px 15px;
    }

    .title-top {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .title-top h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .title-top p {
        font-size: 1em;
    }
    
    .title-top::after {
        margin: 20px auto 0;
        width: 80px;
        height: 3px;
    }

    .action-card {
        padding: 25px 20px;
    }

    .section-margin-bottom {
        margin-bottom: 40px;
    }

    .section-margin-top {
        margin-top: 40px;
    }
    
    /* Lists */
    .advantage-list li {
        padding: 10px 5px 10px 28px;
        font-size: 0.95em;
    }

    .advantage-list li::before {
        left: 5px;
        top: 10px;
    }
    
    /* FAQs */
    .faq-question {
        font-size: 1em;
        padding: 15px 40px 15px 15px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95em;
    }
    
    /* Modal form fix */
    .modal-content {
        padding: 25px 20px;
        margin: 10% 5%;
        width: 90%;
    }
    
    /* Improved sticky header buttons */
    .sticky-ctas {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .sticky-ctas .inner-wrapper {
        padding: 12px 15px;
        display: flex;
        flex-direction: column;
    }
    
    .sticky-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .sticky-buttons .button {
        font-size: 0.9em;
        padding: 10px 18px;
        min-width: 140px;
        text-align: center;
        margin: 0;
    }
    
    .sticky-logo {
        display: none;
    }
    
    /* Booking form */
    .book_now_form .name-fields {
        flex-direction: column;
        gap: 10px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .competitor-hero {
        padding: 30px 15px;
    }
    
    .competitor-hero h1 {
        font-size: 1.7em;
    }
    
    .competitor-hero h2 {
        font-size: 1.4em;
    }
    
    .hero-intro {
        padding: 15px;
        margin-bottom: 20px;
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    /* Better layout for tag pills on small screens */
    .tag-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 20px 0;
    }
    
    .tag-pill {
        margin: 0;
        font-size: 0.8em;
        padding: 10px;
        height: auto;
        min-height: 44px;
        justify-content: center;
        border-radius: 8px;
        display: flex;
        align-items: center;
    }
    
    .tag-pill i {
        margin-right: 5px;
        font-size: 1em;
    }
    
    /* Adjust main CTAs for very small screens */
    #main-ctas-container {
        width: 100%;
    }
    
    #main-ctas {
        width: 100%;
    }
    
    #main-ctas .button {
        padding: 14px 16px;
        font-size: 0.95em;
    }
    
    /* Hero image adjustments */
    .hero-image {
        max-width: 280px;
    }
    
    .hero-phone {
        max-width: 260px;
    }
    
    /* Table adjustments */
    .comparison-table th, 
    .comparison-table td {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .banner-highlight h3 {
        font-size: 1.4em;
    }
    
    .testimonial-content p {
        font-size: 0.95em;
    }
    
    .testimonial-author {
        font-size: 0.9em;
        padding: 5px 12px;
    }
    
    /* Navigation and buttons */
    .sticky-buttons {
        flex-direction: column;
    }
    
    .sticky-buttons .button {
        width: 100%;
        padding: 12px 15px;
    }
    
    .faq-entities ul li a {
        height: auto;
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    /* Improved section spacing */
    .section-margin-bottom {
        margin-bottom: 30px;
    }
    
    .section-margin-top {
        margin-top: 30px;
    }
}
