﻿

/* ---------------------------------
   Root Variables
---------------------------------- */
:root {
    --navy: #0A1325;
    --navy-2: #071428;
    --red: #FE2311;
    --muted: #B9C2CE;
    --light: #F5F7FA;
    --card: rgba(255,255,255,0.03);
    --radius: 12px;
    --max-width: 1630px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* ---------------------------------
   Reset & Base Styles
---------------------------------- */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    background: var(--navy);
    color: var(--light);
    -webkit-font-smoothing: antialiased;
}

.landing-page p {
    line-height: 25px;
}

.container,
.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 80px 0;
}

    .section .section-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .section .section-title h2 {
            margin: 10px 0;
            font-size: 2rem;
            color: var(--light);
            font-weight: 800;
        }

/* ---------------------------------
   Hero Section
---------------------------------- */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--navy-2) 0%, rgba(10,19,37,0.95) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 10px;
    align-items: center;
}

.hero-copy {
    max-width: var(--max-width);
}

    .hero-copy h1 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .hero-copy p {
        margin: 0 0 18px;
        color: var(--muted);
        font-size: 16px;
    }

.hero-ctas {
    display: flex;
    gap: 12px;
}

/*.btn-solid {
    background: var(--red);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: 0.2s ease;
}

    .btn-solid:hover {
        filter: brightness(1.02);
        transform: translateY(-2px);
    }*/

.btn-solid {
    /*    background: var(--red);*/
    color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: 0.2s ease;
    border: 1px solid #fff; /* added */
}

    .btn-solid:hover {
        filter: brightness(1.02);
        transform: translateY(-2px);
        border-color: var(--red); /* border turns red on hover */
    }

/* Hero Media */
.hero-media-wrapper {
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

    .hero-media-wrapper img {
/*        width: 100%;
        height: 350px;*/
        object-fit: cover;
    }

/* ---------------------------------
   About Section
---------------------------------- */
.about-container {
    background-color: var(--light);
    color: #000;
    border-radius: 12px;
    padding: 50px 40px;
}

.about-row {
    align-items: center;
}

.about-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-text {
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* ---------------------------------
   Pill List
---------------------------------- */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.pill {
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* ---------------------------------
   Features Grid
---------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    display: flex;
    gap: 12px;
}

    .feature svg {
        width: 64px;
        height: 64px;
    }

    .feature h4 {
        margin: 0;
        font-size: 18px;
    }

    .feature p {
        color: var(--muted);
        font-size: 14px;
        margin: 0;
    }

/* ---------------------------------
   Testimonials / Swiper
---------------------------------- */
.testimonialSwiper {
    position: relative;
    padding: 20px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    overflow: hidden;
}

    .testimonial-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #d8bfbf;
}

.swiper-pagination-bullet-active {
    background: var(--red);
}

/* Swiper Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--red);
}

/* ---------------------------------
   Live Trades
---------------------------------- */
#liveTrades .card {
    background: transparent;
    border: none;
    border-radius: 8px;
}

    #liveTrades .card img {
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        #liveTrades .card img:hover {
            transform: scale(1.05);
        }

/* ---------------------------------
   Lightbox
---------------------------------- */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-frame {
    padding: 5px;
    border: 4px solid var(--red);
    border-radius: 12px;
    animation: borderPulse 2s infinite ease-in-out;
}

#lightbox img {
    max-width: 95vw;
    max-height: 85vh;
    border-radius: 8px;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

    #lightbox .close:hover {
        color: var(--red);
    }

/* ---------------------------------
   Contact
---------------------------------- */
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-why {
    background: #121a2c;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    color: var(--light);
}

.contact-form {
    flex: 2;
    min-width: 350px;
    background-color: #121a2c;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3)
}

.form-label {
    font-weight: 600;
    color: #f5f7fa;
    display: block;
    margin-bottom: 6px
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    color: #000;
    font-size: 15px;
}

.form-textarea {
    resize: vertical;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    margin-right: 8px;
    transition: 0.3s;
}

    .social-icon:hover {
        color: var(--red);
        border-color: var(--red);
    }

.submit-icon {
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    margin-right: 8px;
    transition: 0.3s;
    font-weight:bold;
}

    .submit-icon:hover {
        color: var(--red);
        border-color: var(--red);
    }

.email-link {
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
}

    .email-link:hover {
        color: var(--red);
    }

/* ---------------------------------
   FAQ / Accordion
---------------------------------- */
#faqs {
    background: #0a1324;
    color: #fff;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

    .accordion-item {
    background: transparent;
    border: none;
}

.accordion-button {
    background: #121a2c;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
}

    .accordion-button:hover {
        background: #1b2f50;
    }

.accordion-body {
    background: #121a2c;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 0 0 6px 6px;
    padding: 15px 20px;
    color: #fff;
}

/* ---------------------------------
   Disclaimer
---------------------------------- */
#disclaimer {
    background: #0a1224;
    color: #d8d8d8;
}

    #disclaimer h5 {
        color: #ff2d2d;
    }

    #disclaimer p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255,255,255,0.75);
    }

    #about1 p {
        font-size: 15px;
        line-height: 1.6;
        color: rgba(255,255,255,0.75);
    }

.disclaimer-box h5 {
    color: white !important;
    transition: color 0.3s ease;
}

    .disclaimer-box h5:hover {
        color: #ff0e00 !important;
    }
/* ---------------------------------
   Modals
---------------------------------- */
.enquiry-modal,
.success-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

    .enquiry-modal .modal-box,
    .success-modal .modal-box {
        background: #0d1628;
        padding: 30px;
        border-radius: 12px;
        color: #fff;
        max-width: 500px;
        text-align: center;
        position: relative;
    }

.modal-box .close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

/* ---------------------------------
   Footer
---------------------------------- */
.site-footer {
    background: transparent;
    border-top: 1px solid rgb(148,160,175);
    text-align: center;
    color: var(--muted);
}

/* ---------------------------------
   Utilities
---------------------------------- */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1rem;
}

.py-5 {
    padding: 3rem 0;
}

/* ---------------------------------
   Animations
---------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes borderPulse {
    0%,100% {
        box-shadow: 0 0 5px var(--red), 0 0 10px var(--red);
    }

    50% {
        box-shadow: 0 0 15px var(--red), 0 0 25px var(--red);
    }
}

/* ---------------------------------
   Responsive Styles
---------------------------------- */
@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-flex {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .about-container {
        padding: 40px 25px;
    }

    .about-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr 400px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-row {
        text-align: center;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-img {
        margin-top: 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-media img {
        max-width: 350px;
        width: 80%;
        margin: 0 auto;
    }

    #lightbox img {
        max-width: 100%;
        max-height: 80vh;
    }
}

@media (max-width: 600px) {
    .main-nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        height: 380px;
    }
}
