:root {
    --brand-blue: #00AED9;
    --brand-green: #8DC63F;
    --brand-dark: #0B1F2A;
    --brand-light: #F4FBFD;
    --brand-gradient: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--brand-dark);
    background-color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

main {
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hidden {
    display: none !important;
}

/* Top Bar */
.top-bar {
    background-color: #061118; /* Darker shade to contrast slightly */
    color: white;
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: var(--transition);
}

.contact-link:hover {
    opacity: 1;
    color: var(--brand-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-link:hover {
    opacity: 1;
    color: var(--brand-green);
}

/* Header */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center top;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 31, 42, 0.95), rgba(11, 31, 42, 0.7));
    z-index: 1;
}

.header .container {
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px; /* Adjusted size */
    width: auto;
    object-fit: contain;
    /* Adding a subtle glow just in case the logo has dark text to help it stand out */
    filter: drop-shadow(0 2px 15px rgba(255, 255, 255, 0.15));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 174, 217, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 217, 0.4);
}

.btn-secondary {
    background-color: var(--brand-dark);
    color: white;
}

.btn-secondary:hover {
    background-color: #1a3a4d;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline:hover {
    background-color: var(--brand-light);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

/* Hero Section check this after copying the code*/
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 31, 42, 0.95), rgba(11, 31, 42, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtext {
    font-size: 0.875rem !important;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Quiz Section */
.quiz-section {
    padding: 60px 0;
    background-color: var(--brand-light);
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
}

.quiz-container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 0 auto;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--brand-gradient);
    width: 0%;
    transition: width 0.5s ease;
}

.question-text {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--brand-dark);
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-btn {
    text-align: left;
    padding: 20px;
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.125rem;
    color: var(--brand-dark);
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--brand-blue);
    background-color: var(--brand-light);
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background-color: var(--brand-light);
    min-height: calc(100vh - 130px);
}

.results-container {
    max-width: 800px;
    text-align: center;
}

.score-display {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.score-display h2 {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 20px;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 174, 217, 0.3);
}

.result-tier-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tier-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tier-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 30px;
}

.action-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--brand-dark);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 217, 0.1);
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .quiz-container {
        padding: 20px;
    }
    
    .question-text {
        font-size: 1.5rem;
    }
    
    .tier-title {
        font-size: 2rem;
    }
}