/* =============================================
   Fribourg Express - Modern Light Theme
   Primary: #ed4c21   |   Secondary: #13151a
   All values in CSS variables
   ============================================= */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

 @font-face {
     font-family: 'Roboto Condensed';
     font-style: normal;
     font-weight: 700;
     font-display: swap;
     src: url(ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xw.woff2) format('woff2');
     unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
 }

:root {
    /* ==================== COLORS ==================== */
    --primary: #ed4c21;
    --primary-dark: rgb(212, 62, 21);
    --secondary: #00142C;
    --secondary-dark: #000f24;
    --background: #ffffff;
    --surface: #f8f9fa;
    --surface-dark: #ededed;
    --text: #13151a;
    --text-muted: #555555;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: rgba(19, 21, 26, 0.08);

    /* ==================== TYPOGRAPHY ==================== */
    --font-heading: 'Roboto Condensed', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* ==================== SIZES & SPACING ==================== */
    --section-padding: 80px;
    --border-radius: 12px;
    --shadow-sm: 0 4px 15px var(--shadow);
    --shadow-md: 0 10px 30px var(--shadow);
    --shadow-lg: 0 20px 50px var(--shadow);
}

/* ==================== GENERAL ==================== */
body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.lt {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: calc(1.5rem + 0.5vw);
    vertical-align: middle;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 14px;
}

.scrolled .lt {
    transform-origin: left;
    transform: scale(0);
}

/* Navbar */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.navbar .nav-link {
    color: var(--text);
     
    transition: color 0.3s ease;
     
}

/* Preheader */
.preheader {
    background: var(--secondary);
    color: #ddd;
    border-bottom: 1px solid #222;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(255, 255, 255, .75), rgba(19, 21, 26, 0.75)),
        url('hero.webp') center/cover no-repeat;
    min-height:60vh;
    display: flex;
    align-items: center;
    color: white;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    color: var(--secondary);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

/* Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {

    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.btn{
    transition: all 0.4s ease;
    padding: 10px 20px;
}
/* Price Cards */
.price-card {
    background: var(--white);
}
.btn-primary {
    background: var(--secondary);
    border: none;
    font-weight: 600;
    font-family: var(--font-heading);
    color: white;
   
}

.btn-primary:hover {
    background: var(--secondary-dark);
transform: translateY(-2px);
}
/* Buttons */
.btn-danger {
    background: var(--primary);
    border: none;
    font-weight: 600;
    font-family: var(--font-heading);
    color: white;
    
}

.btn-danger:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form inputs */
.form-control,
.form-select {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
    font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(237, 76, 33, 0.25);
}

/* Accent */
.accent-red {
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--secondary);
    color: #ddd;
    border-top: 1px solid #222;
}

/* Utilities */
.lead {
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        min-height: 90vh;
    }

    .section-title:after {
        width: 50px;
    }
}

.nav-link {
     
    font-size: 1.1rem;

    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;

}

.nav-item {
    padding: .5rem .2rem;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

 

.top-link {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--background);
    display: inline-block;
}

.top-link:hover {
    color: var(--primary);
}

.toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary) !important;
    color: var(--primary);
    padding: 10px 20px;
    font-size: 1.6rem;
    cursor: pointer;
    transform: scaleY(0);
    transition: transform 0.5s;
    z-index: 9999;
}

.controls {
    position: fixed;
   display: flex;
   flex-direction: column;
   gap:  10px;
    bottom: 90px;
    right: 20px;
}

.toggleModal {
    padding: 10px 20px;
    font-size: 1.6rem;
    background-color: var(--primary) !important;
    border:none!important;
    border-radius: 0px!important;
}

.show-ttop {
    transform: scaleY(1);

}

.grecaptcha-badge {
    visibility: hidden !important;
    display: none !important;
}

.recaptcha a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: var(--background);
    color: var(--secondary);
    text-align: center;
    padding-top: 15%;
    display: block;
}

.text-primary {
    color: var(--primary-dark) !important;
}

.active {
    color: var(--primary) !important;
}
.bg-dark {
    background-color: var(--secondary) !important;
}
main{
    min-height: 60vh!important;
}
.bg-danger{
    background-color: var(--primary) !important;
}
.bg-primary{
    background-color: var(--primary) !important;
}
.deliveryForm .col-md-6, .deliveryForm .col-12 {
    margin-top:.5rem;
}