/* Scoped version of business.css - only applies to homepage */
.homepage-wrapper body,
body.homepage {
    display: block;
    overflow-x: hidden;
}
.homepage-wrapper nav,
body.homepage nav {
    background-color: white;
}
.homepage-wrapper .navbar-brand img,
body.homepage .navbar-brand img {
    max-height: 50px;
}
.homepage-wrapper .navbar-brand,
body.homepage .navbar-brand {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    color: #683aa4;
}
.homepage-wrapper nav ul li a,
body.homepage nav ul li a {
    color: #a9a9a9;
    margin: auto 10px;
}
.homepage-wrapper nav ul li a:hover,
body.homepage nav ul li a:hover {
    color: #683aa4;
}

.homepage-wrapper section,
body.homepage section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.homepage-wrapper section h1,
body.homepage section h1 {
    text-transform: uppercase;
    font-weight: 900;
    color: #683aa4;
    text-align: left;
    margin-bottom: 20px;
}
.homepage-wrapper section p,
body.homepage section p {
    font-size: 16px;
    font-weight: 300;
}
.homepage-wrapper #hero button,
.homepage-wrapper #hero .btn,
body.homepage #hero button,
body.homepage #hero .btn {
    max-width: 50%;
    border-radius: 50px !important;
}
.homepage-wrapper #hero .col,
body.homepage #hero .col {
    justify-content: center;
    flex-direction: column;
    display: flex;
}
.homepage-wrapper #hero .img-col,
body.homepage #hero .img-col {
    justify-content: flex-end;
    margin-top: 100px;
}

.homepage-wrapper #hero .card,
body.homepage #hero .card {
    box-shadow: 11px 7px 16px #f9f9f9;
    border: 0;
    text-align: center;
}
.homepage-wrapper #hero .icon,
body.homepage #hero .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}
.homepage-wrapper #contact,
body.homepage #contact {
    text-align: center;
    background-color: #683aa4;
    color: white;
}
.homepage-wrapper #contact h1,
.homepage-wrapper #contact h2,
body.homepage #contact h1,
body.homepage #contact h2 {
    text-align: center;
    color: white;
}

.homepage-wrapper h2,
body.homepage h2 {
    text-transform: uppercase;
    font-weight: 900;
    color: #683aa4;
    text-align: left;
    margin-bottom: 20px;
}

/* Footer Styles */
.homepage-wrapper footer,
body.homepage footer {
    background-color: #683aa4;
    color: white;
    padding: 60px 0 20px;
}

.homepage-wrapper footer .wrapper,
body.homepage footer .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.homepage-wrapper footer .footer_wrapper,
body.homepage footer .footer_wrapper {
    display: flex;
    flex-direction: column;
}

.homepage-wrapper footer h2,
body.homepage footer h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.homepage-wrapper footer p,
body.homepage footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.homepage-wrapper footer a,
body.homepage footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.homepage-wrapper footer a:hover,
body.homepage footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer Contact Section */
.homepage-wrapper .footer_contact,
body.homepage .footer_contact {
    margin: 30px 0;
    text-align: center;
}

.homepage-wrapper .footer_contact p,
body.homepage .footer_contact p {
    margin-bottom: 20px;
}

.homepage-wrapper .footer_social,
body.homepage .footer_social {
    margin-top: 20px;
}

.homepage-wrapper .footer_social .socail_wrapper,
body.homepage .footer_social .socail_wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.homepage-wrapper .footer_social a,
body.homepage .footer_social a {
    color: white;
    font-size: 28px;
    transition: transform 0.3s, opacity 0.3s;
}

.homepage-wrapper .footer_social a:hover,
body.homepage .footer_social a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Footer Form */
.homepage-wrapper .footer_form,
body.homepage .footer_form {
    max-width: 600px;
    margin: 30px auto;
}

.homepage-wrapper .footer_form form,
body.homepage .footer_form form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.homepage-wrapper .footer_form .group_field,
body.homepage .footer_form .group_field {
    display: grid;
    gap: 15px;
    margin-bottom: 15px;
}

.homepage-wrapper .footer_form input,
.homepage-wrapper .footer_form textarea,
body.homepage .footer_form input,
body.homepage .footer_form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.homepage-wrapper .footer_form input::placeholder,
.homepage-wrapper .footer_form textarea::placeholder,
body.homepage .footer_form input::placeholder,
body.homepage .footer_form textarea::placeholder {
    color: #999;
}

.homepage-wrapper .footer_form textarea,
body.homepage .footer_form textarea {
    min-height: 120px;
    resize: vertical;
}

.homepage-wrapper .footer_form .btn,
body.homepage .footer_form .btn {
    background-color: white;
    color: #683aa4;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 15px;
}

.homepage-wrapper .footer_form .btn:hover,
body.homepage .footer_form .btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.homepage-wrapper .footer_form .info,
body.homepage .footer_form .info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.6;
}

/* Footer Navigation */
.homepage-wrapper .footer_nav,
body.homepage .footer_nav {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.homepage-wrapper .footer_nav ul,
body.homepage .footer_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.homepage-wrapper .footer_nav li,
body.homepage .footer_nav li {
    margin: 0;
}

.homepage-wrapper .footer_nav a,
body.homepage .footer_nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.homepage-wrapper .footer_nav a:hover,
body.homepage .footer_nav a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .homepage-wrapper .footer_form form,
    body.homepage .footer_form form {
        padding: 20px;
    }

    .homepage-wrapper .footer_nav ul,
    body.homepage .footer_nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .homepage-wrapper .footer_social .socail_wrapper,
    body.homepage .footer_social .socail_wrapper {
        gap: 30px;
    }
}
