:root {
    --primary: #ff8f00;
    --primary-light: #ffb347;
    --text: #ffffff;
    --bg: #0a0a0a;
    --bg-light: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Background - optimized for performance */
.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0a0a0a;
    z-index: -1;
    /* Using will-change for GPU acceleration */
    will-change: transform;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    width: 180%;
    height: 180px;
    left: -40%;
    bottom: -30px;
    background: radial-gradient(ellipse, rgba(255, 143, 0, 0.7), transparent 70%);
    z-index: -1;
    filter: blur(40px);
    border-radius: 50%;
    /* Use transform for animations instead of left/top for better performance */
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* Header Styles */
header {
    position: relative;
    padding: 25px 0;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.desktop-nav ul, .mobile-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 143, 0, 0.4);
}

.btn.glow-effect {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 143, 0, 0.5);
    overflow: hidden;
}

.btn.glow-effect:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 143, 0, 0.8), rgba(255, 179, 71, 0.8));
    z-index: -1;
    transition: all 0.5s ease;
    border-radius: 50px;
}

.btn.glow-effect:hover:before {
    background: linear-gradient(45deg, rgba(255, 179, 71, 0.8), rgba(255, 143, 0, 0.8));
}

.btn-primary {
    background-color: var(--primary);
}

.btn-secondary {
    background-color: rgba(17, 17, 17, 0.4);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: rgba(30, 30, 30, 0.6);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    background-color: transparent;
    overflow: hidden;
}

.trusted-by {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}

.avatar-group {
    display: flex;
    margin-right: 15px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -10px;
    border: 2px solid var(--bg);
    transition: transform 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-2px);
    z-index: 2;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusted-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    opacity: 0.8;
}

.stars {
    color: #ffb347;
    margin-bottom: 3px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-line {
    overflow: hidden;
    display: block;
}

.title-line.accent {
    color: #ff8f00;
    display: block;
    margin-top: 10px;
}

.colored-title {
    font-family: 'Unbounded', 'Playfair Display', serif;
    letter-spacing: -1px;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ff8f00;
    margin-top: 10px;
    display: block;
}

.mobile-break {
    display: none;
}

.mobile-optimized-title {
    font-family: 'Canela', 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.02em;
    font-size: 3.2rem;
    font-weight: 600;
    color: #ff8f00;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.line1, .line2 {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-optimized-title {
        font-size: 1.6rem;
        padding: 0 10px;
        line-height: 1.2;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        width: 100%;
    }
    
    .line1, .line2 {
        display: block;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .mobile-optimized-title {
        font-size: 1.3rem;
        padding: 0 10px;
        line-height: 1.3;
        letter-spacing: 0;
        font-weight: 600;
    }
    
    .line1, .line2 {
        display: block;
    }
}

@media (max-width: 360px) {
    .mobile-optimized-title {
        font-size: 1.1rem;
        padding: 0 5px;
        line-height: 1.3;
        margin-top: 5px;
    }
}

.reveal-text {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.normal-text {
    display: block;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 35px;
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
    z-index: 1;
}

/* Removed orange light effect as requested */

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 143, 0, 0.1);
    color: #ff8f00;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 143, 0, 0.3);
}

.services-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
    font-family: 'Canela', 'Georgia', 'Times New Roman', serif;
}

.text-highlight {
    color: #ff8f00;
    font-style: italic;
    font-family: 'Canela', 'Georgia', 'Times New Roman', serif;
}

.services-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    background: linear-gradient(145deg, rgba(255, 143, 0, 0.2), rgba(10, 10, 10, 0.8));
}

.service-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(255, 143, 0, 0.15), rgba(10, 10, 10, 0.8));
}

.service-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(255, 143, 0, 0.2), rgba(10, 10, 10, 0.8));
}

.service-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(255, 143, 0, 0.15), rgba(10, 10, 10, 0.8));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card-inner {
    padding: 35px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 143, 0, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-card-inner::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 143, 0, 0.6);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-card {
        border-radius: 12px;
    }
}

