/**
 * Hubba Husein - UI/UX Improvements CSS
 * Premium styling enhancements for better user experience
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --hubba-gold: #C29E3E;
    --hubba-gold-light: #D4B456;
    --hubba-gold-dark: #A68832;
    --hubba-dark: #1a1715;
    --hubba-dark-light: #2d2a27;
    --hubba-cream: #FFF8E7;
    --hubba-brown: #3D2B1F;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-gold: linear-gradient(135deg, var(--hubba-gold) 0%, var(--hubba-gold-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--hubba-dark) 0%, #0d0c0b 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 10px 30px rgba(194, 158, 62, 0.25);
}

/* ============================================
   Global Improvements
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.section {
    position: relative;
}

/* ============================================
   Enhanced Hero Section
   ============================================ */
.hero.section.dark-background {
    position: relative;
    min-height: 100vh;
}

.hero .video-overlay {
    background: linear-gradient(135deg, rgba(26, 23, 21, 0.9) 0%, rgba(61, 43, 31, 0.8) 50%, rgba(26, 23, 21, 0.95) 100%) !important;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #f0e6d3 50%, var(--hubba-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero .btn-get-started,
.hero .btn-primary {
    background: var(--gradient-gold) !important;
    border: none !important;
    color: var(--hubba-dark) !important;
    font-weight: 700 !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: var(--shadow-gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn-get-started:hover,
.hero .btn-primary:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(194, 158, 62, 0.4) !important;
}

/* ============================================
   Highlight Cards Section (NEW)
   ============================================ */
.highlights-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--hubba-cream) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(194, 158, 62, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.highlights-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 158, 62, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.highlight-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    height: 100%;
    z-index: 1;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(194, 158, 62, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.highlight-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(194, 158, 62, 0.2);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover::after {
    opacity: 1;
}

/* Featured Card (Center) */
.highlight-card.featured {
    background: linear-gradient(145deg, var(--hubba-dark) 0%, var(--hubba-brown) 100%);
    border: none;
    transform: scale(1.08);
    box-shadow: 0 25px 70px rgba(26, 23, 21, 0.3);
}

.highlight-card.featured::before {
    transform: scaleX(1);
}

.highlight-card.featured::after {
    background: radial-gradient(circle at top, rgba(194, 158, 62, 0.15) 0%, transparent 60%);
    opacity: 1;
}

.highlight-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 40px 100px rgba(26, 23, 21, 0.4);
}

.highlight-card.featured h3,
.highlight-card.featured p {
    color: #ffffff;
}

.highlight-card.featured .card-icon {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
}

.highlight-card.featured .card-icon i {
    color: var(--hubba-dark);
}

.highlight-card.featured .card-badge {
    background: var(--gradient-gold);
    color: var(--hubba-dark);
    font-weight: 800;
}

/* Card Icon */
.highlight-card .card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(145deg, rgba(194, 158, 62, 0.12) 0%, rgba(255, 248, 231, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.highlight-card .card-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(194, 158, 62, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
}

.highlight-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
}

.highlight-card:hover .card-icon::before {
    opacity: 1;
    animation: spinSlow 10s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.highlight-card .card-icon i {
    font-size: 2.2rem;
    color: var(--hubba-gold);
}

/* Card Title */
.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hubba-dark);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

/* Card Description */
.highlight-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Card Badge */
.highlight-card .card-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(145deg, rgba(194, 158, 62, 0.15) 0%, rgba(255, 248, 231, 0.95) 100%);
    color: var(--hubba-gold-dark);
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(194, 158, 62, 0.2);
}

/* ============================================
   Feature Cards Section
   ============================================ */
.features-cards.section {
    padding: 100px 0;
    background: #fff;
}

.features-cards .feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #f0f0f0;
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.features-cards .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.features-cards .feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(194, 158, 62, 0.3);
}

.features-cards .feature-card:hover::before {
    transform: scaleX(1);
}

.features-cards .feature-card.highlighted {
    background: linear-gradient(145deg, var(--hubba-dark) 0%, var(--hubba-brown) 100%);
    border: none;
    box-shadow: 0 20px 60px rgba(26, 23, 21, 0.25);
}

.features-cards .feature-card.highlighted::before {
    transform: scaleX(1);
}

.features-cards .feature-card.highlighted h3,
.features-cards .feature-card.highlighted p,
.features-cards .feature-card.highlighted li {
    color: #fff;
}

.features-cards .feature-card.highlighted .feature-icon {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
}

.features-cards .feature-card.highlighted .feature-icon i {
    color: var(--hubba-dark);
}

.features-cards .feature-card .feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(145deg, rgba(194, 158, 62, 0.12) 0%, rgba(255, 248, 231, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
}

.features-cards .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.features-cards .feature-card .feature-icon i {
    font-size: 1.9rem;
    color: var(--hubba-gold);
}

.features-cards .feature-card h3 {
    color: var(--hubba-dark);
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.features-cards .feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-cards .feature-card .feature-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.features-cards .feature-card .feature-benefits li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features-cards .feature-card .feature-benefits li i {
    color: var(--hubba-gold);
    font-size: 1rem;
}

/* ============================================
   CTA Section
   ============================================ */
.call-to-action.section {
    background: linear-gradient(145deg, var(--hubba-dark) 0%, var(--hubba-brown) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.call-to-action.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C29E3E' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.call-to-action.section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(194, 158, 62, 0.1) 0%, transparent 70%);
}

.call-to-action h3 {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.call-to-action h3 em {
    color: var(--hubba-gold);
    font-style: normal;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.call-to-action .cta-btn {
    background: var(--gradient-gold) !important;
    color: var(--hubba-dark) !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: var(--shadow-gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.call-to-action .cta-btn:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(194, 158, 62, 0.5) !important;
}

.call-to-action .img img {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* ============================================
   Services Section
   ============================================ */
.services.section {
    background: linear-gradient(180deg, var(--hubba-cream) 0%, #ffffff 100%);
    padding: 100px 0;
}

.services .section-title .subtitle {
    color: var(--hubba-gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.services .section-title h2 {
    color: var(--hubba-dark);
    font-weight: 800;
    font-size: 2.5rem;
}

.services .featured-service {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.services .featured-service:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.services .featured-service .service-image img {
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services .featured-service:hover .service-image img {
    transform: scale(1.1);
}

.services .featured-service .service-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 23, 21, 0.95) 100%);
}

.services .featured-service .overlay-content h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
}

.services .featured-service .service-link {
    background: var(--gradient-gold);
    color: var(--hubba-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.services .featured-service .service-link:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Testimonials Section (PREMIUM REDESIGN)
   ============================================ */
.testimonials.section {
    background: linear-gradient(180deg, var(--hubba-dark) 0%, var(--hubba-brown) 50%, var(--hubba-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C29E3E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .section-title .subtitle {
    color: var(--hubba-gold) !important;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonials .section-title h2 {
    color: #fff !important;
    font-weight: 800;
    font-size: 2.5rem;
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testimonials .testimonial-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonials .testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.testimonials .testimonial-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(194, 158, 62, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(194, 158, 62, 0.3);
}

.testimonials .testimonial-item p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--hubba-gold) !important;
    font-size: 1.8rem !important;
    opacity: 0.8;
}

.testimonials .testimonial-item .testimonial-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    border: 3px solid var(--hubba-gold) !important;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonials .testimonial-item h3 {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.testimonials .testimonial-item h4 {
    color: var(--hubba-gold) !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.testimonials .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
}

.testimonials .swiper-pagination-bullet-active {
    background: var(--hubba-gold) !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* ============================================
   Section Titles (Global)
   ============================================ */
.section-title {
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: var(--hubba-gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.section-title .subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0.5);
    transform-origin: left;
}

.section-title h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--hubba-dark);
    letter-spacing: -0.5px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */
.contact.section {
    background: #fff;
    padding: 100px 0;
}

.contact .info-item {
    background: linear-gradient(145deg, #ffffff 0%, var(--hubba-cream) 100%);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(194, 158, 62, 0.1);
}

.contact .info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.contact .info-item i {
    color: var(--hubba-gold);
    font-size: 2rem;
}

.contact .info-item h4 {
    color: var(--hubba-dark);
    font-weight: 700;
}

.contact .php-email-form {
    background: linear-gradient(145deg, #ffffff 0%, var(--hubba-cream) 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--hubba-gold);
    box-shadow: 0 0 0 4px rgba(194, 158, 62, 0.1);
}

.contact .php-email-form button {
    background: var(--gradient-gold);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--hubba-dark);
    transition: all 0.3s ease;
}

.contact .php-email-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Floating Social Buttons
   ============================================ */
.floating-social {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.floating-social a:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.floating-social .whatsapp {
    background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
}

.floating-social .instagram {
    background: linear-gradient(145deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.floating-social .shopee {
    background: linear-gradient(145deg, #EE4D2D 0%, #FF6633 100%);
}

.floating-social .tokopedia {
    background: linear-gradient(145deg, #42B549 0%, #2D8C31 100%);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--hubba-dark) 0%, #0d0c0b 100%);
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0 6px;
    transition: all 0.4s ease;
}

.footer .social-links a:hover {
    background: var(--hubba-gold);
    border-color: var(--hubba-gold);
    color: var(--hubba-dark);
    transform: translateY(-5px);
}

/* ============================================
   Scroll Progress & Back to Top
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 9999;
    transition: width 0.1s ease;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--hubba-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(194, 158, 62, 0.5);
    color: var(--hubba-dark);
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 991px) {
    .highlight-card.featured {
        transform: scale(1);
    }

    .highlight-card.featured:hover {
        transform: translateY(-15px);
    }

    .section-title h2,
    .call-to-action h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .highlights-section,
    .features-cards.section,
    .services.section,
    .testimonials.section,
    .contact.section {
        padding: 70px 0;
    }

    .highlight-card {
        padding: 35px 25px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .floating-social {
        right: 15px;
        bottom: 80px;
    }

    .floating-social a {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .highlight-card h3,
    .features-cards .feature-card h3 {
        font-size: 1.2rem;
    }

    .testimonials .testimonial-item {
        padding: 30px 25px;
    }
}