.container {
    max-width: 1180px !important;
}

.social-buttons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Base Social Button Styles */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effects Base */
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn:active {
    transform: translateY(-1px);
}

/* Shimmer Effect */
.social-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.social-btn:hover::before {
    left: 100%;
}

/* Icon Styles */
.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-btn:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Telegram Button */
.social-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #229ed9) !important;
    color: white !important;
}

.social-btn-telegram:hover {
    background: linear-gradient(135deg, #006ba6, #1e8bc3);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

/* X.com (Twitter) Button */
.social-btn-x {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white !important;
}

.social-btn-x:hover {
    background: linear-gradient(135deg, #1991db, #0c7bc4);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

/* Instagram Button */
.social-btn-instagram {
    background: linear-gradient(
        135deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
    color: white !important;
}

.social-btn-instagram:hover {
    background: linear-gradient(
        135deg,
        #3b4de0,
        #5045cf,
        #7a33a8,
        #b42e78,
        #d42761,
        #f01a1a
    );
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* TikTok Button */
.social-btn-tiktok {
    background: linear-gradient(135deg, #ff0050, #ff4458, #ff6b6b);
    color: white !important;
}

.social-btn-tiktok:hover {
    background: linear-gradient(135deg, #e6004a, #e63d4f, #e65f5f);
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
}

/* Alternative Round Button Styles */
.social-btn-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    min-width: auto;
}

.social-btn-round .social-text {
    display: none;
}

.social-btn-round .social-icon {
    width: 28px;
    height: 28px;
}

/* Glass Morphism Alternative */
.social-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #333;
}

.social-btn-glass.social-btn-telegram {
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.social-btn-glass.social-btn-x {
    border-color: rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.social-btn-glass.social-btn-instagram {
    border-color: rgba(225, 48, 108, 0.3);
    background: linear-gradient(
        135deg,
        rgba(64, 93, 230, 0.1),
        rgba(225, 48, 108, 0.1)
    );
    color: #e1306c;
}

.social-btn-glass.social-btn-tiktok {
    border-color: rgba(255, 0, 80, 0.3);
    color: #ff0050;
}

/* Neon Glow Alternative */
.social-btn-neon {
    background: transparent;
    border: 2px solid;
    color: inherit;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.social-btn-neon.social-btn-telegram {
    border-color: #0088cc;
    color: #0088cc;
    text-shadow: 0 0 10px #0088cc;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}

.social-btn-neon.social-btn-x {
    border-color: #1da1f2;
    color: #1da1f2;
    text-shadow: 0 0 10px #1da1f2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
}

.social-btn-neon.social-btn-instagram {
    border-color: #e1306c;
    color: #e1306c;
    text-shadow: 0 0 10px #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.social-btn-neon.social-btn-tiktok {
    border-color: #ff0050;
    color: #ff0050;
    text-shadow: 0 0 10px #ff0050;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

.social-btn-neon:hover {
    background: currentColor;
    color: white;
    text-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-buttons-container {
        gap: 10px;
    }

    .social-btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .social-btn-round {
        width: 50px;
        height: 50px;
    }

    .social-btn-round .social-icon {
        width: 24px;
        height: 24px;
    }
}

/* Section Titles */
.social-section-title {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Platform Form Specific Styles - No Conflicts */
.platform-form-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: rgb(74 74 74 / 14%);
    backdrop-filter: blur(3px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.platform-form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #dc143c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.platform-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.platform-field-group {
    margin-bottom: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.platform-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.platform-input,
.platform-select {
    width: 100% !important;
    height: 60px !important;
    padding: 15px 20px !important;
    border: 1px solid #3e3e3e !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    background: #00000000 !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
    color: #dbdbdb !important;
}

.platform-textarea {
    border-radius: 12px;
}

.platform-input:focus,
.platform-select:focus,
.platform-textarea:focus {
    transform: translateY(-1px);
}

.platform-select:focus {
    color: #fff;
}


.platform-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.platform-select option {
    background-color: #000; /* item bg */
    color: #fff; /* item text */
}


.platform-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    font-size: 16px !important;
    border: 1px solid #3e3e3e !important;
    border-radius: 12px !important;
}

.platform-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #dc143c, #ff6b6b);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    margin-top: 20px;
}

.platform-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    background: linear-gradient(45deg, #b91c3c, #ff5252);
}

.platform-submit-btn:active {
    transform: translateY(0);
}

.platform-field-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.platform-field-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: platformFadeInUp 0.4s ease-out;
}

@keyframes platformFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-required-mark {
    color: #dc143c;
    margin-left: 3px;
}

/* Validation States */
/**/

/* Loading State */
.platform-submit-btn.platform-loading {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.platform-submit-btn.platform-loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: platformSpin 1s linear infinite;
    margin-left: 10px;
}

@keyframes platformSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .platform-form-wrapper {
        padding: 30px 20px;
        margin: 0;
        max-width: 100%;
    }

    .platform-form-title {
        font-size: 2rem;
    }

    .platform-input,
    .platform-select,
    .platform-textarea {
        padding: 12px 15px;
    }
}

.video-wrap {
    width: 100%;
    text-align: center;
}

.video-wrap video {
    border-bottom: 5px solid #ff014f;
    border-radius: 0 30px;
    width: 100%;
    object-fit: cover;
    height: unset !important;
}

.swiper-pagination-bullet {
    background: #ff014f !important;
}

.swiper-scrollbar {
    height: auto !important;
    text-align: center !important;
}

.client-slides .portfolio-card-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5%;
    background: linear-gradient(0deg, var(--color-primary) 38%, rgba(253, 187, 45, 0) 100%);
}

.client-slides .portfolio-card-content-wrap p {
    font-size: 16px;
    color: #fff;
}

.client-slides .portfoli-card-img,
.client-slides .img-box {
    height: 100% !important;
}

.client-slides .latest-portfolio-card-style-two {
    height: 600px;
    padding: 0;
    transition: 0.1s ease-in;
}

.client-slides .portfolio-card-title a {
    color: #ffffff;
    font-weight: 600;
}

.client-slides .tmp-btn {
    background: #ffffffeb;
    color: #000;
}

.shaped {
    border-radius: 30% 70% 70% 30% / 48% 49% 51% 52%;
    box-shadow: 0 61px 60px #ff014f21;
}

.pussy {
    background: url("../images/kinkeu/pussy.png") center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.portfolio-card-verified {
    position: absolute;
    right: 10px;
    top: 10px;
    height: auto;
    z-index: 3;
    background: #1a1a1a;
    border-radius: 0 20px;
    color: #ffffff;
    padding: 10px;
    font-size: 10px;
    backdrop-filter: blur(5px);
}

.portfolio-card-verified img {
    width: 30px;
}

.portfolio-card-slide-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    /*padding: 8px;*/
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--color-white);
    border-radius: 100px;
    position: absolute;
    left: 25px;
    top: 25px;
    z-index: 3;
}


input[type="date"] {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" viewBox="0 0 16 16"><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 30px;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}


@media screen and (max-width: 768px) {
    .shaped {
        border-radius: 10px;
        box-shadow: none;
    }

    .results-grid.list-view .result-img {
        width: 30%;
    }
    .results-grid.list-view .result-img img{
        width: 100%;
        max-height: 100px;
        object-fit: cover;
        min-height: 100px;
        object-position: top;
        height: 100%;
    }

    .result-title{
        font-size: 16px;
    }
}


/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 12px;
    margin-bottom: 60px;
    border: 1px solid #333;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff4466 0%, #ff6688 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 50px 40px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.section-text {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ff4466;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 102, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff4466;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #ff4466;
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4466 0%, #ff6688 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.value-text {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: #ff4466;
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff4466 0%, #ff6688 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.team-role {
    font-size: 14px;
    color: #ff4466;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff4466 0%, #ff6688 100%);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #ff4466;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .content-section {
        padding: 30px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-section {
        padding: 40px 24px;
    }
}


/*////////////////// */

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.tab-button:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.tab-button.active {
    color: #dc3545;
    border-bottom-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}


.form-container {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: #ff4444;
}


.char-counter {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
    text-align: right;
}

.char-counter.warning {
    color: #ffaa00;
}

.char-counter.error {
    color: #ff4444;
}

.file-info {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #ff4466;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.submit-btn:hover {
    background-color: #ff6688;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 68, 102, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}


.tab-form-content {
    display: none;
}

.tab-form-content.show-form {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 24px;
    }
}


/* Pricing Table Styles */
.kinkeu-pricing-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.kinkeu-pricing-table thead {
    background: linear-gradient(135deg, #ff006e 0%, #eb3237 100%);
}

.kinkeu-pricing-table th {
    padding: 15px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.kinkeu-pricing-table td {
    padding: 15px;
    color: #ccc;
    border-bottom: 1px solid #2a2a2a;
}

.kinkeu-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.kinkeu-pricing-table tbody tr:hover {
    background: rgba(255, 0, 110, 0.05);
}

.kinkeu-price-highlight {
    color: #eb3237;
    font-weight: 700;
    font-size: 18px;
}

/* Notice Box */
.kinkeu-notice-box {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    border: 2px solid #eb3237;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.kinkeu-notice-box::before {
    content: '';
    background: url("../images/notice.png") center center no-repeat;
    background-size: 100%;
    font-weight: 900;
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 24px;
    width: 30px;
    height: 30px;
}

.kinkeu-notice-box-content {
    padding-left: 50px;
}

.kinkeu-notice-box h4 {
    color: #eb3237;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.kinkeu-notice-box p {
    color: #fff;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}


@media screen and (max-width: 768px) {
    .kinkeu-pricing-table th {
        padding: 10px;
        text-align: center;
        font-size: 12px;
    }

    .kinkeu-pricing-table td {
        padding: 10px;
        text-align: center;
        font-size: 12px;
    }
    .contact-footer{
        flex-direction: column;
    }
}