/* Accessibility optimization */
@media (prefers-reduced-motion: reduce) {
    /* Reduce animations for users who prefer reduced motion */
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Cursor hover animation classes */
.cursor-outer.hover,
.cursor-inner.hover {
    mix-blend-mode: difference;
    background-color: rgba(255, 143, 0, 0.8);
}

/* FAQ Section Styling */
.faqs-section {
    padding: 80px 0;
    background-color: #0e0e0e;
}

.faqs-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #151515;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 143, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(255, 143, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 143, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: #ff8f00;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-icon {
    background-color: rgba(255, 143, 0, 0.2);
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0 40px;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card-inner {
        padding: 22px 20px;
    }
    
    .services-tag {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .services-grid {
        gap: 16px;
    }
}

@media (max-width: 360px) {
    .services-title {
        font-size: 1.6rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* Video Examples Section */
.youtube-videos-section,
.video-examples-section,
.ugc-section {
    background-color: var(--bg);
    padding: 100px 0 70px;
    position: relative;
    z-index: 1;
}

.video-examples-section {
    overflow: hidden;
}

.examples-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.examples-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.text-accent {
    color: #ff8f00;
    font-family: 'Canela', 'Georgia', 'Times New Roman', serif;
}

.examples-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes borderPulse {
    0% { border-color: #ff8f00; }
    50% { border-color: #ffa726; }
    100% { border-color: #ff8f00; }
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #ff8f00;
    animation: borderPulse 3s infinite ease-in-out;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 143, 0, 0.3);
    border: 3px solid #ff8f00;
    border-color: #ffa726;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 143, 0, 0.2), #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-card:hover .thumb-img {
    opacity: 1;
    transform: scale(1.05);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: #0a0a0a;
    margin: auto;
    padding: 20px;
    border: 2px solid #ff8f00;
    width: 335px;
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.youtube-modal-content {
    width: 600px;
    max-width: 90%;
}

.close-modal, .close-youtube-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
}

.close-modal:hover, .close-youtube-modal:hover {
    color: #ff8f00;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 178.5%;
}

.youtube-container {
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-card:hover .play-button,
.youtube-card:hover .play-button,
.ugc-card:hover .play-button {
    background-color: #ff8f00;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 143, 0, 0.4);
}

.play-button svg {
    width: 30px;
    height: 30px;
}

.border-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    width: 100%;
    margin: 0 auto;
}

/* YouTube Videos Grid */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #ff8f00;
    animation: borderPulse 3s infinite ease-in-out;
}

.youtube-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 143, 0, 0.3);
    border-color: #ffa726;
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 143, 0, 0.2), #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Responsive styles for video examples */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 980px;
    }
    
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
}

/* UGC Card styles */
.ugc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #ff6d00;
    animation: ugcBorderPulse 3s infinite ease-in-out;
}

.ugc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 109, 0, 0.3);
    border-color: #ff9e00;
}

