* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 15px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 auto;
}

.nav-text {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-text::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.nav-link:hover .nav-text {
    opacity: 1;
    transform: translateY(-50%) translateX(-8px);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.bar {
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.1s ease-out;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.typing-text {
    background: linear-gradient(45deg, #ff8c00, #ffffff, #ffa500);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    color: #ff8c00;
    animation: blink 1s infinite;
    margin-left: 3px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn:hover i {
    transform: scale(1.1);
}

.btn-primary {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    background: linear-gradient(45deg, #ffa500, #ff8c00);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ff8c00;
    border: 2px solid #ff8c00;
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    border-color: #ffa500;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 120px;
    max-width: 150px;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 140, 0, 0.06);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.2);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 165, 0, 0.03));
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.section-header h2 i {
    margin-right: 8px;
    color: #ff8c00;
}

.section-header:hover h2 {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.1);
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.packages {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.packages .hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.packages .hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    filter: brightness(1.3) contrast(1.4) saturate(1.5) hue-rotate(15deg);
    transition: all 0.5s ease;
    animation: sectionBannerFloat 10s ease-in-out infinite;
}

@keyframes sectionBannerFloat {
    0%, 100% { 
        transform: scale(1) translateY(0) rotate(0deg);
        filter: brightness(1.3) contrast(1.4) saturate(1.5) hue-rotate(15deg);
    }
    33% { 
        transform: scale(1.03) translateY(-5px) rotate(0.3deg);
        filter: brightness(1.4) contrast(1.5) saturate(1.6) hue-rotate(20deg);
    }
    66% { 
        transform: scale(1.02) translateY(3px) rotate(-0.2deg);
        filter: brightness(1.35) contrast(1.45) saturate(1.55) hue-rotate(18deg);
    }
}

.packages .hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.2) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.packages .container {
    position: relative;
    z-index: 2;
}

.packages-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid #ff8c00;
    overflow: hidden;
    height: 570px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.25);
    border-color: #ffa500;
}

.package-card.popular {
    border: 2px solid #ff8c00;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    z-index: 3;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-header {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.package-header i {
    font-size: 2.5rem;
    color: #ff8c00;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.package-card:hover .package-header i {
    transform: scale(1.1);
    color: #ffffff;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    flex-shrink: 0;
}

.currency {
    font-size: 1.2rem;
    color: #ff8c00;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.package-features {
    flex-grow: 1;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.package-features ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0 8px 0 0;
    max-height: 290px;
    overflow-y: auto;
    overflow-x: hidden;
}

.package-features ul::-webkit-scrollbar {
    width: 4px;
}

.package-features ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.package-features ul::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.package-features ul::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
}

.package-features li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.package-features li i {
    color: #ff8c00;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
    flex-shrink: 0;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.testimonials {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.testimonials .hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonials .hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    filter: brightness(1.4) contrast(1.5) saturate(1.7) hue-rotate(25deg);
    transition: all 0.7s ease;
    animation: testimonialBannerWave 12s ease-in-out infinite;
}

@keyframes testimonialBannerWave {
    0%, 100% { 
        transform: scale(1) translateX(0) rotate(0deg);
        filter: brightness(1.4) contrast(1.5) saturate(1.7) hue-rotate(25deg);
    }
    25% { 
        transform: scale(1.04) translateX(-3px) rotate(0.4deg);
        filter: brightness(1.5) contrast(1.6) saturate(1.8) hue-rotate(30deg);
    }
    50% { 
        transform: scale(1.06) translateX(0) rotate(-0.2deg);
        filter: brightness(1.6) contrast(1.7) saturate(1.9) hue-rotate(35deg);
    }
    75% { 
        transform: scale(1.03) translateX(3px) rotate(0.3deg);
        filter: brightness(1.45) contrast(1.55) saturate(1.75) hue-rotate(28deg);
    }
}

.testimonials .hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.15) 0%, rgba(26, 26, 26, 0.25) 100%);
    z-index: 1;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 140, 0, 0.08) 0%, transparent 70%),
                radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0 20px;
    overflow: hidden;
    z-index: 2;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.testimonials-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.08);
    max-height: 380px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 140, 0, 0.05) 0%,
        transparent 50%,
        rgba(255, 165, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.25);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff8c00, #ffa500) border-box;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
    transition: all 0.5s ease;
    position: relative;
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff8c00, #ffa500, #ff8c00);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.stars {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.stars i {
    color: #ffd700;
    font-size: 16px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-card:hover .stars i {
    transform: scale(1.15) rotate(12deg);
    color: #ffed4a;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    padding: 10px 0;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3.5rem;
    color: rgba(255, 140, 0, 0.12);
    font-family: 'Times New Roman', serif;
    line-height: 1;
    pointer-events: none;
    font-weight: bold;
}

