:root {
    --primary-yellow: #FFC107;
    --secondary-yellow: #FFCC00;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-grey: #737373;
    --orange-gradient: linear-gradient(135deg, #ff8c00, #ffa500);
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.text-grey {
    color: var(--text-grey);
}

.text-primary-yellow {
    color: var(--primary-yellow);
}

.text-secondary-yellow {
    color: var(--secondary-yellow);
}

/* Navbar Styles */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
}

.btn-warning {
    background: var(--primary-yellow);
    border: none;
    color: black;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
}

.btn-warning:hover {
    background: #e0a800;
    color: black;
}

/* Hero Section */
.hero-section {
    background-image: url("assets/hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 150px 0 75px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Business Section */
.business-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.business-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.business-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.business-features {
    list-style: none;
    padding: 0;
}

.business-features li {
    padding: 10px 0;
    font-weight: 500;
    color: var(--text-dark);
}

.business-features li::before {
    content: "✓";
    color: var(--primary-yellow);
    font-weight: bold;
    margin-right: 10px;
}

.business-image {
    position: relative;
    text-align: center;
}

.packages-visual {
    max-width: 100%;
    height: auto;
}

/* Mission Section */
.mission-section {
    background: var(--dark-bg);
    padding: 100px 0;
    color: white;
}

.mission-content {
    background: var(--primary-yellow);
    padding: 40px;
    color: black;
}

.mission-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: var(--dark-bg);
}

.stat-item {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--primary-yellow);
    border-radius: 10px;
}

.contact-item div {
    overflow-wrap: anywhere;
}

.contact-icon {
    font-size: 1.5rem;
    color: black;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: none;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-image: url("assets/banner3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 992px) {
    .cta-section {
        background-position: right !important;
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}

.cta-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
}

.btn-dark {
    background: black;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

@media screen and (min-width: 1280px) {
    .process-section {
        background-image: url(assets/hero-section.png);
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
    }
}

.process-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

.process-title span {
    color: var(--primary-yellow);
}

.process-step {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.process-step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.process-step-text {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: var(--primary-yellow);
    padding: 100px 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: black;
}

.accordion-button {
    background: white;
    color: black;
    font-weight: 500;
    border: none;
    border-radius: 10px !important;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: black;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background: white;
    border-radius: 0 0 10px 10px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer p {
    color: #ccc;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    cursor: default;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .business-title,
    .contact-title,
    .cta-title,
    .process-title {
        font-size: 2rem;
    }
}

a {
    color: #ccc;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

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

.border-secondary {
    border-color: #FFCC00 !important;
}

a {
    position: relative;
    text-decoration: none;
    color: inherit;
}

a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

a:hover::after {
    width: 100%;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}
