/*
  Brand palette (Lothringer):
  Dark Navy:  #050d50
  Navy:       #004489
  Blue:       #3399CC
  Cyan:       #66CCFF
  Orange:     #F7AA14
  Grey:       #323E48
*/

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    color: #323E48;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.btn:focus, .btn:active:focus, .form-control:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

header {
    background-color: #050d50;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

header .navbar-brand {
    text-decoration: none;
}

header .brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    display: block;
}

header .brand-tagline {
    font-size: 0.72rem;
    color: #F7AA14;
    display: block;
    letter-spacing: 0.02em;
}

header .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
}

header .navbar-nav .nav-link:hover {
    color: #66CCFF;
}

header .nav-cta {
    background: #F7AA14;
    color: #050d50 !important;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.35rem 1.1rem !important;
}

header .nav-cta:hover {
    background: #e69b00;
    color: #050d50 !important;
}

.pricing-section {
    background: #f4f6f8;
    padding: 4.5rem 0;
}

.pricing-section h2 {
    color: #050d50;
    font-weight: 700;
}

.pricing-card {
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    background: #fff;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #F7AA14;
    box-shadow: 0 8px 30px rgba(247, 170, 20, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 40px rgba(247, 170, 20, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #F7AA14;
    color: #050d50;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card .plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #004489;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.pricing-card .plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #050d50;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card .plan-price sup {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 0.5rem;
}

.pricing-card .plan-period {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .pricing-card .plan-name,
    .pricing-card .plan-price,
    .pricing-card .plan-period {
        text-align: center;
    }
}

.pricing-addons-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #fff;
    border: 1.5px solid #e0e6ed;
    border-left: 4px solid #3399CC;
    border-radius: 6px;
    padding: 1.1rem 1.25rem;
    font-size: 0.9rem;
    color: #323E48;
    max-width: 720px;
    margin: 2rem auto 0;
}

.pricing-addons-note i {
    font-size: 1.3rem;
    color: #3399CC;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-addons-note a {
    color: #004489;
    font-weight: 600;
    text-decoration: none;
}

.pricing-addons-note a:hover {
    text-decoration: underline;
}

.pricing-card .plan-desc {
    font-size: 0.9rem;
    color: #323E48;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.25rem;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.pricing-card .plan-features li {
    font-size: 0.9rem;
    color: #323E48;
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid #f1f3f5;
}

.pricing-card .plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .plan-features li i {
    color: #3399CC;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-card .plan-features li.unavailable {
    color: #adb5bd;
}

.pricing-card .plan-features li.unavailable i {
    color: #dee2e6;
}

.btn-plan {
    width: 100%;
    padding: 0.65rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #004489;
    color: #004489;
    background: transparent;
    transition: all 0.2s;
}

.btn-plan:hover {
    background: #004489;
    color: #fff;
}

.btn-plan-featured {
    background: #F7AA14;
    border: 2px solid #F7AA14;
    color: #050d50;
}

.btn-plan-featured:hover {
    background: #e69b00;
    border-color: #e69b00;
    color: #050d50;
}

.modal-header {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.5rem 1.75rem 1rem;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.75rem;
}

.modal-body .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #323E48;
    margin-bottom: 0.35rem;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 1.5px solid #ced4da;
    border-radius: 4px;
    font-size: 0.93rem;
    padding: 0.55rem 0.85rem;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: #3399CC;
    box-shadow: 0 0 0 0.15rem rgba(51, 153, 204, 0.2);
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.75rem;
    gap: 0.75rem;
}

.btn-submit {
    background: #F7AA14;
    border: 2px solid #F7AA14;
    color: #050d50;
    font-weight: 700;
    padding: 0.6rem 2rem;
    border-radius: 4px;
}

.btn-submit:hover {
    background: #e69b00;
    border-color: #e69b00;
    color: #050d50;
}

.alert-success-custom {
    background: #2d8a3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.93rem;
}

.alert-error-custom {
    background: #fff3cd;
    color: #050d50;
    border-left: 4px solid #F7AA14;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.93rem;
}

