/* ===================================
    Crafto - Seo agency
====================================== */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* variable */
:root {      
    --alt-font: 'Urbanist', sans-serif;
    --primary-font: 'Atkinson Hyperlegible', sans-serif;
    --base-color: #4c46c0;
    --dark-gray: #2a2b3f;
    --medium-gray: #797a8c;
}   
/* reset */
body{
    font-size: 17px;
    line-height: 30px; 
}
.placeholder-medium-gray::-webkit-input-placeholder {
    color: var(--white) !important;
    text-overflow: ellipsis;
    opacity:0.3;
}
.placeholder-medium-gray::-moz-placeholder {
    color: var(--white) !important;
    text-overflow: ellipsis;
    opacity:0.3;
}
.placeholder-medium-gray:-ms-input-placeholder {
    color: var(--white) !important;
    text-overflow: ellipsis;
    opacity:0.3;
}
/* bg color */
.bg-sea-buckthorn {
    background-color: #ec954d;
}
/* bg transparent color */
.bg-dark-gray-transparent {
    background-color: rgba(42, 43, 63,.8);
}
/* bg gradient color */
.bg-gradient-chablis-red-quartz-white {
    background-image: linear-gradient(to right, #fce7e1, #fce7e1, #efe2ea, #dcdaf5, #dcdaf5);
}
.bg-gradient-top-very-light-gray {
    background-image: linear-gradient(to top, #f4f7fd, #f4f7fd, #f9fbff, #f9fbff, #ffffff);
}
/* text gradient color */
.text-gradient-orange-sky-blue {
    background-image: linear-gradient(to right, #f36b4a, #c26772, #6256c8, #6256c8, #6256c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* btn */
.btn {
    font-weight: 600;
}
.btn-gradient-orange-sky-blue {
    background-image: linear-gradient(to right, #66ea64, #80276b, #66ea64);
    background-size: 200% auto;
    color: var(--white);
}
/* heading */
h1 {
    line-height: 4.375rem;
}
h2 {
    line-height: 3.438rem;
}
h3 {
    line-height: 2.813rem;
}
h4 {
    line-height: 2.375rem;
}
h5 {
    line-height: 2rem;
}
h6 {
    line-height: 1.75rem;
}
/* opacity */
.opacity-05 {
    opacity: .05;
}
/* header */
/* header .navbar-brand img {
    max-height: 30px;
} */
header .btn.btn-rounded.btn-very-small{
    font-size: 12px;
    font-weight: 600;
    padding: 8px 25px;
}
.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 18px;
}
header .left-nav .navbar-nav:before {
    background: rgba(0,0,0,.3); 
}
/* footer */
footer .nav-link {
    color: var(--dark-gray);  
}
.nav-link {
    padding: 0.5rem 1.5rem;
}
footer.half-footer {
    padding: 40px 0 40px 0;
}
footer .elements-social ul li:last-child {
    margin-right: 0;
}
/* page title */
.page-title-large h1 {
    font-size: 3.8rem;
    line-height: 4.2rem;
}
.page-title-large h2 {
    font-size: 20px;
    line-height: 30px;
}
/* media query responsive */
@media (max-width: 991px) {
    .tab-style-04 .nav-tabs .nav-item {
        padding: 0 20px;
    }
    .process-step-style-02 .progress-step-separator {
        display: block;
    }
    footer .nav-link {
        padding: 0.5rem 1rem; 
    }
}
@media (max-width: 768px) {
    .tab-style-04 .nav-tabs .nav-item {
        padding: 0 10px;
    }
}
@media (max-width: 575px) {
    .process-step-style-02 .progress-step-separator {
        display: none;
    }
    .background-position-center-bottom {
        background-position: center bottom -1px !important;
    }
}


/* Custom CSS for LuziCargo Website */

/* Form styling improvements */
.form-control {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: transparent !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4c46c0 !important;
    box-shadow: 0 0 0 0.2rem rgba(76, 70, 192, 0.25) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Button hover effects */
.btn-gradient-orange-sky-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
}

.btn-box-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Video styling */
video {
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    max-width: 100%;
    height: auto;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Section spacing adjustments */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Alert styling */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* Visually hidden class for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation enhancements */
.animation-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive improvements */
@media (max-width: 991px) {
    .text-center.text-md-start {
        text-align: center !important;
    }
    
    .ps-8 {
        padding-left: 0 !important;
    }
    
    .w-70 {
        width: 100% !important;
    }
    
    .w-80 {
        width: 100% !important;
    }
}

/* Loading spinner for form submission */
.btn-loading span {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}