/* ===== Header ===== */
header {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 80%, rgba(190,190,190,0) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    padding-inline: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 100;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 10px 15px;
    transition: all .5s ease-in-out;
}

.nav-link.active { color: #F7811C; }
.nav-link:hover { color: #F7811C; }

.header_logo {
    height: 50px;
    margin-top: -25px;
}

.header-burger {
    cursor: pointer;
    height: 40px;
    display: none;
}

/* ===== Mobile Navigation ===== */
.mobile-nav { display: none; }

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f6821cde;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s, transform 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.close-btn {
    font-size: 40px;
    color: white;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

.mobile-nav-links a {
    display: block;
    font-size: 24px;
    color: white;
    text-decoration: none;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.mobile-nav-links a:hover {
    color: rgba(255, 255, 255, 0.633);
}

/* ===== Section: Home ===== */
section { }

#home {
    margin-top: 100px !important;
    height: calc(100vh - 130px) !important;
    padding-left: 40px;
    margin: 0 auto;
    width: 100vw;
}

.home-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 110px) !important;
}

.home-banner-wrapper {
    height: calc(100vh - 130px) !important;
}

.home-banner-image {
    position: absolute;
    right: 0px;
    height: auto;
    width: 100%;
    max-width: 1000px;
    bottom: 0px;
    z-index: 1;
}

.banner-title { text-align: left; }

/* ===== Section: Features ===== */
#features { padding: 40px 30px; }

.features-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-card {
    width: 90%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    padding: 60px 5%;
    background-color: #FCFCFC;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.feature-card-navigators {
    margin-right: 5px;
    height: 10px;
    width: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 100%;
    background-color: rgba(100, 100, 100, 0.227);
}

.feature-card-navigators:hover {
    background-color: #F14F22;
}

.features-card-navigation-row {
    display: flex;
    flex-direction: row;
    margin-top: -20px;
    margin-bottom: 30px;
}

.features-card-content-holder {
    max-height: 480px;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
}

.features-content-holder {
    align-self: center;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.features-image-holder {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-content-title {
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    color: #F6811C;
    font-size: 20px;
}

.features-content-description {
    font-family: 'Ubuntu', sans-serif;
    margin-top: 10px;
    text-align: left;
    color: black;
    font-size: 35px;
}

.features-card-image { height: 100%; }

.features-arrows-holder {
    display: flex;
    flex-direction: row;
}

.slide-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
    height: 80px;
    width: 80px;
    border-radius: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #F6811C;
    color: #F6811C;
    transition: all .5s ease;
    margin-right: 15px;
}

#previous-slide {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.slide-button:hover {
    background-color: #F6811C;
    color: white;
}

.slide-button:hover .slide-button-arrow {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.slide-button-arrow {
    transition: all .5s ease;
    filter: invert(46%) sepia(97%) saturate(570%) hue-rotate(-10deg) brightness(98%) contrast(101%);
    height: 30px;
    width: 30px;
}

/* ===== Section: Efficiency ===== */
.efficiency-subtitle {
    color: rgba(0, 0, 0, 0.46);
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    margin-bottom: 100px;
}

.efficiency-holder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.efficiency-cards-holder {
    width: 100%;
    align-items: stretch;
    gap: 15px;
    display: flex;
    flex-direction: row;
}

.effiency-card {
    justify-content: center;
    flex-grow: 1;
    height: 320px;
    width: 33%;
    padding: 30px 40px 30px 40px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    transition: all 1s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.effiency-card:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.efficiency-cards-subtitle {
    margin-top: 35px;
    color: rgba(128, 128, 128, 0.693);
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
}

.effiency-card-image {
    height: 55px;
    width: 55px;
}

.efficiency-improve-business {
    margin-top: 50px;
    border-radius: 30px;
    background-color: #F6811C;
    padding: 10px 30px;
    width: fit-content;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 22px;
}

/* ===== Made By/For Section ===== */
.made-by-for-holder {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

/* ===== Section: Subscriptions ===== */
#subscriptions {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding-inline: 50px;
    margin-bottom: 200px;
}

.subscriptions-subtitle {
    color: rgba(0, 0, 0, 0.46);
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}

.subscriptions-card-title {
    color: #F6811C;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
}

.subsription-card-subtitle {
    color: rgba(0, 0, 0, 0.46);
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
}

.subscription-check-circular {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.check-circular-white {
    filter: invert(100%) brightness(100%);
}

.check-circular-orange {
    filter: invert(50%) sepia(280%) saturate(770%) hue-rotate(-13deg) brightness(103%) contrast(101%);
}

.subscription-features-list {
    padding-left: 0px !important;
}

.subscription-features-list li {
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.537);
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    letter-spacing: .5px;
    font-size: 15px;
}

.subscriptions-holder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.subscriptions-cards-holder {
    width: 100%;
    align-items: stretch;
    gap: 15px;
    display: flex;
    flex-direction: row;
}

.subscription-recommended-card {
    background: linear-gradient(90deg, #F6811C 0%, #FCAB17 100%) !important;
}

.subscription-recommended-card p,
.subscription-recommended-card h1,
.subscription-recommended-card h3,
.subscription-recommended-card li {
    color: white !important;
}

.subscription-recommend-in-card-text {
    position: absolute;
    top: -25px;
    right: 20px;
    margin-top: 50px;
    border-radius: 30px;
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    padding: 10px 20px;
    width: fit-content;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
}

.subscription-contact-button {
    min-width: 200px;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    color: #F6811C;
    border: none;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-color: #F6811C;
    background: white;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.subscription-recommended-text {
    border-style: solid;
    border-color: white;
    border-width: 1px;
    border-radius: 30px;
    background-color: transparent;
    padding: 10px 20px;
    width: fit-content;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.subscriptions-card {
    border-style: solid;
    border-width: 1px;
    border-color: #F6811C;
    justify-content: start;
    flex-grow: 1;
    width: 20%;
    padding: 30px 40px 30px 40px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    transition: all 1s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.subscriptions-card:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.subscriptions-cards-subtitle {
    margin-top: 35px;
    color: rgba(128, 128, 128, 0.693);
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
}

/* ===== Plan Modal ===== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-backdrop.active { display: flex; }

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #F6811C;
    color: white;
}

.modal-header {
    text-align: center;
    padding: 48px 48px 32px;
}

.modal-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

.billing-selector {
    padding: 0 48px;
    margin-bottom: 32px;
    display: grid;
    gap: 16px;
}

.billing-option {
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 24px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.billing-option.active {
    border-color: #F6811C;
    background: #fef8f3;
}

.billing-option:hover {
    border-color: #F6811C;
    box-shadow: 0 4px 12px rgba(246, 129, 28, 0.15);
    transform: translateY(-2px);
}

.billing-option-content {
    display: flex;
    flex-direction: column;
}

.billing-option-label {
    font-size: 18px;
    font-weight: 500;
}

.billing-option-desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.savings-badge {
    background: linear-gradient(90deg, #F6811C 0%, #FCAB17 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.selected-plan-summary {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 40px 48px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

.summary-plan-name {
    font-size: 20px;
    font-weight: 600;
    color: #F6811C;
}

.summary-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #F6811C;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.summary-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.summary-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
}

.summary-feature svg {
    width: 20px;
    height: 20px;
    color: #F6811C;
    flex-shrink: 0;
}

.modal-footer {
    padding: 24px 48px 48px;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.button-primary,
.button-secondary {
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-primary {
    background: linear-gradient(90deg, #F6811C 0%, #FCAB17 100%);
    color: white;
    font-weight: bold;
    border: none;
}

.button-primary:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.button-secondary {
    background: white;
    border: 1px solid #e5e7eb;
    color: #666;
}

.button-secondary:hover {
    background: #f9fafb;
    border-color: #F6811C;
    color: #F6811C;
}

/* ===== Section: Contact ===== */
.contact-holder {
    width: 80%;
    margin-top: 100px;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    min-height: 50vh;
}

.contact-column-holder-left {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contact-column-holder-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.contact-image {
    max-width: 420px;
    width: 70%;
}

.contact-grey-text {
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
    color: rgba(0, 0, 0, 0.575);
    font-size: 18px;
}

.form-label {
    left: 10px;
    position: absolute;
    top: -8px;
    background-color: white;
    padding: 0px 6px;
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    padding-left: 5px;
    color: rgba(0, 0, 0, 0.382);
}

.form-input, .form-textarea {
    min-height: 30px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
    transition: border 0.3s ease-in-out;
}

.input-holder { margin-top: 15px; }

.form-textarea {
    height: 100px;
    resize: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: #F6811C;
    outline: none;
}

.error { border-color: red !important; }

.contact-success-message {
    text-align: center;
    font-size: 20px;
    color: green;
    display: none;
    font-weight: bold;
}

.button-submit-form-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

/* ===== Footer ===== */
footer {
    margin-top: 30px;
    background: linear-gradient(90deg, #F6811C 0%, #FCAB17 100%);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    padding-inline: 30px;
}

.footer-social-media-row {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 20px;
}

.footer-divider-white {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: white;
    width: 100%;
    height: 1px;
    margin-top: 10px;
}

.social-footer {
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: white !important;
    text-decoration: none;
}

/* ===== Responsive: Large screens ===== */
@media screen and (max-width: 1400px) {
    .contact-holder {
        width: 90%;
        margin-top: 100px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .contact-image {
        max-width: 300px;
        width: 300px;
    }

    .header_logo { height: 40px !important; }

    #home { height: 60vh !important; }
    .home-div-left { height: 60vh !important; }
    .home-div-right { height: 60vh !important; }

    .banner-title { font-size: 35px !important; }
    .banner-subtitle { font-size: 20px !important; }
}

/* ===== Responsive: Tablets ===== */
@media screen and (max-width: 980px) {
    .features-card-content-holder { max-height: fit-content !important; }
    .features-card-image { height: auto !important; width: 100%; }

    .footer-divider-white { margin-block: 20px; }
    footer { padding-block: 40px; }
    .footer-social-media-row { flex-direction: column !important; }
    .class-footer-grow { display: none; }

    .contact-image { max-width: 80%; width: 80%; }
    .contact-holder {
        width: auto !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
        padding-left: 30px;
        padding-right: 40px;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
    }
    .contact-column-holder-left { width: auto; }
    .contact-column-holder-right { margin-top: 40px; width: auto; }

    #subscriptions { margin-bottom: 50px !important; padding-inline: 20px; }

    .features-card-navigation-row {
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .subscriptions-cards-holder { flex-direction: column !important; width: 94vw; }
    .subscriptions-card { width: auto !important; }

    .h1-by-for { font-size: 50px !important; }
    .efficiency-subtitle { margin-bottom: 50px; }
    .efficiency-improve-business { width: 50%; }
    .efficiency-cards-holder { flex-direction: column !important; width: 94vw; }
    .effiency-card { width: auto !important; }

    .features-arrows-holder { justify-content: center; margin-top: 30px; }
    .features-content-title { text-align: center; margin-top: 50px; }
    .features-content-description { text-align: center; }
    .features-card-image { width: 90%; }
    .features-content-holder { width: 100% !important; }
    .features-image-holder { width: 100% !important; }
    .features-card-content-holder {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-nav { display: flex !important; }

    #home { padding-left: 0px !important; }
    .home-banner-wapper {
        max-height: 50vh !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner-title { font-size: 25px !important; text-align: center !important; }
    .banner-subtitle { font-size: 15px !important; text-align: center !important; }
    .banner-text-holder {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner-br { display: none; }
    .home-div-left {
        max-height: 50vh !important;
        max-width: 460px;
        width: 80% !important;
        overflow-x: hidden;
        padding: 20px;
    }
    .home-div-right { display: none !important; }
    .home-banner-wrapper { flex-direction: column !important; }

    .header-nav { display: none !important; }
    .flex-grow-header-login { display: none !important; }
    .login-button { display: none !important; }
    .header_logo { height: 50px !important; }
    .header-burger { display: flex !important; }
}

/* ===== Responsive: Small phones ===== */
@media screen and (max-width: 400px) {
    body {
        min-width: 400px;
        overflow-x: scroll !important;
    }
}