.site-footer {
    background: #050d50;
    color: #9aaab8;
    border-top: 3px solid #F7AA14;
    padding: 2.5rem 0;
}

.site-footer a {
    color: #66CCFF;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer .footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.site-footer .footer-tagline {
    font-size: 0.8rem;
    color: #F7AA14;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: #050d50;
    color: #fff;
    padding: 0.85rem 0;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.25);
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #66CCFF;
    text-decoration: underline;
}

.cookie-accept-btn {
    background: #F7AA14;
    color: #050d50;
    font-weight: 600;
    border: none;
}

.cookie-accept-btn:hover {
    background: #e09a0d;
    color: #050d50;
}

.page-hero {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero-lead {
    font-size: 1.05rem;
    color: #66CCFF;
    margin: 0;
    max-width: 600px;
}

.btn-outline-navy {
    border: 2px solid #004489;
    color: #004489;
    background: transparent;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.45rem 1.2rem;
    transition: all 0.2s;
}

.btn-outline-navy:hover {
    background: #004489;
    color: #fff;
}

.section-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3399CC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-intro {
    color: #323E48;
    font-size: 1.05rem;
}

/* =====================
   CTA SECTION
   ===================== */

.cta-section {
    background: linear-gradient(135deg, #004489 0%, #050d50 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section .cta-lead {
    color: #66CCFF;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #F7AA14;
    border: 3px solid #fff;
    color: #050d50;
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 1.15rem;
    border-radius: 50px;
}

.btn-cta:hover {
    background: #e69b00;
    border-color: #e0e0e0;
    color: #050d50;
}

/* =====================
   SERVICE CARDS
   ===================== */

.services-section {
    padding: 4.5rem 0;
}

.services-section h2 {
    color: #050d50;
    font-weight: 700;
}

.service-card {
    border: none;
    border-top: 4px solid #3399CC;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 6px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.service-card .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(51, 153, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #3399CC;
    flex-shrink: 0;
}

.service-card .card-title {
    font-weight: 700;
    color: #004489;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.service-card .card-text {
    color: #323E48;
    font-size: 0.93rem;
}

.service-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card .feature-list li {
    font-size: 0.88rem;
    color: #323E48;
    padding: 0.2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.service-card .feature-list li i {
    color: #3399CC;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* =====================
   WHY US SECTION
   ===================== */

.why-section {
    padding: 4.5rem 0;
}

.why-section h2 {
    color: #050d50;
    font-weight: 700;
}

.why-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.why-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #004489 0%, #050d50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 68, 137, 0.25);
}

.why-item h5 {
    color: #004489;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: #323E48;
    font-size: 0.93rem;
    margin: 0;
}

/* =====================
   AZURE HOSTING SECTION
   ===================== */

.azure-section {
    background: #f4f6f8;
    padding: 4.5rem 0;
}

.azure-section h2 {
    color: #050d50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.azure-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.azure-benefit > i {
    font-size: 1.2rem;
    color: #004489;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.azure-benefit strong {
    color: #004489;
    display: block;
    font-size: 0.93rem;
    margin-bottom: 0.15rem;
}

.azure-benefit p {
    font-size: 0.85rem;
    color: #323E48;
    margin: 0;
}

.azure-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.azure-card-header {
    background: linear-gradient(135deg, #050d50 0%, #004489 100%);
    color: #fff;
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.azure-card-body {
    background: #fff;
    padding: 1.5rem;
}

.azure-stat-row {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e6ed;
}

.azure-stat {
    flex: 1;
    text-align: center;
    padding: 0.9rem 0.5rem;
    border-right: 1px solid #e0e6ed;
}

.azure-stat:last-child {
    border-right: none;
}

.azure-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004489;
    line-height: 1;
}

.azure-stat-label {
    font-size: 0.73rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.azure-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.azure-list li {
    font-size: 0.9rem;
    color: #323E48;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #f1f3f5;
}

.azure-list li:last-child {
    border-bottom: none;
}

.azure-list li i {
    color: #3399CC;
    flex-shrink: 0;
}

.azure-note {
    font-size: 0.82rem;
    color: #6c757d;
    background: #f4f6f8;
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    margin: 0;
}