@keyframes ugcBorderPulse {
    0% { border-color: #ff6d00; }
    50% { border-color: #ff9e00; }
    100% { border-color: #ff6d00; }
}

.ugc-player {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 109, 0, 0.2), #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ugc-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Common card iframe container for all video types */
.card-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
    overflow: hidden;
}

/* Hide YouTube player elements */
.ytp-chrome-top,
.ytp-chrome-bottom,
.ytp-gradient-top,
.ytp-gradient-bottom,
.ytp-show-cards-title,
.ytp-pause-overlay,
.ytp-youtube-button,
.ytp-large-play-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Video players */
.video-player,
.youtube-player,
.ugc-player {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 143, 0, 0.2), #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* All video card iframes */
.video-card iframe,
.youtube-card iframe,
.ugc-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-examples-section,
    .youtube-videos-section,
    .ugc-section {
        padding: 70px 0 50px;
    }
    
    .examples-title {
        font-size: 2rem;
    }
    
    .examples-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .youtube-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 0 15px;
        max-width: 500px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .video-examples-section {
        padding: 50px 0 40px;
    }
    
    .examples-title {
        font-size: 1.6rem;
    }
    
    .examples-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .video-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 300px;
    }
    
    .video-card {
        aspect-ratio: 9/14;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .modal-content {
        max-width: 300px;
        padding: 15px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .header-center {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .gradient-bg::after {
        width: 200%;
        height: 120px;
        left: -50%;
    }
    
    .trusted-by {
        flex-direction: column;
        gap: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
        padding: 0 10px;
    }
    
    .colored-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
        padding: 0 12px;
    }
    
    .hero-cta {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 15px;
    }
    
    .hero-cta a {
        width: auto;
        text-align: center;
        flex: 1;
        max-width: 160px;
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .gradient-bg::after {
        height: 80px;
        bottom: -20px;
    }
    
    header {
        padding: 15px 0;
    }
}

/* Small phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .colored-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .hero-cta {
        gap: 6px;
    }
    
    .hero-cta a {
        padding: 8px 12px;
        font-size: 12px;
        max-width: 140px;
    }
    
    .trusted-by {
        transform: scale(0.9);
    }
}

/* Custom Cursor Styles */
body {
    cursor: auto;
}

/* Hero Section - 16:9 Aspect Ratio (1920x1080) for Desktop */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh);
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    padding-bottom: 0;
    overflow: hidden;
    margin-bottom: -2px;
    border-bottom: none;
}

/* Remove space between hero and services sections */
.hero + .services-section {
    padding-top: 0;
    margin-top: -120px;
    border-top: none;
    background-image: none;
}

/* Hide any decorative elements between sections */
.hero::after,
.services-section::before {
    display: none !important;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-30px);
}

.trusted-by {
    margin-bottom: 30px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    margin-bottom: 30px;
}

.hero-cta {
    margin-top: 20px !important;
}

/* For screens that can display the full 1920x1080 */
@media (min-width: 1920px) and (min-height: 1080px) {
    .hero {
        height: 1080px;
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* For screens wider than 1920px but shorter than 1080px */
@media (min-width: 1920px) and (max-height: 1080px) {
    .hero {
        height: 100vh;
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* For screens narrower than 1920px but taller than 1080px */
@media (max-width: 1919px) and (min-height: 1080px) {
    .hero {
        height: 1080px;
        width: 100%;
    }
}

/* Custom cursor styles */
.cursor-outer {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #ff8f00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #ff8f00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s ease-out;
    mix-blend-mode: difference;
}

/* Custom cursor styles for interactive elements */
a, button, .play-button, .video-thumbnail, .ugc-player, .youtube-player, .navbar-link {
    cursor: pointer; /* Show pointer cursor along with custom cursor */
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 1));
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 143, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 143, 0, 0.3);
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ff8f00;
    color: #0a0a0a;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 143, 0, 0.3);
}

.testimonial-content {
    margin-top: 20px;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #ff8f00;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0 0 5px;
    color: #fff;
}

.author-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Continuous Scrolling Animation Styles (Framer-style) */
.testimonial-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 50px auto 0;
    overflow: hidden;
    padding-bottom: 40px; /* Add more space at bottom since we removed controls */
    will-change: transform; /* Performance optimization */
    
    /* Add side shadows for visual effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent 100%);
}

/* Side shadow overlays - more prominent and only on sides */
.testimonial-carousel-container::before,
.testimonial-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 120px; /* Wider shadow area */
    pointer-events: none;
    z-index: 10;
}

/* Left shadow overlay - stronger effect */
.testimonial-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0.4) 80%, transparent 100%);
    box-shadow: inset 30px 0 30px -20px rgba(255, 143, 0, 0.3); /* Orange glow effect */
}

/* Right shadow overlay - stronger effect */
.testimonial-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0.4) 80%, transparent 100%);
    box-shadow: inset -30px 0 30px -20px rgba(255, 143, 0, 0.3); /* Orange glow effect */
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: nowrap; /* Ensure no wrapping occurs */
    touch-action: pan-x; /* Better touch handling */
    will-change: transform; /* Hardware acceleration */
    transform: translateZ(0); /* Force GPU rendering */
}

/* Enhanced active card animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.testimonial-card.active {
    border-color: rgba(255, 143, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 143, 0, 0.2);
    animation: pulse 2s infinite, float 4s ease-in-out infinite;
}

/* Animation for testimonial cards */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 143, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 143, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 143, 0, 0);
    }
}

