/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: hsla(203, 73%, 32%, 1);
    background: linear-gradient(90deg, hsla(203, 73%, 32%, 1) 0%, hsla(187, 91%, 46%, 1) 100%, hsla(188, 94%, 43%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(203, 73%, 32%, 1) 0%, hsla(187, 91%, 46%, 1) 100%, hsla(188, 94%, 43%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(203, 73%, 32%, 1) 0%, hsla(187, 91%, 46%, 1) 100%, hsla(188, 94%, 43%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#16608E", endColorstr="#0BC7DF", GradientType=1 );
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, hsla(203, 73%, 32%, 0.95) 0%, hsla(187, 91%, 46%, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    object-fit: cover;
    background-color: #f3f4f6;
}

.brand h1 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brand p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, hsla(203, 73%, 32%, 0.1) 0%, hsla(187, 91%, 46%, 0.1) 100%);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.quick-apply-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(22, 96, 142, 0.2);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.quick-apply-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px hsla(203, 73%, 32%, 0.2);
}

.card-header {
    background: linear-gradient(135deg, hsla(203, 73%, 32%, 1) 0%, hsla(187, 91%, 46%, 1) 100%);
    padding: 2rem;
    text-align: center;
}

.card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.card-header h2 i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reminder-item,
.payment-item {
    text-align: center;
}

.reminder-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsla(203, 73%, 32%, 1);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(22, 96, 142, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.reminder-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px hsla(203, 73%, 32%, 0.2);
    border-color: rgba(11, 199, 223, 0.5);
    color: hsla(203, 73%, 20%, 1);
    background: linear-gradient(135deg, rgba(22, 96, 142, 0.05) 0%, rgba(11, 199, 223, 0.05) 100%);
}

.reminder-link i {
    font-size: 1.1rem;
    color: hsla(187, 91%, 46%, 1);
    transition: all 0.3s ease;
}

.reminder-link:hover i {
    transform: scale(1.2) rotate(10deg);
    color: hsla(203, 73%, 20%, 1);
}

.payment-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsla(203, 73%, 32%, 1);
    margin: 0;
    background: linear-gradient(135deg, rgba(22, 96, 142, 0.05) 0%, rgba(11, 199, 223, 0.05) 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(11, 199, 223, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 350px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.payment-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsla(187, 91%, 46%, 0.2), transparent);
    transition: left 0.5s ease;
}

.payment-link:hover::before {
    left: 100%;
}

.payment-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px hsla(187, 91%, 46%, 0.2);
    border-color: rgba(11, 199, 223, 0.6);
    color: hsla(187, 91%, 35%, 1);
    background: linear-gradient(135deg, rgba(11, 199, 223, 0.1) 0%, rgba(22, 96, 142, 0.1) 100%);
}

.payment-link i {
    font-size: 1.1rem;
    color: hsla(187, 91%, 46%, 1);
    transition: all 0.3s ease;
}

.payment-link:hover i {
    color: hsla(187, 91%, 35%, 1);
    transform: rotate(15deg) scale(1.1);
}

/* Products Container */
.products-container {
    padding: 2rem 0;
    position: relative;
    height: auto;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.products-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.5rem;
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Product Card Styles */
.product-card {
    min-width: 300px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2.5rem;
}

.product-header {
    padding: 1.25rem 1.5rem 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.product-features {
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 0 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-features ul {
    list-style: none;
    margin: 0;
    padding: 1.25rem 0;
}

.product-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.product-features li i {
    color: #10b981;
    font-size: 0.9rem;
    min-width: 14px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.pricing-section {
    padding: 1.25rem 1.5rem;
}

.pricing-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-header:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-header h3 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.price-option:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.age-range {
    font-size: 0.9rem;
}

.price {
    font-size: 1rem;
    font-weight: 700;
}

.buy-button {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid hsla(203, 73%, 32%, 0.6);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.buy-button::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 ease;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px hsla(203, 73%, 32%, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-color: hsla(203, 73%, 32%, 0.8);
    color: white;
}

.buy-button i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.buy-button:hover i {
    transform: translateX(4px) rotate(10deg);
}

.apply-button {
    width: calc(100% - 3rem);
    margin: 0.5rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid hsla(187, 91%, 46%, 0.6);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.apply-button::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 ease;
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px hsla(187, 91%, 46%, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-color: hsla(187, 91%, 46%, 0.8);
    color: white;
}

.apply-button i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.apply-button:hover i {
    transform: translateX(4px) rotate(-10deg);
}

/* Placeholder Styles */
.placeholder .product-header {
    text-align: center;
    padding: 2rem;
}

.placeholder .product-title {
    color: #6b7280;
}

.placeholder .product-subtitle {
    font-style: italic;
    margin-top: 1rem;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: hsla(203, 73%, 32%, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.nav-arrow-left {
    left: 2rem;
}

.nav-arrow-right {
    right: 2rem;
}

/* Dots Indicator */
.dots-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .brand h1 {
        font-size: 2rem;
    }
    
    .header .brand p {
        font-size: 1rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .info-section {
        padding: 2rem 1rem;
    }
    
    .quick-apply-card {
        margin: 0 1rem;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .card-header h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .card-header h2 i {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .reminder-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        gap: 0.6rem;
        min-width: auto;
    }
    
    .payment-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        gap: 0.6rem;
        min-width: auto;
    }
    
    .products-container {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .products-carousel {
        padding: 1rem;
        gap: 1rem;
    }
    
    .product-card {
        min-width: 260px;
        max-width: 260px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-header {
        padding: 1rem 1.2rem 0.5rem;
    }
    
    .product-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .product-subtitle {
        font-size: 0.8rem;
    }
    
    .product-features {
        margin: 0 0.8rem;
        padding: 0 1.2rem;
    }
    
    .product-features ul {
        padding: 1rem 0;
    }
    
    .product-features li {
        padding: 0.3rem 0;
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    
    .pricing-section {
        padding: 1rem 1.2rem;
    }
    
    .pricing-header {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .pricing-header h3 {
        font-size: 0.8rem;
    }
    
    .pricing-options {
        gap: 0.5rem;
    }
    
    .price-option {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .age-range {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 0.9rem;
    }
    
    .buy-button {
        width: calc(100% - 2.4rem);
        margin: 0 1.2rem 0.5rem;
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 35px;
    }
    
    .apply-button {
        width: calc(100% - 2.4rem);
        margin: 0.5rem 1.2rem 1.2rem;
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 35px;
    }
    
    .nav-dots {
        bottom: 0.5rem;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header .brand h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .info-section {
        padding: 1.5rem 0.8rem;
    }
    
    .quick-apply-card {
        margin: 0 0.8rem;
    }
    
    .card-header {
        padding: 1.2rem 1rem;
    }
    
    .card-header h2 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .card-header h2 i {
        font-size: 1.3rem;
    }
    
    .card-content {
        padding: 1.2rem 1rem;
        gap: 1rem;
    }
    
    .reminder-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        gap: 0.5rem;
    }
    
    .payment-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        gap: 0.5rem;
        min-width: auto;
    }
    
    .products-container {
        min-height: 65vh;
        padding: 1rem 0;
    }
    
    .product-card {
        min-width: 240px;
        max-width: 240px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-header {
        padding: 0.8rem 1rem 0.4rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-subtitle {
        font-size: 0.75rem;
    }
    
    .product-features {
        margin: 0 0.6rem;
        padding: 0 1rem;
    }
    
    .product-features li {
        font-size: 0.75rem;
    }
    
    .pricing-section {
        padding: 0.8rem 1rem;
    }
    
    .price-option {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .buy-button {
        width: calc(100% - 2rem);
        margin: 0 1rem 0.4rem;
        padding: 0.7rem;
        font-size: 0.85rem;
        border-radius: 30px;
    }
    
    .apply-button {
        width: calc(100% - 2rem);
        margin: 0.4rem 1rem 1rem;
        padding: 0.7rem;
        font-size: 0.85rem;
        border-radius: 30px;
    }
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.6s ease-out;
}

/* Bottom Info Section */
.bottom-info-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.bottom-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bottom-info-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.bottom-info-header i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.bottom-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bottom-info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.bottom-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.bottom-info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.bottom-info-card:hover .bottom-info-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.bottom-info-icon i {
    color: white;
    font-size: 2.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bottom-info-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bottom-info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Footer Spacer */
.footer-spacer {
    padding: 3rem 0;
    background: transparent;
    margin-top: 2rem;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Bottom Info Responsive */
@media (max-width: 768px) {
    .bottom-info-section {
        padding: 3rem 1rem;
    }
    
    .bottom-info-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .bottom-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bottom-info-card {
        padding: 2rem 1.5rem;
    }
    
    .bottom-info-icon {
        width: 70px;
        height: 70px;
    }
    
    .bottom-info-icon i {
        font-size: 1.8rem;
    }
    
    .bottom-info-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .bottom-info-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bottom-info-section {
        padding: 2rem 0.8rem;
    }
    
    .bottom-info-header h2 {
        font-size: 1.8rem;
    }
    
    .bottom-info-card {
        padding: 1.5rem 1rem;
    }
    
    .bottom-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .bottom-info-icon i {
        font-size: 1.5rem;
    }
    
    .bottom-info-card h3 {
        font-size: 1.2rem;
    }
    
    .bottom-info-card p {
        font-size: 0.9rem;
    }
}

/* Hide arrows on very small screens */
@media (max-width: 400px) {
    .nav-arrow {
        display: none;
    }
    
    .footer-spacer {
        padding: 2rem 0;
    }
}
