@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* Hero Banner - Two Column Layout */
.hero-banner {
    background: linear-gradient(135deg, #62cff4, #2c67f2 100%);
    padding: 60px 60px;
    margin: 2rem 1rem;
    border-radius: 18px;
    border: 1px solid #f8f8f8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(76, 172, 175, 0.4), inset 0 0 30px rgba(76, 175, 80, 0.1);

}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    box-shadow: 0 0 20px rgba(238, 238, 238, 0.6);
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #edf1ed, transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    text-align: right;
}

.hero-banner h1 {
    font-size: 2.3em;
    color:#ffe385;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-banner p {
    font-size: 1.5em;
    color: #c8c0bf;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

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

.btn-primary, .btn-secondary {
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before, .btn-secondary:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #4ec0da 0%, #e97f7f 50%, #dddc9f 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(76, 162, 175, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #4ec0da4f 0%, #e97f7f4f 50%, #dddc9f1e 100%);
    color: #ffffff;
    box-shadow: inset 0 0 0 0 rgba(76, 175, 80, 0.1);
}

.btn-secondary:hover {
    background: #2c879e;
    color: rgb(255, 255, 255);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* Hero Video */
.hero-video {
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    cursor: pointer;
    background: #000;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://img.youtube.com/vi/yUpz_m5kWBE/hqdefault.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
}

.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 1;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.hero-video-wrapper:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}
/* Carousel Section Styles ---------------------------------------------------------------------*/
.carousel-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.02) 100%);
    margin: 40px 0;
    overflow: hidden;
}
.section-title {
    text-align: center;
    font-size: 2.2em;
    color: #0c172e;
    margin-bottom: 40px;
    font-weight: bold;
}
.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.carousel-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    background: linear-gradient(135deg, #4ec0da10 0%, #e97f7f1d 50%, #dddc9f30 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}
.carousel-card i {
    font-size: 3em;
    color: #4c9eaf;
    margin-bottom: 20px;
    display: block;
}
.carousel-card h3 {
    font-size: 1.4em;
    color: #ededed;
    margin-bottom: 15px;
    font-weight: bold;
}
.carousel-card p {
    font-size: 1em;
    color: #28e2ff;
    line-height: 1.6;
}
/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #09899f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.carousel-arrow:hover {
    background: #45a09e;
    transform: translateY(-50%) scale(1.1);
}
.carousel-arrow.prev {
    right: 0;
}
.carousel-arrow.next {
    left: 0;
}
/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-indicator.active {
    background: #4cafa8;
    width: 30px;
    border-radius: 6px;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
}
@media (max-width: 900px) {
    .carousel-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}
