/* Hero Banner Slider */
.hero-banner {
    padding: 20px;
}

.banner-slider {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 250px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.mystical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-orange);
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.sun {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.sun::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.05) 40%, transparent 45%);
}

.sun-1 {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.sun-2 {
    top: 50%;
    right: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
}

.sun-3 {
    bottom: 20px;
    left: 30%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.mandala {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(0,0,0,0.2)" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="none" stroke="rgba(0,0,0,0.15)" stroke-width="1.5"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(0,0,0,0.1)" stroke-width="1"/><path d="M50 5 L50 95 M5 50 L95 50" stroke="rgba(0,0,0,0.1)" stroke-width="1"/></svg>') center/contain no-repeat;
    animation: rotate 20s linear infinite;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0,0,0,0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0,0,0,0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0,0,0,0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0,0,0,0.1), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(0,0,0,0.15), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(0,0,0,0.1), transparent);
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    border-radius: 5px;
}

/* Astro Services */
.astro-services {
    padding: 40px 20px;
    background: var(--light-gray);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 25px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%);
    padding: 30px;
    border-radius: 25px;
}

.service-card-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: block;

}

.service-card-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.service-card-item.chat {
    background: linear-gradient(135deg, #FFE8CC 0%, #FFD9A3 100%);
}

.service-card-item.talk {
    background: linear-gradient(135deg, #FFD4B3 0%, #FFC299 100%);
}

.service-card-item.shop {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
}

.service-card-item.puja {
    background: linear-gradient(135deg, #E1BEE7 0%, #CE93D8 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card-item:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card-item h3 {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    line-height: 1.4;
}

/* Other Services */
.other-services {
    padding: 40px 20px;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.other-service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.other-service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.other-service-card:hover .service-icon-box::before {
    transform: translateX(100%);
}

.service-icon-box.video {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9933 100%);
}

.service-icon-box.blog {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.other-service-card h3 {
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
}

/* Recommended Astrologers */
.recommended-astrologers {
    padding: 40px 20px;
    background: var(--light-gray);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.see-all {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.see-all:hover {
    gap: 10px;
    color: var(--primary-orange);
}

.astrologers-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.astrologers-scroll::-webkit-scrollbar {
    height: 8px;
}

.astrologers-scroll::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    border-radius: 10px;
}

.astrologers-scroll::-webkit-scrollbar-thumb {
    /* background: var(--primary-orange); */
    border-radius: 10px;
}

.astrologer-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    min-width: 200px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.astrologer-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.status-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 3px solid var(--white);
    animation: pulse-ring 2s infinite;
}

.status-badge.online {
    background: #4CAF50;
}

.status-badge.busy {
    background: #FF9800;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.astrologer-card-new img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-orange);
    transition: all 0.3s;
}

.astrologer-card-new:hover img {
    transform: scale(1.1);
    border-color: var(--primary-red);
}
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rating-badge {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.rating-badge i {
    color: #FFC107;
}

.astrologer-card-new h3 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.astrologer-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    background: var(--light-gray);
    border: none;
    padding: 10px 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: var(--white);
    transform: scale(1.05);
}

.action-btn i {
    font-size: 18px;
    color: #00BCD4;
}

.action-btn:hover i {
    color: var(--white);
}

.action-btn span {
    font-size: 12px;
    font-weight: 600;
}

.action-btn small {
    font-size: 10px;
    color: var(--gray);
}

.action-btn:hover small {
    color: var(--white);
}
/* ================= Horoscope Services FIXED ================= */

.horoscope-services {
    padding: 50px 15px;
   background: var(--white);
}

/* Scroll Container */
.horoscope-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px 5px;  /* small side padding */
}

/* Hide ugly extra scroll space */
.horoscope-cards::-webkit-scrollbar {
    height: 6px;
}

.horoscope-cards::-webkit-scrollbar-thumb {
    /* background: #ff6b35; */
    border-radius: 10px;
}

/* Card SMALL VERSION */
.horoscope-card {
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 18px;
    min-width: 240px;   /* Smaller width */
    max-width: 240px;
    padding: 15px;
    flex: 0 0 auto;     /* Important FIX */
    text-align: center;
    transition: 0.3s;
}

.horoscope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Image SMALL */
.horoscope-card img {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Content SMALL */
.horoscope-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.horoscope-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Button SMALL */
.inquiry-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= RESPONSIVE FIX ================= */

@media (max-width: 768px) {

    .horoscope-cards {
        gap: 12px;
        padding-left: 10px; /* FIX left cut */
    }

    .horoscope-card {
        min-width: 200px;
        max-width: 200px;
        padding: 12px;
    }

    .horoscope-card img {
        height: 130px;
    }

}

@media (max-width: 480px) {

    .horoscope-card {
        min-width: 170px;
        max-width: 170px;
    }

    .horoscope-card img {
        height: 110px;
    }

    .horoscope-content h3 {
        font-size: 14px;
    }

    .horoscope-content p {
        font-size: 12px;
    }

}
/* Products Section */
.products-section {
    padding: 40px 20px;
    background: var(--light-gray);
}

.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    border-radius: 10px;
}

.products-scroll::-webkit-scrollbar-thumb {
    /* background: var(--primary-orange); */
    border-radius: 10px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    min-width: 200px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.add-btn {
    position: absolute;
    top: 150px;
    right: 10px;
    background: var(--white);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 15px;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.original-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-badge {
    color: #4CAF50;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info h4 {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 600;
}

.product-info p {
    font-size: 12px;
    color: var(--gray);
}



/* ================= OUR PRODUCTS ================= */

.our-products-section {
    padding: 40px 20px;
    background: var(--white); /* White Background */
}

.our-products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}


/* ================= RECENTLY VIEWED ================= */

.recent-products-section {
    padding: 40px 20px;
    background: var(--light-gray); /* Light Background */
}

.recent-products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

/* Blogs Section */
.blogs-section {
    padding: 40px 20px;
}

.blogs-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.blogs-scroll::-webkit-scrollbar {
    height: 8px;
}

.blogs-scroll::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    border-radius: 10px;
}

.blogs-scroll::-webkit-scrollbar-thumb {
    /* background: var(--primary-orange); */
    border-radius: 10px;
}

.blog-card {
    background: var(--white);
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    min-width: 250px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.3s;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card h3 {
    padding: 15px;
    font-size: 15px;
    color: var(--black);
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive */


@media (max-width: 640px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-banner {
        margin: 10px;
        padding: 40px 15px;
    }

    .mandala {
        width: 80px;
        height: 80px;
        right: 20px;
    }
}

/* Hero Banner Slider */
.hero-banner {
    padding: 20px;
}

.banner-slider {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 250px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.mystical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-orange);
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.sun {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.sun::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.05) 40%, transparent 45%);
}

.sun-1 {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.sun-2 {
    top: 50%;
    right: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
}

.sun-3 {
    bottom: 20px;
    left: 30%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.mandala {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(0,0,0,0.2)" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="none" stroke="rgba(0,0,0,0.15)" stroke-width="1.5"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(0,0,0,0.1)" stroke-width="1"/><path d="M50 5 L50 95 M5 50 L95 50" stroke="rgba(0,0,0,0.1)" stroke-width="1"/></svg>') center/contain no-repeat;
    animation: rotate 20s linear infinite;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0,0,0,0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0,0,0,0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0,0,0,0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0,0,0,0.1), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(0,0,0,0.15), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(0,0,0,0.1), transparent);
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================= */
/* ADDITIONAL RESPONSIVE FIX */
/* ========================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

body {
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .banner-slider {
        height: 220px;
    }
}

@media (max-width: 768px) {

    .banner-slider {
        height: 180px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .mandala {
        display: none;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .astrologer-card-new {
        min-width: 160px;
    }

    .horoscope-card {
        width: 240px;
    }

    .product-card {
        min-width: 160px;
    }

    .blog-card {
        min-width: 200px;
    }
}

@media (max-width: 480px) {

    .banner-slider {
        height: 150px;
    }

    .hero-banner {
        padding: 10px;
    }

    .sun {
        display: none;
    }

    .services-cards {
        gap: 15px;
        padding: 15px;
    }

    .service-card-item {
        padding: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .service-card-item h3 {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }
}



/* CUSTOM MODAL */
.custom-modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-box{
    background:#fff;
    width:90%;
    max-width:400px;
    padding:20px;
    border-radius:10px;
    animation:fadeIn 0.3s ease;
}

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

.modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.modal-header h3{
    color:#ddd;
}

.close-btn{
    font-size:22px;
    cursor:pointer;
}

.inquiry-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.inquiry-form input{
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
}

.inquiry-form input:focus{
    border-color:#ff6b00;
}

.submit-btn{
    padding:12px;
    border:none;
    border-radius:6px;
    background:linear-gradient(45deg,#ff6b00,#ff3c00);
    color:#fff;
    font-weight:600;
    cursor:pointer;
}
