
/* ========================================
   Coming Soon Page Styles
   ======================================== */

/* Three.js Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body {
    position: relative;
}

/* Ensure all sections are visible */
section {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure navbar is above canvas */
#navbar {
    position: relative;
    z-index: 1000;
}

.coming-soon-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 10;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 110, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.coming-soon-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 64, 66, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8f6b 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(255, 110, 59, 0.3);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.coming-soon-badge i {
    font-size: 1.2rem;
    animation: rocket 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 110, 59, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 110, 59, 0.5);
    }
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-black);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: var(--medium-grey);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff8f6b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 110, 59, 0.1) 0%, rgba(255, 143, 107, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--medium-grey);
    margin: 0;
}

/* Enquiry Section */
.enquiry-section {
    padding: 180px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.enquiry-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.enquiry-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff8f6b 100%);
}

.enquiry-header {
    margin-bottom: 40px;
}

.enquiry-header i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.enquiry-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-black);
    margin-bottom: 15px;
}

.enquiry-header p {
    font-size: 1.1rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

.enquiry-form .form-label {
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 110, 59, 0.1);
    background: white;
    outline: none;
}

.enquiry-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.form-check-label {
    margin-left: 10px;
    color: var(--medium-grey);
    cursor: pointer;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8f6b 100%);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 110, 59, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 110, 59, 0.4);
}

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

.btn-submit:hover i {
    transform: translateX(5px);
}

.success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(134, 239, 172, 0.1) 100%);
    border-radius: 16px;
    margin-top: 20px;
}

.success-message i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--medium-grey);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-black);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    color: var(--dark-black);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 110, 59, 0.05) 0%, rgba(255, 143, 107, 0.05) 100%);
    color: var(--primary-orange);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6e3b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: var(--medium-grey);
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enquiry-container {
        padding: 30px 20px;
    }
    
    .enquiry-header h2 {
        font-size: 2rem;
    }
    
    .enquiry-header p {
        font-size: 1rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 18px;
    }
    
    #bg-canvas {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .coming-soon-section {
        padding: 80px 0 60px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    #bg-canvas {
        opacity: 0.3;
    }
}

/* Additional 3D and Animation Effects */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.feature-icon {
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.feature-card:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

/* Glassmorphism enhancement */
.enquiry-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 110, 59, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Smooth transitions for all interactive elements */
* {
    scroll-behavior: smooth;
}

/* Enhanced hover states */
.accordion-button:hover {
    background: linear-gradient(135deg, rgba(255, 110, 59, 0.08) 0%, rgba(255, 143, 107, 0.08) 100%);
    transform: translateX(5px);
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(255, 110, 59, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-orange) 0%, #ff8f6b 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Loading animation for Three.js canvas */
@keyframes pulse-bg {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

#bg-canvas {
    animation: pulse-bg 3s ease-in-out infinite;
}

/* Text selection styling */
::selection {
    background-color: rgba(255, 110, 59, 0.3);
    color: var(--dark-black);
}

::-moz-selection {
    background-color: rgba(255, 110, 59, 0.3);
    color: var(--dark-black);
}

/* Enhanced button ripple effect */
.btn-submit {
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover::after {
    width: 300px;
    height: 300px;
}

/* Animated gradient background for cards */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 110, 59, 0.05), rgba(255, 143, 107, 0.05), rgba(65, 64, 66, 0.05));
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

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

/* Footer visibility */
#footer {
    position: relative;
    z-index: 100;
    background: white;
}

/* Enhanced coming soon badge glow */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 110, 59, 0.3), 0 0 20px rgba(255, 110, 59, 0.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 110, 59, 0.5), 0 0 40px rgba(255, 110, 59, 0.4);
    }
}

.coming-soon-badge {
    animation: pulse 2s ease-in-out infinite, glow 2s ease-in-out infinite;
}

