/* Custom Styles - Bootstrap Compatible */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #0a0e27;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(99,102,241,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero container now uses Bootstrap .container */

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.05);
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    color: #e0e7ff;
    font-weight: 500;
}

.badge-icon {
    color: #818cf8;
    flex-shrink: 0;
}

/* Headline */
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
}

.headline-text {
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.headline-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    display: inline-block;
    /* Fallback for browsers that don't support background-clip */
    color: #8b5cf6;
}

/* Ensure gradient text is visible */
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .headline-gradient {
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.headline-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    filter: blur(20px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Description */
.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Buttons - Override Bootstrap styles for hero section */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

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

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-outline-light {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Responsive Design - Bootstrap handles most, just adjust specific styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

/* Statistics Section */
.statistics-section {
    background: #0a0e27;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #6366f1;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design for Statistics - Bootstrap handles grid, just adjust font sizes */
@media (max-width: 768px) {
    .stat-number {
        font-size: 30px;
    }
    .why-choose-title{
        width: 100% !important;
        font-size: 36px !important;
    }
    .equipment-title {
        font-size: 36px !important;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 30px;
    }
    .why-choose-title{
        width: 100% !important;
        font-size: 36px !important;
    }
    .equipment-title {
        font-size: 36px !important;
    }
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Services Section */
.services-section {
    background: #0a0e27;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.service-icon .icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(58%) sepia(93%) saturate(1352%) hue-rotate(228deg) brightness(99%) contrast(96%);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6366f1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon .icon-img {
        width: 28px;
        height: 28px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: #0a0e27;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.why-choose-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.why-choose-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 150px;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.why-choose-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    width: 66%;
}

.why-choose-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #94a3b8;
    line-height: 1.7;
}

.why-choose-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Why Choose */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .why-choose-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem;
        min-width: 120px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .why-choose-badge {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.75rem;
        min-width: 100px;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-label {
        font-size: 0.75rem;
    }
}

/* Equipment Section */
.equipment-section {
    background: #0a0e27;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.equipment-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.equipment-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #94a3b8;
    line-height: 1.7;
}

.equipment-list {
    margin-top: 2rem;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #182543;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.equipment-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.equipment-item-icon svg {
    width: 24px;
    height: 24px;
}

.equipment-item-name {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.equipment-images-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 1rem;
}

.equipment-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .equipment-image-item:hover .equipment-image {
    transform: scale(1.05);
} */

/* Special styling for 4K badge image */
.equipment-image-item:last-child {
    /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.equipment-image-item:last-child .equipment-image {
    object-fit: contain;
    padding: 1rem;
}

/* Responsive Design for Equipment */
@media (max-width: 992px) {
    .equipment-section {
        padding: 3rem 0;
    }
    
    .equipment-images-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .equipment-item {
        padding: 0.875rem 1.25rem;
    }
    
    .equipment-item-icon {
        width: 36px;
        height: 36px;
    }
    
    .equipment-item-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .equipment-item-name {
        font-size: 0.9375rem;
    }
    
    .equipment-images-grid {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .equipment-item {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .equipment-images-grid {
        gap: 0.5rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: #0a0e27;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.portfolio-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(30, 35, 65, 0.9) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
    height: 235px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 24px;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.portfolio-podcast-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.portfolio-episode-count {
    font-size: 0.9375rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Portfolio */
@media (max-width: 992px) {
    .portfolio-section {
        padding: 3rem 0;
    }
    
    .portfolio-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .portfolio-card {
        padding: 1.5rem;
    }
    
    .portfolio-podcast-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .portfolio-card {
        padding: 1.25rem;
    }
    
    .portfolio-title {
        font-size: 36px;
    }
    
    .portfolio-podcast-title {
        font-size: 1.125rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #0a0e27;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.testimonial-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonial-title {
    font-size: 0.9375rem;
    color: #94a3b8;
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
}

a.btn.btn-primary.btn-lg.px-4.py-3.d-inline-flex.align-items-center.gap-2 {
    font-size: 15px !important;
}

/* CTA Section */
.cta-section {
    background: #0a0e27;
    color: #e0e7ff;
    padding: 128px 0; /* 128px top and bottom padding */
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: #3C83F6;
    border: none;
    color: #ffffff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 17px;
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.cta-primary-btn i {
    transition: transform 0.3s ease;
}

.cta-primary-btn:hover i {
    transform: translateX(4px);
}

.cta-secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 17px;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-divider {
    border-color: rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.cta-social {
    margin-top: 2rem;
}

.cta-social-text {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

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

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0; /* Reduced padding on mobile */
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 64px 0; /* Further reduced padding on small mobile */
    }
    
    .cta-heading {
        font-size: 28px;
    }
}

/* Footer Section */
.site-footer {
    background: #0B111E;
    color: #e0e7ff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo-img {
    max-width: 261px;
    height: auto;
}

.footer-description {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social .social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: #6366f1;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #6366f1;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.footer-powered {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.powered-by-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by-link:hover {
    color: #8b5cf6;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-heading {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-heading:first-of-type {
        margin-top: 0;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-social .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Site Header */
.site-header {
    background: #0a0e27;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.site-header .navbar {
    padding: 0;
}

.site-header .navbar-brand {
    padding: 0;
    margin-right: 0;
}

.header-logo {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.site-header .navbar-nav {
    gap: 0.5rem;
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.site-header .nav-link:hover {
    color: #6366f1 !important;
}

.site-header .nav-link.active {
    color: #6366f1 !important;
    font-weight: 600;
}

.site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.header-cta {
    margin-left: 1rem;
}

.btn-book-now {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Header */
@media (max-width: 991px) {
    .site-header .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .site-header .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .site-header .nav-link {
        padding: 0.75rem 0 !important;
    }
    
    .site-header .nav-link.active::after {
        left: 0;
        right: 0;
    }
    
    .header-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .btn-book-now {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-logo {
        height: 35px;
    }
    
    .site-header {
        padding: 0.75rem 0;
    }
}

/* Packages Section */
.packages-section {
    background: #0a0e27;
    color: #e0e7ff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

.packages-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.packages-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.package-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(30, 35, 65, 0.9) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.popular {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.package-card > * {
    position: relative;
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.package-header {
    margin-top: 1rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #6366f1;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.package-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 0.9375rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

.package-price {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.9375rem;
    color: #cbd5e1;
}

.package-bundles {
    margin-bottom: 2rem;
}

.bundles-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.bundle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bundle-item:last-child {
    border-bottom: none;
}

.bundle-hours {
    font-size: 0.9375rem;
    color: #cbd5e1;
    font-weight: 500;
}

.bundle-discount {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
}

.bundle-total {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list i {
    color: #6366f1;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-cta {
    margin-top: auto;
}

.package-cta .btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.package-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.package-cta .btn i {
    transition: transform 0.3s ease;
}

.package-cta .btn:hover i {
    transform: translateX(4px);
}

.package-card.popular .package-cta .btn {
    background: linear-gradient(135deg, #3C83F6 0%, #6366f1 100%);
}

/* Responsive Design for Packages */
@media (max-width: 992px) {
    .packages-section {
        padding: 4rem 0;
    }
    
    .package-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 3rem 0;
    }
    
    .packages-title {
        font-size: 36px;
    }
    
    .package-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 2rem 0;
    }
    
    .packages-title {
        font-size: 32px;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
}

/* Add-On Services Section */
.addon-services-section {
    background-color: #0B111E; /* #0B111E with 50% opacity */
    color: #e0e7ff;
    padding: 5rem 0;
    position: relative;
}

.addon-services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.addon-services-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.addon-services-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.addon-service-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
}

.addon-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.addon-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.addon-service-description {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: auto;
    line-height: 1.5;
    flex-grow: 1;
}

.addon-service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #60a5fa;
    text-align: left;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

@media (max-width: 768px) {
    .addon-services-section {
        padding: 3rem 0;
    }
    
    .addon-service-card {
        padding: 1.5rem;
    }
    
    .addon-service-name {
        font-size: 1.25rem;
    }
    
    .addon-service-price {
        font-size: 1.125rem;
    }
}

/* Custom Package CTA Section */
.custom-package-cta-section {
    background-color: #090b16;
    color: #ffffff;
    padding: 128px 0;
    position: relative;
}

.custom-package-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.custom-package-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.custom-package-buttons {
    margin-top: 2rem;
}

.custom-package-primary-btn {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-package-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.custom-package-secondary-btn {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

.custom-package-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .custom-package-cta-section {
        padding: 3rem 0;
    }
    
    .custom-package-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-package-primary-btn,
    .custom-package-secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Booking Section */
.booking-section {
    background-color: #0a0e1a;
    color: #ffffff;
    padding: 8rem 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.booking-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .booking-section {
        padding: 5rem 0;
        min-height: 50vh;
    }
    
    .booking-title {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .booking-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.cta-heading {
    font-size: 40px;
}

/* Booking Form Styles */
.booking-form-container {
    background-color: transparent;
    padding: 0;
}

.booking-section {
    background-color: #090b16;
}

.booking-step {
    background: rgba(15, 23, 42, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .booking-step {
        padding: 1.5rem;
    }
    
    .step-header {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.step-header .step-title {
    margin-bottom: 0.5rem;
}

.step-header > div:last-child {
    flex: 1;
}

.step-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.5;
}

/* Package Selection */
.package-selection {
    margin-top: 2rem;
    margin-bottom: 0;
}

.package-selection .col-md-4 {
    margin-bottom: 0;
}

.package-option-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.package-option-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.package-option-card.selected {
    border-color: #6366f1;
    border-width: 2px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.popular-badge {
    position: absolute;
    top: -4px;
    right: 2px;
    background: #6366f1;
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.package-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #6366f1;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.package-option-card:hover .package-icon {
    background: rgba(99, 102, 241, 0.25);
    transform: scale(1.05);
}

.package-option-card.selected .package-icon {
    background: rgba(99, 102, 241, 0.25);
}

.package-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.package-subtitle {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
    max-width: 200px;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
    margin-top: auto;
}

.package-features {
    background: rgba(15, 23, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    margin-top: 2rem;
    animation: fadeIn 0.3s ease-in;
}

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

.features-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    row-gap: 1rem;
}

.feature-item {
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.feature-item i {
    color: #6366f1;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Calendar Styles */
.calendar-container {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav-btn {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
    background: rgba(99, 102, 241, 0.4);
}

.calendar-month-year {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0.5rem;
    width: 100%;
}

.calendar-day-header {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    color: #cbd5e1;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    min-height: 40px;
    width: 100%;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(99, 102, 241, 0.2);
}

.calendar-day.disabled {
    color: #475569;
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.selected {
    background: #6366f1;
    color: #ffffff;
    font-weight: 600;
}

.calendar-day.today {
    border: 2px solid #6366f1;
    box-sizing: border-box;
}

.calendar-day.today:not(.selected) {
    background: rgba(99, 102, 241, 0.1);
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot-btn {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #cbd5e1;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-align: center;
}

.time-slot-btn:hover:not(.disabled):not(.selected) {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
}

.time-slot-btn.selected {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
}

.time-slot-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Duration Buttons */
.duration-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.duration-btn {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.duration-btn:hover:not(.active) {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
}

.duration-btn.active {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
}

/* Form Controls */
.booking-form-container .form-label {
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.booking-form-container .form-control,
.booking-form-container input.form-control,
.booking-form-container textarea.form-control,
.booking-form-container select.form-control {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 0.75rem;
}

.booking-form-container .form-control:focus,
.booking-form-container input.form-control:focus,
.booking-form-container textarea.form-control:focus,
.booking-form-container select.form-control:focus {
    background: rgba(15, 23, 42, 0.9) !important;
    border-color: #6366f1 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25) !important;
}

.booking-form-container .form-control::placeholder {
    color: #64748b !important;
}

.booking-form-container input[type="number"] {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    color: #ffffff !important;
}

.booking-form-container input[type="email"],
.booking-form-container input[type="tel"],
.booking-form-container input[type="text"] {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    color: #ffffff !important;
}

/* Booking Summary */
.booking-summary-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 5rem;
}

.summary-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: #94a3b8;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-value {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

.summary-price {
    color: #6366f1;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.summary-divider {
    height: 1px;
    background: rgba(99, 102, 241, 0.2);
    margin: 1rem 0;
}

.summary-total-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.summary-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.submit-booking-btn {
    background: #6366f1;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.submit-booking-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.summary-note {
    color: #94a3b8;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-summary-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 1rem;
    }
    
    .booking-step {
        padding: 1.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.75rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #090b16;
    color: #ffffff;
    padding: 8rem 0 6rem;
    position: relative;
    min-height: 80vh;
}

.contact-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
}

.form-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.form-card-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-form-card .form-label {
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card input.form-control,
.contact-form-card textarea.form-control {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 0.75rem;
}

.contact-form-card .form-control:focus,
.contact-form-card input.form-control:focus,
.contact-form-card textarea.form-control:focus {
    background: rgba(15, 23, 42, 1) !important;
    border-color: #6366f1 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25) !important;
}

.contact-form-card .form-control::placeholder {
    color: #64748b !important;
}

.btn-send-message {
    background: #6366f1;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6366f1;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contact-info-text {
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-info-text a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: #6366f1;
}

@media (max-width: 992px) {
    .contact-info-cards {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0 4rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
div#summary-package{
    padding-right: 10px !important;
}