/* ===========================
   SONA APP STUDIO - CUSTOM STYLES
   Dark + Gold Premium Theme
   =========================== */

/* ===========================
   ROOT VARIABLES
   =========================== */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-light: #F4D03F;
    --dark-bg: #0a0a0a;
    --dark-alt: #0f0f0f;
    --dark-card: #151515;
    --dark-border: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --transition: all 0.3s ease;
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.section-label {
    color: #60c1f8;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #58baf4, #973def);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: #60c1f8 !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold {	
    background: linear-gradient(135deg, #6caaf3, #8b52ee);
    color: white;
    box-shadow: 0 10px 30px rgb(37 106 183 / 30%);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #6caaf3, #8b52ee);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgb(37 106 183 / 30%);
    color: var(--dark-bg);
}

.btn-outline-gold {
    background: transparent;
    color: #60c1f8;
    border: 2px solid #60c1f8 ;
}

.btn-outline-gold:hover {
    background: #6caaf3;
    color: white;
    border-color: #8b52ee;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
/*    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));*/
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-text {
     background: linear-gradient(135deg, white, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: linear-gradient(135deg, #6fc1f8, #8e4dee) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
/*    background: var(--gold-primary);*/
	background: linear-gradient(135deg, #6caaf3, #8b52ee);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1770777843445-2a1621b1201d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.85));
    z-index: 1;
}

.animated-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--gold-primary);
    top: 10%;
    left: 10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--gold-primary);
    top: 0;
    left: 0;
    z-index: 0;
}

.blob-4 {
    width: 400px;
    height: 400px;
    background: var(--gold-secondary);
    bottom: 0;
    right: 0;
    animation-delay: 1s;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
       background: rgb(97 196 250 / 33%);
    border: 1px solid rgb(97 197 249);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    gap: 1rem;
}

.border-gold-20 {
/*    border-color: rgba(212, 175, 55, 0.2) !important;	*/
	border-color: rgb(120 155 241 / 35%) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #60c1f8;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #60c1f8;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* ===========================
   SECTION PADDING
   =========================== */
.section-padding {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 8rem 0;
    }
}

.bg-dark-alt {
    background-color: var(--dark-alt);
    position: relative;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
}

.about-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-primary), transparent);
    opacity: 0.1;
    border-radius: 20px;
    z-index: 1;
}

.about-features li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

/* ===========================
   SERVICE CARDS
   =========================== */
.service-card {
    background: var(--dark-card);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #6fc1f8;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #6fc1f8;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #6fc1f8;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-card), rgba(21, 21, 21, 0.5), transparent);
}

.service-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6caaf3, #8b52ee);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #6caaf3, #8b52ee);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color:  white;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

.service-link {
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    margin-top: auto;
    padding-top: 1rem;
}

.service-card:hover .service-link {
    opacity: 1;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio-filters .btn {
    margin: 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.portfolio-filters .btn.active {
    background: linear-gradient(135deg, #6caaf3, #8b52ee);
    color: var(--dark-bg);
    border-color: #8b52ee;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.7));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    padding: 2rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgb(55 131 212 / 40%);
    border: 1px solid #6fc1f8;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #6fc1f8;
    margin-bottom: 1rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.portfolio-item {
    transition: var(--transition);
}

.portfolio-item.hidden {
    display: none !important;
}

/* ===========================
   PROCESS CARDS
   =========================== */
.process-card {
    background: var(--dark-card);
    border: 1px solid #6fc1f8;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.process-card:hover {
    border-color: #6fc1f8;
    transform: translateY(-10px);
    box-shadow: 0 20px 10px #6fc1f8;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-icon {
    width: 80px;
    height: 80px;
     background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.process-card:hover .process-icon {
     background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-card {
    background: var(--dark-card);
    border: 1px solid #6fc1f8;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #6fc1f8;
    line-height: 1.8;
    font-style: italic;
    margin: 2rem 0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #6fc1f8;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
     background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

@media (max-width: 991px) {
    .carousel-control-prev {
        left: 10px;
    }
    .carousel-control-next {
        right: 10px;
    }
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: white;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 2rem;
    color: white;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: var(--dark-bg);
}

/* ===========================
   PRICING CARDS
   =========================== */
.pricing-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--gold-primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    color: var(--gold-primary);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.period {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.amount-custom {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 0.5rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid #6fc1f8;
    border-radius: 1rem;
    padding: 2rem;
}

.form-control,
.form-select {
    background: var(--dark-bg);
    border: 1px solid #6fc1f8;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    background: var(--dark-bg);
    border-color: #6fc1f8;
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem #6fc1f8;
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info-card {
    background: var(--dark-card);
    border: 1px solid #6fc1f8;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: #6fc1f8;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark-bg);
    font-size: 1.5rem;
}

.contact-info-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-info-card a {
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: #6fc1f8;
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
}

.business-hours {
    background: var(--dark-card);
    border: 1px solid #6fc1f8;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.business-hours h5 {
    font-size: 1.125rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark-card);
    padding: 4rem 0 2rem;
    border-top: 1px solid #6fc1f8;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-title {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #6fc1f8;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
     background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6fc1f8;
    transition: var(--transition);
}

.social-links a:hover {
    background: #6fc1f8;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: #6fc1f8;
    margin: 2rem 0;
}

/* ===========================
   LIVE CHAT WIDGET
   =========================== */
#chatWidget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.75rem;
    position: relative;
    transition: var(--transition);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 4rem);
    height: 500px;
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-window.minimized {
    height: auto;
}

.chat-window.minimized .chat-messages,
.chat-window.minimized .chat-input {
    display: none;
}

.chat-header {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-weight: 700;
}

.chat-header h6 {
    color: var(--dark-bg);
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.chat-header p {
    color: rgba(10, 10, 10, 0.7);
    margin: 0;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.chat-control {
    background: transparent;
    border: none;
    color: var(--dark-bg);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.25rem;
}

.chat-control:hover {
    background: rgba(10, 10, 10, 0.1);
    border-radius: 0.25rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 340px;
}

.chat-message {
    display: flex;
}

.chat-message.agent {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 75%;
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.chat-message.agent .message-bubble {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.9);
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-bg);
}

.message-bubble p {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.chat-input button {
    padding: 0.75rem 1rem;
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .scroll-top {
        right: 2rem;
        bottom: 8rem;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    #chatWidget {
        right: 1rem;
        bottom: 1rem;
    }
    
    .scroll-top {
        bottom: 7rem;
        right: 1rem;
    }
}

/* ===========================
   FORM MESSAGES
   =========================== */
.alert {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ===========================
   UTILITIES
   =========================== */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #272727;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6fc1f8, #8e4dee);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6fc1f8, #8e4dee);
}
