:root {
    /* Orange color palette */
    --primary-color: #FFA500;
    --secondary-color: #FFB74D;
    --dark-color: #000000;

    /* Neutral colors */
    --dark-gray: #333333;
    --light-orange: #ffce87;
    --light-color: #FFFFFF;

    /* Accent color */
    --accent-color: #4CAF50;
}

.rotating-element {
    animation: rotate 35s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 240, 217, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 5px 0;
}

.nav-link {
    font-weight: 500;
    position: relative;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.vcenter {
    margin: auto;
}

.hero-section {
    height: 100vh;
    margin: auto;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content h1 strong {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-content .pizza {
    width: 150%;
    float: right;
    margin-top: 30%;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: var(--light-color);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--light-color);
}

.btn-secondary-custom {
    margin-left: 1rem;
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--light-color);
}

.bg-orange {
    background-color: var(--primary-color);
}

.pizza {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

input[data-lang='rtl'] {
    direction: rtl;
}

input[data-lang='ltr'] {
    direction: ltr;
}

textarea[data-lang='rtl'] {
    direction: rtl;
}

textarea[data-lang='ltr'] {
    direction: ltr;
}


/* Services Section */
.section-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: var(--dark-color);
    bottom: -10px;
    left: 25%;
}

.section-secondary-title {
    color: var(--light-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-secondary-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: var(--light-color);
    bottom: -10px;
    left: 25%;
}

.smooth-bigger {
    transition: transform 0.5s ease;
    width: 750px;
    float: none;
}

.smooth-bigger-video {
    cursor: pointer;
    transition: transform 0.5s ease;
    float: none;
}

.smooth-bigger-video:hover {
    transform: scale(1.05);
}

.smooth-bigger:hover {
    transform: scale(1.05);
}

/* Additional styles for tabs */
.pricing-tabs {
    margin-bottom: 30px;
}

.pricing-tabs .nav-tabs {
    justify-content: space-around;
    margin-bottom: 30px;
    background: var(--light-orange);
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px #cda56d;
}

.pricing-tabs .nav-tabs .nav-link {
    border-radius: 30px;
    margin: 0 5px;
    padding: 10px 25px;
    color: var(--dark-gray) !important;
    border: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-tabs .nav-tabs .nav-link.active {
    background-color: var(--light-color);
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px #cda56d;
    color: white;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 1s;
    border: none;
    height: 100%;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-header {
    color: var(--dark-color);
/*    padding: 2rem 1rem;*/
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.system {
    background: url("../imgs/bg.png");
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100vh;
    margin: auto;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.green-title {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.green-title:after {
    content: '';
    position: absolute;
    width: 120%;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: -10%;
}

.contact-section {
    background: url("../imgs/Landing-Page.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
    padding-bottom: 12rem;
    padding-top: 3rem;
}

.contact-section p {
    color: var(--accent-color);
    margin-bottom: 0px;
}

.contact-section button {
    background-color: var(--accent-color);
    border-radius: 5px;
}

#contactForm {
    margin-top: 1rem;
}

.form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

.feild {
    margin-bottom: -1rem;
}


/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 47%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--light-color) !important;
}

.copyright {
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: aliceblue;
    max-width: 100% !important;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
/*    opacity: 0;*/
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .hero-content .pizza {
        width: 100%;
        float: none;
        margin-top: 0px;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-tabs .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
    }

    .section-title,
    .section-secondary-title,
    .green-title {
        font-size: 2rem;
    }
}

/* Floating elements */
.floating-element {
    animation: floatElement 8s ease-in-out infinite;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



/* ===== RESPONSIVE ENHANCEMENTS ===== */

/* Mobile First Responsive Base */
@media (max-width: 768px) {

    /* Navigation */
    .navbar-collapse {
        background-color: rgba(255, 240, 217, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        text-align: center;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-brand img {
        max-height: 40px;
        width: auto;
    }

    /* Hero Section */
    .hero-section {
        padding: 100px 0 50px;
        text-align: center;
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-content .pizza {
        width: 100%;
        max-width: 300px;
        float: none;
        margin: 2rem auto 0;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        margin: 0;
        width: 200px;
    }

    /* Services Section */
    #services {
        padding: 3rem 0;
    }

    /* Pricing Section */
    .pricing-tabs .nav-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .pricing-tabs .nav-tabs .nav-link {
        margin: auto;
        text-align: center;
    }

    .pricing-tabs .nav-tabs .nav-link::after {
        background-color: transparent;
    }

    .pricing-tabs .nav-tabs .nav-link.active {
        background-color: var(--light-color);
        border-radius: 5px;
        box-shadow: 0px 0px 15px 0px #cda56d;
        color: white;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    /* System Section */
    .system {
        height: auto;
        min-height: 50vh;
        padding: 3rem 0;
        text-align: center;
    }

    .system img {
        width: 100% !important;
        max-width: 250px;
        float: none !important;
        margin: 2rem auto 0;
    }

    .green-title {
        text-align: center;
        font-size: 2rem;
    }

    .green-title:after {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }

    /* Contact Section */
    .contact-section {
        padding: 3rem 0 8rem;
        background-size: cover;
    }

    .feild {
        width: 100%;
        margin: auto;
    }

    /* Footer */
    footer .col-md-3 {
        text-align: center;
        margin-bottom: 2rem;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer .d-flex {
        justify-content: center;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        border-radius: 5px !important;
        margin-top: 0.5rem;
    }

    /* Copyright */
/*    .copyright {
        margin: 1rem auto;
    }*/
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .pizza {
        width: 120%;
        margin-top: 20%;
    }

    .system {
        height: 70vh;
    }

    .pricing-tabs .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title,
    .section-secondary-title,
    .green-title {
        font-size: 1.8rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-features {
        font-size: 0.9rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 30px;
        min-height: auto;
    }

    .system {
        height: auto;
        padding: 2rem 0;
    }

    .navbar {
        position: relative;
    }
}

/* Large Desktop Enhancements */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .system {
        background-size: contain;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .btn-primary-custom:hover,
    .btn-secondary-custom:hover,
    .pricing-card:hover {
        transform: none;
    }

    .smooth-bigger:hover {
        transform: none;
    }

    .smooth-bigger-video:hover {
        transform: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .floating-element,
    .pizza,
    .rotating-element,
    .smooth-bigger {
        animation: none;
        transition: none;
    }

    .smooth-bigger-video {
        animation: none;
        transition: none;
    }
}

/* Bootstrap Grid Fixes for Mobile */
@media (max-width: 768px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col-md-4,
    .col-md-6,
    .col-lg-8,
    .col-lg-4 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Form Element Responsive Fixes */
@media (max-width: 768px) {
    .form-control {
        font-size: 16px;
        margin-bottom: 0rem;
        /* Prevents iOS zoom */
    }

    .feild p {
        margin-bottom: 0rem;
    }

    button.btn.btn-primary-custom.w-100 {
/*        width: 60% !important;*/
        margin: auto;
        margin-left: 20%;
    }
}

/* Back to Top Button Mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Pricing Cards Mobile Optimization */
@media (max-width: 768px) {
    .pricing-card .card-body {
        padding: 1.5rem !important;
    }

    .pricing-card img {
        max-width: 100%;
        margin: 1rem auto;
    }
}

/* Navigation Scroll Behavior Mobile */
@media (max-width: 768px) {
    .navbar.scrolled {
        padding: 0.25rem 0;
    }
}

/* Contact Form Mobile */
@media (max-width: 768px) {
    #contactForm {
        width: 75%;
        margin: auto;
    }

    button.btn.btn-primary-custom.w-100 {
/*        width: 100% !important;*/
        margin: auto;
        margin-left: 20%;
    }

    input.form-control {
/*        width: 60% !important;*/
        /*        width: 50% !important;*/
        border-radius: 5px !important;
        margin: auto;
    }

    button.btn.btn-primary-custom {
        width: 50%;
        margin: auto  !important;
        margin-top: 10px  !important;
    }
}

.services-container { 
   max-width: 720px;
}

.svg-orange {
    filter: invert(48%) sepia(95%) saturate(3200%) hue-rotate(6deg) brightness(102%) contrast(105%);
}

.svg-icon {
    width:17px;
    height:22px;
}

.svg-internal-icon {
    width: 32px;
    height: 32px;
}

.pos-svg-logo {
    width: 32px;
    height: 32px;
}

.svg-logo {
    width: 24px;
    height: 24px;
}