* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* External link indicators for accessibility */
a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.85em;
    opacity: 0.7;
    display: inline-block;
    margin-right: 2px;
}

/* Hide external link indicator for specific elements where it's visually disruptive */
.video-card[target="_blank"]::after,
.social-icon[target="_blank"]::after,
.whatsapp-float[target="_blank"]::after {
    content: none;
}

/* Focus indicators for interactive elements */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.animate-fade-up {
    transform: translateY(60px);
}

.animate-fade-down {
    transform: translateY(-60px);
}

.animate-fade-left {
    transform: translateX(-80px);
}

.animate-fade-right {
    transform: translateX(80px);
}

.animate-scale {
    transform: scale(0.85);
}

.animate-rotate-in {
    transform: rotate(-10deg) scale(0.9);
}

.animate-flip-x {
    transform: perspective(1000px) rotateX(-30deg);
}

.animate-flip-y {
    transform: perspective(1000px) rotateY(-30deg);
}

.animate-blur {
    filter: blur(10px);
    transform: translateY(40px);
}

.animate-wave {
    transform: translateY(50px);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.animate-bounce-in {
    transform: scale(0.3) rotate(-20deg);
}

.animate-slide-rotate {
    transform: translateX(-100px) rotate(-15deg);
    opacity: 0;
}

.animate-zoom-rotate {
    transform: scale(0.5) rotate(180deg);
    opacity: 0;
}

.animate-glitch {
    transform: translateX(-20px);
    opacity: 0;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) rotate(0) !important;
    filter: blur(0) !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}

