:root {
    --color-surface: #0a0a0a; /* Card/Navbar background */
    --color-border: #141414;

    --transition-speed: 0.3s;
    --navbar-height: 70px;
    --navbar-padding: 40px;
    --container-width: 1140px;
}
/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.col-3 {
    display: inline-block;
    width: 300px;
    vertical-align: top;
}

/* Panel Styles */
.panel-dark {
    background-color: #000000;
    color: #ffffff;
    /*padding: 40px 30px;*/
    position: relative;
}

.panel-light {
    background-color: #ffffff;
    color: #1a2332;
    padding-top: 40px;
    /*padding: 40px 30px;*/
    /*border-right: 1px solid #e5e7eb;*/
}

.page-content {
    padding: 0 30px;
}

.panel-light:last-child {
    border-right: none;
}

/* Logo Section */
/*.logo-section {*/
/*    text-align: center;*/
/*    padding: 60px 20px;*/
/*}*/

.logo-text {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.logo-subtext {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.wifi-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 15px;
    margin: 20px auto;
    position: relative;
}

.tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 20px;
}

/* Typography */
h2 {
    font-size: 30px;
    /*font-weight: 700;*/
    margin: 0 0 40px 0;
    color: #1a2332;
}

.panel-dark h2 {
    color: #ffffff;
}

h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 20px 0 30px 0;
    color: #3b82f6;
}

.typewriter-inline {
    display: inline-block;
    position: relative;
}

.typewriter-caret {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #1a2332;
    margin-left: 2px;
    vertical-align: -0.1em;
    animation: typewriter-caret-blink 1s steps(1) infinite;
}


@keyframes typewriter-caret-blink {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #475569;
}

.panel-dark p {
    color: #cbd5e1;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

li {
    /*padding: 10px 0;*/
    padding-bottom: 20px;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    color: #475569;
}

.benefits li span {
    font-size: 16px;
    display: block;
    margin-top: 5px;
}

/*li::before {*/
/*    content: '✓';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    color: #3b82f6;*/
/*    font-weight: bold;*/
/*}*/

/*.problem-list li::before {*/
/*    content: '✗';*/
/*    color: #ef4444;*/
/*}*/

/* Info Boxes */
.info-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 3px solid #3b82f6;
}

.problem-box {
    background: #fff3f3;
    border-left-color: #ef4444;
}

.problem-box h3 {
    color: #ef4444;
}

.problem-box li {
    color: #991b1b;
    padding: 4px 0;
}

.solution-text {
    margin-top: 10px;
    color: #059669;
    font-weight: 600;
    font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit; 
}
a:hover {
  text-decoration: none;
}


/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    color: white;
    text-align: center;
    width: 400px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.pricing-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.price-label {
    font-size: 16px;
    margin-bottom: 5px;
}

.price-special {
    font-size: 40px;
    font-weight: 900;
    margin: 10px 0;
}

.price-normal {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.8;
}

.contract-info {
    font-size: 14px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Service Items */
.service-item {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 3px solid #3b82f6;
}

.service-item strong {
    display: block;
    color: #1a2332;
    font-size: 18px;
    margin-bottom: 3px;
}

.service-item span {
    font-size: 16px;
    color: #64748b;
}

#contact h3 {
    color: #64748b;
    margin-bottom: 10px;
}

.interventii-ul li {
    padding-bottom: 10px;
}

.panel-dark .service-item {
    background: #1a2332;
}

.panel-dark .service-item strong {
    color: white;
}

.panel-dark .service-item span {
    color: #cbd5e1;
}

/* Contact Section */
.contact-item {
    margin: 20px 0;
    font-size: 18px;
    color: #475569;
}

.contact-icon {
    display: inline-flex;
    width: 2.2em;
    height: 2.2em;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}

.bg-phone { background: #1e90ff; } 
.bg-mail  { background: #f7971d; }  
.bg-web   { background: #2ecc71; }

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #3b82f6;
    color: white !important;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin: 15px 0;
}

.cta-button:hover {
    background: #2563eb;
}

/* QR Code Placeholder */
.qr-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    border: 2px solid #3b82f6;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 11px;
    color: #64748b;
    text-align: center;
}

.horecait-img {
    max-width: 100%;
    border-radius: 24px;
}

.horecait-img-mobile {
    display: none !important;
}

.btn-contact {
    background: #0f172a;
    color: #f8fafc;
    border: none;
    border-radius: 999px;
    /* fully rounded */
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.18); */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: block;
    margin: 20px auto 40px auto;
}

.proactive {
    color: #f7971d;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #1a2332;
}

.btn-contact:hover {
    background: #111827;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.btn-contact:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

.section-content {
    /* text-align: center; */
}

.columns {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.columns .item {
    padding: 1.5625em;
    width: 48%;
    /* margin-bottom: 2.1875em; */
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero {
    padding-top: 48px;
}

.navbar {
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 16px;
    margin-top: 16px;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
    z-index: 1000;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--navbar-padding);
}

.navbar__brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.navbar__toggle {
    display: block;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar__toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-text-primary);
    transition: all var(--transition-speed) ease;
}

.navbar-btn {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.navbar-btn:hover {
    background: #f8fafc;
    color: #0b1220;
}



.navbar-logo {
  height: 48px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  max-height: 100%;
  width: auto;
  display: block;
}

.site-footer {
    background: #1c1c1c;
    color: #fff;
    text-align: center;
    min-height: 70px;          /* opțional: egal cu navbar-ul */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;        /* păstrează spațiu la ecrane mici */
    font-size: 0.95rem;
}

footer {
    padding: 40px 0 0px 0;
}

.contact-info {
    margin-top: 20px;
}



/* Responsive */
@media screen and (max-width: 768px) {

    .columns .item {
        max-width: 100%;
        width: 100%;
        padding: 0.5rem;
    }

    .panel-light {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .panel-dark {
        color: #ffffff;
    }

    .pricing-box {
        width: 100%;
    }

    p {
        font-size: 16px;
    }

    li {
        font-size: 16px;
    }

    .horecait-img-mobile {
        display: block !important;
        max-height: 100%;
        max-width: 100%;
    }

    .logo-text {
        font-size: 36px;
    }

    .logo-subtext {
        font-size: 24px;
    }
    .navbar__container {
        padding: 0 20px;
    }
   
    .page-hero {
        padding-top: 40px;
    }
    .page-hero .btn-contact {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .page-hero h2 {
        margin-top: 5px;
        margin: 0 0 20px 0;
    }
    .page-hero h5 {
        font-size: 15px;
    }
    .btn-contact { 
        padding: 16px 32px;
        font-size: 16px;
    }

    .navbar {
        width: 98%;
    }

    .navbar-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    .contact-item {
        margin: 10px 0;
    }
    .contract-info {
        font-size: 12px;
    }

    .page-hero-title {
        font-size: 28px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .site-footer {
        font-size: 0.8rem;
    }
}