@media (max-width: 600px) {
    .carousel-track {
        gap: 0; /* Remove gap on mobile for consistent spacing */
    }
    
    .carousel-card {
        flex: 0 0 calc(100% - 20px); /* Account for horizontal padding */
        min-width: calc(100% - 20px);
        margin: 0 10px; /* Add margin instead of gap */
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .carousel-card h3 {
        font-size: 1.2em;
    }
    
    .carousel-card i {
        font-size: 2.5em;
    }
}
/* RTL Support */
[dir="rtl"] .carousel-track {
    direction: rtl;
}
[dir="rtl"] .carousel-arrow.prev {
    right: auto;
    left: 0;
}
[dir="rtl"] .carousel-arrow.next {
    left: auto;
    right: 0;
}

/* Pricing Section Styles -------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------*/
/* Pricing Section Styles -------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------*/
#packages {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.02) 100%);
    min-height: 100vh;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #897502 0%, #c5b418 50%, #d5b709 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    /* Added flexbox to make all cards equal height and push button to bottom */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}

.card p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.card p strong {
    color: #ffd700;
    font-weight: 600;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    /* Allow the list to grow and push the button down */
    flex-grow: 1;
}

.card ul li {
    color: #d0d0d0;
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.table-container {
    margin: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.table-container table th {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a0a0a;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 4px;
}

.table-container table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #e0e0e0;
}

.table-container table tr:last-child td {
    border-bottom: none;
}

.price {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.table-note {
    color: #b0b0b0;
    font-size: 0.85rem;
    text-align: center;
    font-style: italic;
    margin: 10px 0 0 0;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4ec0da 0%, #e97f7f00 50%, #dddc9f 100%);
    color: #f6f4f4;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #ffffff;
    /* Ensure button stays at the bottom */
    margin-top: auto;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    color: #0a0a0a;
    border-color: #ffd700;
}

.btn:hover::before {
    left: 0;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .pricing {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .card h3 {
        font-size: 1.5rem;
    }
}
/* Reviews Section Styles -------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------*/

.reviews-section {
    padding: 20px 20px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Reviews Container */
.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    direction: rtl;
    transition: opacity 0.5s ease;
}

/* Review Item Card */
.review-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }
.review-item:nth-child(4) { animation-delay: 0.4s; }

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

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(27, 58, 112, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.review-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.review-item:hover::before {
    opacity: 1;
}

/* Review Number Badge */
.review-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4ca2af 0%, #45a09e 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.review-item:hover .review-number {
    transform: rotate(360deg) scale(1.1);
}

/* Review Image */
.review-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.review-item:hover img {
    transform: scale(1.05);
}

/* Skeleton Loading Effect */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-nav.prev {
    right: -45px;
}

.carousel-nav.next {
    left: -45px;
}

.carousel-nav button {
    background: linear-gradient(135deg, #4ca2af 0%, #45a09e 100%);
    border: none;
    color: rgba(255, 255, 255, 0);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.carousel-nav button::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-right: 3px solid rgb(255, 255, 255);
    border-top: 3px solid rgb(255, 255, 255);
    transform: rotate(45deg);
}

.carousel-nav.prev button::before {
    transform: rotate(45deg);
    right: 18px;
}

.carousel-nav.next button::before {
    transform: rotate(-135deg);
    left: 18px;
}

.carousel-nav button:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, #456ea0 0%, #3d878b 100%);
}

.carousel-nav button:active {
    transform: scale(1.05);
}

/* Pagination Dots */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    direction: ltr;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background: rgba(76, 175, 80, 0.5);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #4ca5af;
    border-color: #4caaaf;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .reviews-container {
        padding: 0 70px;
    }
    
    .carousel-nav.prev {
        right: 10px;
    }
    
    .carousel-nav.next {
        left: 10px;
    }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-container {
        padding: 0 60px;
    }
    
    .carousel-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .reviews-section {
        padding: 60px 15px;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-container {
        padding: 0 50px;
    }
    
    .carousel-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .carousel-nav.prev {
        right: 5px;
    }
    
    .carousel-nav.next {
        left: 5px;
    }
    
    .review-item img {
        height: 300px;
    }
}
/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 50px;
}

.info-card {
    background: linear-gradient(135deg, #4ec0dac3 0%rgba(233, 127, 127, 0.538)7f 50%, #dddc9f88 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    color: #f8f5f5;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.info-card i {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.info-card p {
    color: #dbe1e7;
    margin: 5px 0;
}

.info-card a {
    color: #4CAF50;
    text-decoration: none;
    transition: all 0.3s;
}

.info-card a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Social Fixed Icons */
.social-fixed {
    position: fixed;
    bottom: 100px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.social-fixed a:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Design */
@media(max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-track {
        grid-template-columns: repeat(8, calc(50% - 10px));
    }
    
    .carousel-card {
        padding: 35px 20px;
    }
    
    .carousel-card i {
        font-size: 45px;
    }
    
    .carousel-card h3 {
        font-size: 1.2em;
    }
    
    .carousel-card p {
        font-size: 0.95em;
    }
}

@media(max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.8em;
    }

    .hero-banner p {
        font-size: 1.3em;
    }

    .cta-buttons {
        gap: 10px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 30px;
        font-size: 1em;
    }

    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .carousel-track {
        grid-template-columns: repeat(8, 100%);
        gap: 0;
    }
    
    .carousel-card {
        padding: 35px 25px;
    }
    
    .carousel-card i {
        font-size: 50px;
    }
    
    .carousel-card h3 {
        font-size: 1.3em;
    }
    
    .carousel-card p {
        font-size: 1em;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 25px;
    }

    .card h3 {
        font-size: 1.5em;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .review-item img {
        height: 220px;
    }

    .social-fixed {
        left: 10px;
        bottom: 90px;
        gap: 10px;
    }

    .social-fixed a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media(max-width: 480px) {
    .hero-banner {
        padding: 40px 15px;
    }

    .hero-banner h1 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-item img {
        height: 200px;
    }
}