.visible.animate-glitch {
    animation: glitch 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes glitch {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    20% {
        transform: translateX(10px);
        opacity: 0.5;
    }
    40% {
        transform: translateX(-5px);
        opacity: 0.8;
    }
    60% {
        transform: translateX(3px);
        opacity: 0.9;
    }
    80% {
        transform: translateX(-1px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.visible.animate-bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3) rotate(-20deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.visible.animate-wave {
    animation: wave 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes wave {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transform: translateY(50px);
    }
    50% {
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0 50%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

/* Text Content */
.text-content {
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #fff;
}

.highlight {
    color: #FFD700;
    font-weight: 700;
}

.subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 45px;
    font-weight: 400;
}

.subtitle strong {
    color: #FFC107;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    background: #FFC107;
    color: #000;
    border: none;
    padding: 20px 50px;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
    text-decoration: none;
    scroll-behavior: smooth;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.35);
    background: #FFD54F;
}

.cta-button:active {
    transform: translateY(-1px);
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(-5px);
}

/* Image Content */
.image-content {
    position: relative;
    animation: fadeInRight 1s ease-out;
    max-width: 350px;
    margin-right: auto;
}

.image-wrapper {
    position: relative;
    overflow: visible;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border: 1px solid #FFD700;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.badge-1 {
    top: 10%;
    right: -50px;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    left: -50px;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Glow Effect */
.glow-effect {
    display: none;
}

/* Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.03) 100%);
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Viral Videos Section */
.viral-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.viral-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.viral-title .highlight {
    display: block;
    color: #FFD700;
    font-weight: 700;
    margin-top: 15px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 750px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1.5px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
    border-color: #FFC107;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
    position: relative;
    z-index: 2;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay span {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    text-align: center;
}

.shape-4 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: rotate 25s linear infinite;
}

.shape-5 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation: rotate 20s linear infinite reverse;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 968px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .text-content {
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .main-title {
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .subtitle {
        font-size: 1.35rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 20px 45px;
        font-size: 1.35rem;
        align-self: center;
        order: 3;
    }

    .image-content {
        max-width: 280px;
        margin: 0 auto;
        order: 1;
    }

    .badge-1,
    .badge-2 {
        position: static;
        display: inline-flex;
        margin: 10px;
    }

    .floating-badge {
        animation: none;
    }

    .viral-section {
        padding: 60px 0;
    }

    .viral-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .hero-content {
        gap: 25px;
    }

    .main-title {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }

    .image-content {
        max-width: 240px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.25rem;
        width: 100%;
        justify-content: center;
    }

    .floating-badge {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .floating-badge svg {
        width: 30px;
        height: 30px;
    }

    .shape-1,
    .shape-2 {
        width: 300px;
        height: 300px;
    }

    .viral-section {
        padding: 50px 0;
    }

    .viral-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .video-card {
        border-width: 1.5px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 15px 0;
    }

    .hero-content {
        gap: 20px;
    }

    .main-title {
        font-size: 2.3rem;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .image-content {
        max-width: 220px;
    }

    .cta-button {
        font-size: 1.2rem;
    }

    .viral-section {
        padding: 40px 0;
    }

    .viral-title {
        font-size: 1.9rem;
        margin-bottom: 30px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .play-icon {
        width: 35px;
        height: 35px;
    }

    .video-overlay span {
        font-size: 0.85rem;
    }
}

/* Stats Bar - Compact and Clean */
.stats-wrapper {
    margin-top: 80px;
    text-align: center;
}

.stats-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.stats-subtitle .highlight {
    color: #FFD700;
}

.stats-sub-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 30px;
    font-style: italic;
}

.stats-bar {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* Secondary CTA Button */
.secondary-cta {
    margin-top: 60px;
    display: inline-flex;
    background: #2a2a2a;
    color: #FFD700;
    padding: 16px 35px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.secondary-cta:hover {
    background: #3a3a3a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.secondary-cta .arrow {
    color: #FFD700;
}

/* Stats Bar Responsive */
@media (max-width: 968px) {
    .stats-wrapper {
        margin-top: 60px;
    }

    .stats-subtitle {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stats-sub-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .stats-bar {
        padding: 35px 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-divider {
        height: 55px;
    }

    .secondary-cta {
        margin-top: 50px;
        padding: 15px 30px;
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .stats-wrapper {
        margin-top: 60px;
        text-align: center;
    }

    .stats-subtitle {
        font-size: 2.2rem;
        margin-bottom: 45px;
        line-height: 1.4;
    }

    .stats-sub-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 45px;
        padding: 30px 0;
        border: none;
    }

    .stat-item {
        flex: 0 0 calc(50% - 22px);
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 3.5rem;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .secondary-cta {
        margin-top: 45px;
        width: 90%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-subtitle {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stats-sub-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .stats-bar {
        gap: 40px;
    }

    .stat-number {
        font-size: 3.2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .secondary-cta {
        margin-top: 40px;
        font-size: 1.05rem;
        padding: 15px 25px;
    }
}

/* Why Section */
.why-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.why-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #FFD700;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 193, 7, 0.4);
    transform: translateX(-5px);
}

.check-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.shape-6 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotate 30s linear infinite;
}

.shape-7 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    animation: rotate 25s linear infinite reverse;
}

/* Why Section Responsive */
@media (max-width: 968px) {
    .why-section {
        padding: 60px 0;
    }

    .why-title {
        font-size: 2.4rem;
        margin-bottom: 50px;
    }

    .why-card {
        padding: 18px 22px;
    }

    .check-icon {
        width: 36px;
        height: 36px;
    }

    .why-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: 50px 0;
    }

    .why-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .why-grid {
        gap: 15px;
    }

    .why-card {
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .why-card:hover {
        transform: translateY(-5px);
    }

    .check-icon {
        width: 34px;
        height: 34px;
    }

    .why-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .why-card {
        padding: 15px 18px;
    }

    .why-text {
        font-size: 0.95rem;
    }
}

/* Results Section */
.results-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.results-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #fff;
    line-height: 1.3;
}

.results-title .highlight {
    display: block;
    color: #FFD700;
    margin-top: 15px;
}

.result-item {
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.before-image,
.after-image {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.before-image img,
.after-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    display: block;
    transition: all 0.3s ease;
}

.before-image:hover img,
.after-image:hover img {
    border-color: #FFD700;
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: #FFD700;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
    z-index: 2;
}

.arrow-animation {
    flex-shrink: 0;
}

.animated-arrow {
    animation: slideRight 1s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-15px);
        opacity: 0.7;
    }
}

.result-item.with-text {
    text-align: center;
}

.result-text {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
    position: relative;
}

.result-text::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 25px solid #FFD700;
    margin: 20px auto 0 auto;
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

.result-image {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.result-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.result-image img:hover {
    border-color: #FFD700;
    transform: scale(1.02);
}

.viral-stats-text {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 25px;
}

.viral-stats-text::after {
    content: '';
    display: block;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 5%, #FFD700 92%, transparent 100%);
    margin: 15px auto 0 auto;
    transform: skewX(-2deg);
}

.stats-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stats-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    height: 350px;
}

.stats-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

.stats-image-item:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.final-cta {
    margin: 60px auto 0 auto;
    display: inline-flex;
    background: #FFC107;
    color: #000;
    font-size: 1.2rem;
    padding: 18px 40px;
}

.final-cta:hover {
    background: #FFD54F;
}

.result-item:last-child {
    text-align: center;
}

.shape-8 {
    width: 450px;
    height: 450px;
    top: -120px;
    left: -120px;
    animation: rotate 28s linear infinite;
}

.shape-9 {
    width: 380px;
    height: 380px;
    bottom: -90px;
    right: -90px;
    animation: rotate 22s linear infinite reverse;
}

/* Results Section Responsive */
@media (max-width: 968px) {
    .results-section {
        padding: 60px 0;
    }

    .results-title {
        font-size: 2.4rem;
        margin-bottom: 60px;
    }

    .result-item {
        margin-bottom: 60px;
    }

    .before-after {
        gap: 30px;
    }

    .before-image,
    .after-image {
        min-width: 240px;
        max-width: 300px;
    }

    .result-text {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .viral-stats-text {
        font-size: 2rem;
    }

    .stats-images-grid {
        gap: 18px;
    }

    .final-cta {
        margin-top: 50px;
        font-size: 1.15rem;
        padding: 16px 38px;
    }
}

@media (max-width: 640px) {
    .results-section {
        padding: 50px 0;
    }

    .results-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .result-item {
        margin-bottom: 50px;
    }

    .before-after {
        gap: 25px;
        flex-direction: column;
    }

    .before-image,
    .after-image {
        max-width: 100%;
        width: 100%;
    }

    .arrow-animation {
        transform: rotate(90deg) scaleX(-1);
    }

    .animated-arrow {
        width: 50px;
        height: 50px;
    }

    .result-text {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .image-label {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .viral-stats-text {
        font-size: 1.8rem;
    }

    .stats-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-image-item {
        height: 300px;
    }

    .final-cta {
        margin-top: 45px;
        font-size: 1.1rem;
        padding: 16px 35px;
    }
}

@media (max-width: 480px) {
    .results-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .result-item {
        margin-bottom: 40px;
    }

    .before-after {
        gap: 20px;
    }

    .animated-arrow {
        width: 45px;
        height: 45px;
    }

    .result-text {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .viral-stats-text {
        font-size: 1.6rem;
    }

    .stats-images-grid {
        gap: 12px;
    }

    .stats-image-item {
        height: 250px;
    }

    .final-cta {
        margin-top: 40px;
        font-size: 1.05rem;
        padding: 15px 32px;
    }
}

/* About Section */
.about-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.about-title {
    font-size: 3.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    line-height: 1.3;
}

.about-title .highlight {
    color: #FFD700;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 40px auto 50px auto;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 193, 7, 0.3);
    background: rgba(255, 255, 255, 0.03);
    color: #e0e0e0;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: #fff;
}

.social-icon.tiktok:hover {
    background: #000;
    border-color: #00f2ea;
    color: #00f2ea;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-image {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.about-image img:hover {
    border-color: #FFD700;
    transform: scale(1.02);
}

.shape-10 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: rotate 30s linear infinite;
}

.shape-11 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: rotate 25s linear infinite reverse;
}

/* About Section Responsive */
@media (max-width: 968px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 3.2rem;
        margin-bottom: 50px;
    }

    .about-content {
        gap: 45px;
    }

    .about-text p {
        font-size: 1.25rem;
    }

    .about-image {
        max-width: 300px;
    }

    .social-icons {
        gap: 20px;
        margin: 35px auto 45px auto;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 3.4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text p {
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .about-image {
        max-width: 280px;
        order: -1;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .about-content {
        gap: 40px;
    }

    .about-text {
        gap: 25px;
    }

    .about-text p {
        font-size: 1.45rem;
        line-height: 1.85;
    }

    .about-image {
        max-width: 240px;
    }

    .social-icons {
        gap: 18px;
        margin: 30px auto 40px auto;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2.6rem;
        margin-bottom: 35px;
    }

    .about-text p {
        font-size: 1.35rem;
        line-height: 1.8;
    }

    .about-image {
        max-width: 200px;
    }

    .social-icons {
        gap: 15px;
        margin: 25px auto 35px auto;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Pricing Section */
.pricing-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.3;
}

.pricing-title .highlight {
    color: #FFD700;
}

.pricing-subtitle {
    font-size: 1.4rem;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 80px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px 25px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.basic-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.03) 0%, #1a1a1a 100%);
}

.premium-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, #1a1a1a 100%);
    border: 2px solid rgba(255, 193, 7, 0.5);
}

.premium-card:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid rgba(255, 193, 7, 0.4);
}

.basic-icon {
    color: #FFD700;
}

.premium-icon {
    color: #FFD700;
}

.package-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.feature-item .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #FFD700;
}

.package-button {
    width: 100%;
    padding: 14px 25px;
    border-radius: 10px;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
}

.basic-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.basic-button:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB732 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.premium-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.premium-button:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB732 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}

.package-button .arrow {
    flex-shrink: 0;
}

.shape-12 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: rotate 32s linear infinite;
}

.shape-13 {
    width: 450px;
    height: 450px;
    bottom: -100px;
    right: -100px;
    animation: rotate 28s linear infinite reverse;
}

/* Pricing Section Responsive */
@media (max-width: 968px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .pricing-subtitle {
        font-size: 1.25rem;
        margin-bottom: 60px;
    }

    .pricing-cards {
        gap: 25px;
        max-width: 800px;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .package-name {
        font-size: 1.5rem;
    }

    .feature-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-title {
        font-size: 2.6rem;
    }

    .pricing-subtitle {
        font-size: 1.3rem;
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-title {
        font-size: 2.3rem;
        margin-bottom: 15px;
    }

    .pricing-subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }

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

    .package-icon {
        width: 55px;
        height: 55px;
    }

    .package-icon svg {
        width: 32px;
        height: 32px;
    }

    .package-name {
        font-size: 1.4rem;
    }

    .feature-item {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .package-button {
        font-size: 1rem;
        padding: 13px 20px;
    }

    .popular-badge {
        font-size: 0.8rem;
        padding: 5px 16px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .package-name {
        font-size: 1.3rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .package-button {
        font-size: 0.95rem;
        padding: 12px 18px;
    }
}

/* Contact Form Section */
.contact-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.8rem;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 60px;
    line-height: 1.6;
}

.highlight-underline {
    position: relative;
    color: #FFD700;
    display: inline-block;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFD700;
    animation: underlineFlash 2s ease-in-out infinite;
}

@keyframes underlineFlash {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0;
        transform: scaleX(0.8);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 55px;
        height: 55px;
    }
}

/* Nagishli Accessibility Button Styling */
#nagishli_r2m {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(79, 195, 247, 0.4) !important;
    transition: all 0.3s ease !important;
}

#nagishli_r2m:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.6) !important;
}

/* Cookie Consent Banner - Compact Version */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #FFD700;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.7);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-title {
    display: none;
}

.cookie-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-checkbox {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFD700;
    flex-shrink: 0;
}

.cookie-consent-checkbox label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
    white-space: nowrap;
}

.privacy-link-inline {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.privacy-link-inline:hover {
    color: #FFC107;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin: 0;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Assistant', sans-serif;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.cookie-accept:not(:disabled):hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB732 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
}

.cookie-accept:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.cookie-decline {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid rgba(255, 193, 7, 0.4);
}

.cookie-decline:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

.cookie-note {
    display: none;
}

@media (max-width: 968px) {
    .cookie-banner-content {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 12px;
    }

    .cookie-icon {
        font-size: 28px;
    }

    .cookie-description {
        font-size: 0.88rem;
        min-width: 100%;
        order: 1;
    }

    .cookie-consent-checkbox {
        order: 2;
        width: 100%;
    }

    .cookie-consent-checkbox label {
        font-size: 0.85rem;
        white-space: normal;
    }

    .cookie-buttons {
        order: 3;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .cookie-banner-content {
        padding: 12px 15px;
        gap: 10px;
    }

    .cookie-icon {
        font-size: 24px;
    }

    .cookie-description {
        font-size: 0.82rem;
    }

    .cookie-consent-checkbox label {
        font-size: 0.8rem;
    }

    .cookie-consent-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .cookie-btn {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 3% auto;
    padding: 0;
    border: 2px solid #FFD700;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 193, 7, 0.3);
    animation: slideDown 0.4s ease;
}

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

.modal-close {
    color: #000;
    float: left;
    font-size: 36px;
    font-weight: bold;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #333;
    transform: rotate(90deg);
}

.modal-title {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 25px 30px;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid #FFA500;
}

.modal-body {
    padding: 30px 40px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
    color: #e0e0e0;
    line-height: 1.8;
}

.modal-body::-webkit-scrollbar {
    width: 10px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #FFC107;
}

.modal-body h3 {
    color: #FFD700;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h4 {
    color: #FFC107;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.modal-body ul {
    margin: 15px 0 15px 30px;
    padding: 0;
}

.modal-body li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.modal-body a {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: #FFC107;
}

.warning-text {
    background: rgba(255, 193, 7, 0.1);
    border-right: 4px solid #FFD700;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.05rem;
}

.modal-footer-note {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #FFD700;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }

    .modal-title {
        font-size: 1.8rem;
        padding: 20px 25px;
    }

    .modal-body {
        padding: 25px 25px;
        max-height: calc(90vh - 85px);
    }

    .modal-close {
        font-size: 32px;
        padding: 12px 20px;
    }

    .modal-body h3 {
        font-size: 1.4rem;
    }

    .modal-body h4 {
        font-size: 1.2rem;
    }

    .modal-body p,
    .modal-body li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 12px;
    }

    .modal-title {
        font-size: 1.5rem;
        padding: 18px 20px;
    }

    .modal-body {
        padding: 20px 18px;
    }

    .modal-close {
        font-size: 28px;
        padding: 10px 18px;
    }

    .modal-body h3 {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .modal-body h4 {
        font-size: 1.1rem;
    }

    .modal-body p,
    .modal-body li {
        font-size: 0.95rem;
    }

    .modal-body ul {
        margin-right: 20px;
    }
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding: 30px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-credit {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
}

.mtcore-link {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mtcore-link:hover {
    color: #FFC107;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-divider {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .footer {
        padding: 25px 20px;
    }

    .footer-content {
        gap: 12px;
    }

    .footer-credit {
        font-size: 0.88rem;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-divider {
        font-size: 0.85rem;
    }
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.6);
    padding: 35px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.25);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(255, 193, 7, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 8px;
    text-align: right;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    direction: rtl;
    text-align: right;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(0, 0, 0, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.form-privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #FFD700;
}

.form-privacy-checkbox label {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: right;
    cursor: pointer;
    flex: 1;
}

.privacy-link-form {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link-form:hover {
    color: #FFC107;
}

.form-submit-button {
    width: 100%;
    padding: 16px 28px;
    margin-top: 8px;
    border-radius: 8px;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.form-submit-button:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB732 100%);
    transform: translateY(-2px);
}

.form-submit-button:active {
    transform: translateY(0);
}

.form-submit-button .arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.form-submit-button:hover .arrow {
    transform: translateX(-5px);
}

.shape-14 {
    width: 550px;
    height: 550px;
    top: -150px;
    right: -150px;
    animation: rotate 35s linear infinite;
}

.shape-15 {
    width: 480px;
    height: 480px;
    bottom: -120px;
    left: -120px;
    animation: rotate 30s linear infinite reverse;
}

/* Contact Form Section Responsive */
@media (max-width: 968px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .contact-subtitle {
        font-size: 1.6rem;
        margin-bottom: 50px;
    }

    .contact-form {
        padding: 30px 35px;
        max-width: 700px;
    }

    .form-row {
        gap: 18px;
        margin-bottom: 18px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.98rem;
        padding: 12px 14px;
    }

    .form-submit-button {
        font-size: 1.15rem;
        padding: 14px 26px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 35px 0;
    }

    .contact-title {
        font-size: 2.6rem;
    }

    .contact-subtitle {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 28px 32px;
        max-width: 650px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px 14px;
    }

    .form-submit-button {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-title {
        font-size: 2.3rem;
        margin-bottom: 20px;
    }

    .contact-subtitle {
        font-size: 1.35rem;
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 25px 28px;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-row .form-group {
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 13px 15px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .form-privacy-checkbox {
        padding: 10px;
        gap: 10px;
    }

    .form-privacy-checkbox label {
        font-size: 0.9rem;
    }

    .form-submit-button {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 25px 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.25rem;
    }

    .contact-form {
        padding: 22px 24px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px 14px;
    }

    .form-group textarea {
        min-height: 85px;
    }

    .form-privacy-checkbox label {
        font-size: 0.85rem;
    }

    .form-submit-button {
        font-size: 1.05rem;
        padding: 13px 22px;
    }
}
