/* ========================= */
/*   MINIMAL SECTION CSS    */
/* ========================= */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: #111;
    color: #fff;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* Touch-friendly */
button, a, input, select {
    -webkit-tap-highlight-color: transparent;
}

/* FAQ Section Form Inputs */
#name-faq,
#phone-faq,
#email-faq,
#city-faq {
    color: #1f2937 !important;
    background-color: #ffffff !important;
}

#name-faq::placeholder,
#phone-faq::placeholder,
#email-faq::placeholder,
#city-faq::placeholder {
    color: #6b7280 !important;
}

#name-faq:focus,
#phone-faq:focus,
#email-faq:focus,
#city-faq:focus {
    color: #1f2937 !important;
    background-color: #ffffff !important;
}

/* FAQ Section Select Dropdown */
#course-faq {
    color: #1f2937 !important;
    background-color: #ffffff !important;
    border: 2px solid #d1d5db !important;
    cursor: pointer !important;
}

#course-faq:focus {
    border-color: #3b82f6 !important;
    outline: 2px solid rgba(59, 130, 246, 0.2) !important;
    outline-offset: 2px;
}

#course-faq option {
    color: #1f2937 !important;
    background-color: #ffffff !important;
    padding: 0.5rem;
}

#course-faq option:disabled {
    color: #6b7280 !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================= */
/*   NAVBAR SECTION         */
/* ========================= */
.navbar {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: orange;
}

.logo span {
    color: #fff;
    font-size: 0.75rem;
    display: block;
    margin-top: -0.25rem;
}

.apply-btn {
    background: orange;
    padding: 0.5rem 1.25rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s;
    font-size: 0.875rem;
}

.apply-btn:hover {
    opacity: 0.8;
}

.apply-btn:active {
    transform: scale(0.98);
}

/* ========================= */
/*   HERO SECTION           */
/* ========================= */
.hero-section {
    display: flex;
    height: 100vh;
    margin-top: 80px;
    min-height: 600px;
}

.image-grid {
    width: 65%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 10;
    color: #fff;
    max-width: 600px;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-text-overlay .hero-subheading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    opacity: 0.95;
    margin-top: 0.5rem;
}

.form-content {
    width: 35%;
    padding: 3rem 2.5rem;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.form-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-box input,
.form-box select {
    padding: 0.875rem;
    background: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #000;
}

.form-box button {
    padding: 1rem;
    background: #007bff;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

.form-box button:hover {
    background: #0062cc;
}

.form-box button:active {
    transform: scale(0.98);
}

/* ========================= */
/*   CHOOSE SECTION         */
/* ========================= */
.choose-section {
    display: flex;
    justify-content: space-between;
    padding: 3rem 2rem;
    gap: 3rem;
    background: #222;
    margin-top: 2rem;
    color: #fff;
}

.choose-left {
    width: 50%;
}

.choose-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: orange;
    margin-bottom: 1.5rem;
}

.choose-left ul {
    list-style: none;
}

.choose-left ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 0;
}

.choose-left ul li::before {
    display: none;
}

.choose-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: orange;
    margin-top: 0.125rem;
}

.choose-icon svg {
    width: 100%;
    height: 100%;
}

.choose-left ul li h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: orange;
    margin-bottom: 0.25rem;
}

.choose-left ul li p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.choose-right {
    width: 50%;
}


.choose-right h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: orange;
    margin-bottom: 1.5rem;
}

.highlight-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.box {
    border: 2px solid #fff;
    text-align: center;
    padding: 2rem 1.25rem;
    font-size: 1rem;
    border-radius: 10px;
    background: #111;
    transition: 0.3s;
    cursor: pointer;
}

.box:hover {
    transform: scale(1.05);
    border-color: orange;
}

.box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: orange;
    margin-bottom: 0.75rem;
}

.box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.learn-icon {
    color: orange;
    font-weight: bold;
    flex-shrink: 0;
}

/* ========================= */
/*   FAQ SECTION           */
/* ========================= */
.faq-item.active {
    background: #F9A825;
    color: #000;
}

.faq-item.active .faq-question {
    background: #F9A825;
}

.faq-answer.hidden {
    display: none;
}

.faq-answer:not(.hidden) {
    display: block;
}

/* ========================= */
/*   NETWORK SECTION        */
/* ========================= */
.raffles-network {
    width: 100%;
    background: #000;
    padding: 0;
}

.network-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.network-banner {
    width: 100%;
    display: block;
}

/* ========================= */
/*   FOOTER SECTION         */
/* ========================= */
.footer {
    width: 100%;
    background: #fff;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-size: 1rem;
}

.footer-links {
    margin-top: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links span {
    margin: 0 0.5rem;
    color: #ffa200;
}

/* ========================= */
/*   RESPONSIVE            */
/* ========================= */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1.25rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo span {
        font-size: 0.625rem;
    }
    
    .apply-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-section {
        flex-direction: column;
        height: auto;
        margin-top: 70px;
        min-height: auto;
    }
    
    .image-grid {
        width: 100%;
        height: 300px;
    }
    
    .hero-text-overlay {
        bottom: 20px;
        left: 10px;
        max-width: 90%;
    }
    
    .hero-text-overlay h1 {
        font-size: 1.75rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-text-overlay .hero-subheading {
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    
    .form-content {
        width: 100%;
        padding: 2rem 1.25rem;
    }
    
    .form-content h2 {
        font-size: 1.5rem;
    }
    
    .form-content p {
        font-size: 1rem;
    }
    
    .choose-section {
        flex-direction: column;
        padding: 2rem 1.25rem;
        gap: 2rem;
    }
    
    .choose-left, .choose-right {
        width: 100%;
    }
    
    .choose-left h2,
    .choose-right h2 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .choose-left ul li {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .choose-icon {
        width: 20px;
        height: 20px;
    }
    
    .choose-left ul li h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .choose-left ul li p {
        font-size: 0.8rem;
    }
    
    .highlight-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .box {
        padding: 1.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .box h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .logo span {
        font-size: 0.625rem;
        margin-top: -0.125rem;
    }
    
    .apply-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-section {
        margin-top: 60px;
    }
    
    .image-grid {
        height: 250px;
    }
    
    .hero-text-overlay h1 {
        font-size: 1.5rem;
        font-weight: 900;
    }
    
    .hero-text-overlay .hero-subheading {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .form-content {
        padding: 1.5rem 1rem;
    }
    
    .form-content h2 {
        font-size: 1.25rem;
    }
    
    .form-content p {
        font-size: 0.875rem;
    }
    
    .form-box input,
    .form-box select {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .form-box button {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    .choose-section {
        padding: 1.5rem 1rem;
    }
    
    .choose-left h2,
    .choose-right h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .choose-left ul li {
        font-size: 0.8125rem;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .choose-left ul li::before {
        font-size: 1rem;
    }
    
    .box {
        padding: 1.25rem 1rem;
        font-size: 0.8125rem;
    }
}