.testimonial-content::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 15px;
    font-size: 3.5rem;
    color: rgba(255, 140, 0, 0.12);
    font-family: 'Times New Roman', serif;
    line-height: 1;
    pointer-events: none;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    position: relative;
    padding-top: 15px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border-radius: 1px;
}

.testimonial-author h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-author span {
    color: #ff8c00;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-nav {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.testimonial-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.testimonial-nav:hover::before {
    left: 100%;
}

.testimonial-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(0.9);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.testimonial-dot.active::before {
    transform: scale(1);
}

.testimonial-dot:hover {
    transform: scale(1.15);
}

.testimonial-dot.active {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.4s ease;
    max-width: 350px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
}

.notification.error {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #ffffff;
}

.notification.info {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #ffffff;
}

.notification.warning {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: #ffffff;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    margin-left: auto;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats {
        gap: 25px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 12px 16px;
        min-width: 100px;
        max-width: 130px;
    }
    
    .stat-item h3 {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
    
    .stat-item p {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        padding: 15px 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: flex-end;
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 60px);
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        border-radius: 0;
        padding: 30px 20px;
        gap: 15px;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        align-items: stretch;
        width: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        margin: 0;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        height: auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .nav-link .nav-text {
        position: static;
        transform: none;
        background: none;
        color: inherit;
        padding: 0;
        border: none;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-link .nav-text::after {
        display: none;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        padding: 8px 15px;
    }
    
    .packages {
        padding: 70px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .package-card {
        max-width: 350px;
        margin: 0 auto;
        height: 530px;
    }
    
    .package-features ul {
        max-height: 260px;
    }
    
    .package-header i {
        font-size: 2.2rem;
    }
    
    .package-header h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .package-features li {
        font-size: 14px;
    }
    
    .testimonials {
        min-height: 70vh;
        padding: 50px 0;
    }
    
    .testimonials-slider {
        max-width: 100%;
        margin: 20px auto 0;
        padding: 15px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 40px);
        margin: 0 20px;
        padding: 25px 20px;
        max-height: 350px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        max-height: 80px;
        -webkit-line-clamp: 3;
    }
    
    .testimonial-content::before,
    .testimonial-content::after {
        font-size: 3rem;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
    
    .testimonial-controls {
        gap: 25px;
        margin-top: 30px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-banner-image {
        opacity: 0.3;
    }
    
    .packages .hero-banner-image,
    .testimonials .hero-banner-image {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 25px;
    }
    
    .stat-item {
        padding: 10px 14px;
        min-width: 90px;
        max-width: 110px;
    }
    
    .stat-item h3 {
        font-size: 1.4rem;
        margin-bottom: 3px;
    }
    
    .stat-item p {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 25px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .packages-grid {
        gap: 15px;
        padding: 10px;
    }
    
    .package-card {
        max-width: 280px;
        padding: 20px 15px;
        height: 500px;
    }
    
    .package-features ul {
        max-height: 240px;
    }
    
    .package-header i {
        font-size: 2rem;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .package-features li {
        font-size: 13px;
    }
    
    .package-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .testimonials {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .testimonial-card {
        min-width: calc(100% - 20px);
        margin: 0 10px;
        padding: 20px 15px;
        max-height: 300px;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        max-height: 70px;
        -webkit-line-clamp: 3;
    }
    
    .testimonial-content::before,
    .testimonial-content::after {
        font-size: 2.5rem;
    }
    
    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .notification {
        max-width: calc(100% - 30px);
        top: 15px;
        right: 15px;
    }
    
    .hero-banner-image {
        opacity: 0.25;
    }
    
    .packages .hero-banner-image,
    .testimonials .hero-banner-image {
        opacity: 0.6;
    }
}