/* Simplified Footer Styles */
.footer {
    background-color: #0a0a0a;
    position: relative;
    padding: 60px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 143, 0, 0.3), transparent);
}

.footer-simplified {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

/* Logo removed as requested */

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff8f00;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 143, 0, 0.3);
}

/* No longer needed, moved to designer-terms-row */

.services-terms {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.services-terms:hover {
    color: #ff8f00;
}

.footer-separator {
    color: rgba(255, 143, 0, 0.5);
}

.footer-bottom-simple {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.designer-terms-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright, .designer {
    margin: 0;
}

.heart {
    color: #ff8f00;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    5% { transform: scale(1.2); }
    10% { transform: scale(1); }
    15% { transform: scale(1.1); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Footer Responsive Styles */
@media (max-width: 576px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-links-simple {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Services Terms Page Styles */
.services-terms-section {
    padding: 120px 0;
    background-color: #0a0a0a;
    color: #fff;
    min-height: 80vh;
}

.orange-text {
    color: #ff8f00;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

.terms-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 143, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #ff8f00, transparent);
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.terms-icon {
    font-size: 2.5rem;
}

.terms-header h2 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.terms-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.guidelines-list li, .respect-list li, .positive-guideline {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.guidelines-list li:hover, .respect-list li:hover, .positive-guideline:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.3);
}

.icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.text {
    font-size: 1rem;
    line-height: 1.5;
}

.prohibited .icon {
    color: #ff4040;
}

.positive-guideline {
    background: rgba(0, 255, 0, 0.05);
    border-left: 3px solid rgba(0, 255, 0, 0.3);
}

.positive-guideline .icon {
    color: #00cc00;
}

.respect-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.respect-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.warning-icon {
    color: #ffcc00;
}

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

.respect-list li {
    background: rgba(255, 204, 0, 0.05);
    border-left: 3px solid rgba(255, 204, 0, 0.3);
}

.respect-list .icon {
    color: #00cc00;
}

.thank-you {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .services-terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-card {
        padding: 30px 20px;
    }
    
    .terms-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .guidelines-list li, .respect-list li, .positive-guideline {
        padding: 12px 10px;
    }
}

.testimonial-card.active {
    border-color: rgba(255, 143, 0, 0.5);
    animation: pulse 2s infinite;
}

/* Advanced Service Cards Styles */
.services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 20px;
    scrollbar-width: none; /* For Firefox */
    justify-content: center;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.services-grid::-webkit-scrollbar {
    display: none; /* For Chrome, Safari and Opera */
}

/* Desktop view (greater than 1200px) */
@media screen and (min-width: 1201px) {
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0 20px;
        width: 100%;
        gap: 20px;
        overflow-x: visible;
    }
}

/* Tablet view (768px to 1200px) */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .services-grid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(25, 25, 25, 0.7);
    cursor: pointer;
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
    max-width: 85vw;
}

/* Desktop view adjustments */
@media screen and (min-width: 1201px) {
    .service-card {
        flex: 1;
        min-width: 260px;
        max-width: 300px;
        margin: 0;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .service-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.3);
}

.service-card-inner {
    padding: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(20, 20, 20, 0.8));
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-inner {
    border-color: rgba(255, 143, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 143, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255, 143, 0, 0.1);
    color: #ff8f00;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 143, 0, 0.2);
    transform: scale(1.05) rotate(3deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

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

.service-content {
    flex: 1;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #ff8f00;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff8f00;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 40px;
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    transition: all 0.3s ease;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 143, 0, 0.05), rgba(255, 143, 0, 0));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover .service-hover-effect {
    opacity: 1;
}

/* Hide service action sections */
.service-action {
    display: none !important;
}

/* Responsive Service Cards */
@media screen and (max-width: 767px) {
    .services-grid {
        flex-direction: column;
        gap: 20px;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px;
        overflow-x: hidden;
    }
    
    .service-card {
        flex: 0 0 100%;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .service-card-inner {
        height: auto;
        min-height: 220px;
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Small mobile adjustments */
@media screen and (max-width: 480px) {
    .service-card {
        flex: 0 0 100%;
        min-width: auto;
    }
    
    .service-card-inner {
        min-height: 200px;
        padding: 16px;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 40px);
        min-width: 250px;
    }
    
    .testimonials-section {
        padding: 70px 0;
    }
}

/* Advanced Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8f00, #ff6a00);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 143, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.chat-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 143, 0, 0.4);
}

.chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-button:hover::before {
    opacity: 1;
}

/* Chat button text removed */

.chat-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.chat-button:hover .chat-button-icon svg {
    transform: scale(1.2);
}

.chatbot {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9;
    height: 550px;
    max-height: 70vh;
}

.chatbot.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.avatar-container {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

.avatar-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff8f00;
    box-shadow: 0 0 15px rgba(255, 143, 0, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Avatar animation removed in favor of stock image */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.avatar-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chatbot-title {
    flex: 1;
}

.chatbot-title h3 {
    margin: 0;
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.chatbot-title p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.close-chat {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.close-chat:hover {
    color: white;
}

.close-chat svg {
    width: 18px;
    height: 18px;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 143, 0, 0.3) rgba(30, 30, 30, 0.3);
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.3);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 143, 0, 0.3);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 143, 0, 0.5);
}

.message {
    max-width: 85%;
    margin-bottom: 5px;
    position: relative;
    animation: fadeIn 0.3s ease forwards;
}

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

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.bot-message .message-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    border-bottom-left-radius: 4px;
}

.bot-message .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff8f00, #ff6a00);
}

.user-message .message-content {
    background: linear-gradient(135deg, #ff8f00, #ff6a00);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    margin-left: 5px;
}

/* Live Agent Button Styling */
.live-agent-button-container {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #191919;
    border-top: 1px solid #333;
}

.live-agent-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25d366, #128C7E);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.live-agent-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.live-agent-button svg.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: white;
}

/* Chat input styling */
.chatbot-input {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #191919;
    border-top: 1px solid #333;
}

.chatbot-input input {
flex: 1;
background: rgba(30, 30, 30, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 25px;
padding: 12px 15px;
color: white;
font-size: 14px;
outline: none;
transition: all 0.2s ease;
    border-radius: 25px;
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.chatbot-input input:focus {
    border-color: rgba(255, 143, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 143, 0, 0.2);
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chatbot-input button {
    background: linear-gradient(135deg, #ff8f00, #ff6a00);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.chatbot-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 143, 0, 0.3);
}

.chatbot-input button svg {
    width: 18px;
    height: 18px;
    color: white;
    transition: transform 0.2s ease;
}

.chatbot-input button:hover svg {
    transform: scale(1.1);
}

/* Suggested Questions Styling */
.suggested-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 5px;
    width: 100%;
    padding-left: 5px;
}

.suggested-question {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 143, 0, 0.3);
    border-radius: 18px;
    padding: 8px 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggested-question:hover {
    background: linear-gradient(135deg, rgba(255, 143, 0, 0.1), rgba(255, 143, 0, 0.2));
    border-color: rgba(255, 143, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.typing-indicator {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    align-self: flex-start;
    max-width: 85%;
    animation: fadeIn 0.3s ease forwards;
}

.typing-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff8f00, #ff6a00);
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    animation: typing 1s infinite;
    animation-delay: 0ms;
}

.typing-indicator span:nth-of-type(2) {
    animation: typing 1s infinite;
    animation-delay: 250ms;
}

.typing-indicator span:nth-of-type(3) {
    animation: typing 1s infinite;
    animation-delay: 500ms;
}

@keyframes typing {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 480px) {
    .chatbot {
        width: 320px;
        right: -10px;
    }
    
    .chat-button {
        padding: 10px 20px;
    }
    
    .avatar-container {
        width: 40px;
        height: 40px;
    }
    
    .avatar-image {
        width: 40px;
        height: 40px;
    }
    
    .chatbot-title h3 {
        font-size: 15px;
    }
    
    .chatbot-title p {
        font-size: 11px;
    }
}
