:root {
    --accent: #f0b429;
    --primary: #0a1f44;
    --primary-dark: #0a1f44;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --border: #e2e8f0;
    --text-muted: #6c757d;
}

.navbar-simple {
    background-color: var(--primary-dark);
}

.footer-section {
    background-color: var(--primary-dark);
    margin-top: 3rem;
}

.pricing-card.featured {
    border-top-color: var(--accent);
    background: var(--primary);
    color: var(--text-white);
}

.pricing-card.featured .price span,
.pricing-card.featured .price,
.pricing-card.featured ul li {
    color: var(--text-white);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #1a1a1a;
}
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    background-color: #d9a51f;
    border-color: #d9a51f;
    color: #1a1a1a;
}

.btn-outline-accent {
    color: #8a6d00;
    border-color: #8a6d00;
}
.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #1a1a1a;
}

.hero-badge {
    background-color: var(--accent);
    color: #1a1a1a;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

.footer-section {
    color: #ffffff;
}
.footer-section .footer-links a,
.footer-section .footer-links a i {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.footer-section .footer-links a i {
    margin-right: 5px;
}
.footer-section .footer-links a:hover {
    color: var(--accent);
}
.footer-section .footer-contact li {
    color: rgba(255, 255, 255, 0.85);
}
.footer-section h5 {
    color: #ffffff;
}

/* Contact section contrast fixes */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.contact-info-box .info-label,
.contact-info-box .info-value {
    color: #ffffff;
}
.eyebrow-light {
    color: #ffffff;
}

/* ==================== CSS Variables already in :root ==================== */

/* ==================== Layout & Sections ==================== */
.section-padding {
    padding: 5rem 0;
}
.section-padding-sm {
    padding: 3rem 0;
}
.bg-light-section {
    background-color: var(--bg-light);
}
.bg-img-section {
    background-size: cover;
    background-position: center;
}

/* ==================== Hero ==================== */
.hero-section {
    min-height: 70vh;
    padding: 6rem 0 4rem;
    background-size: cover;
}
.hero-carousel {
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-content {
    padding: 7rem 0 5rem;
}

/* ==================== Eyebrow Label ==================== */
.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* ==================== Text Accent ==================== */
.text-accent {
    color: var(--accent) !important;
}

/* ==================== Custom Card ==================== */
.card-custom {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ==================== Icon Box ==================== */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(240, 180, 41, 0.12);
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ==================== Step Number ==================== */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(240, 180, 41, 0.12);
    color: var(--accent);
    font-size: 1.5rem;
}

/* ==================== Check List ==================== */
.list-check {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #495057;
    font-size: 1.05rem;
}
.list-check li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ==================== Stats Section ==================== */
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Testimonials ==================== */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}
.testimonial-card p {
    color: #495057;
    font-style: italic;
    line-height: 1.7;
}
.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.testimonial-card .client-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}
.testimonial-card .client-position {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== Clients Marquee ==================== */
.clients-marquee {
    overflow: hidden;
    padding: 2.5rem 0;
}
.clients-marquee .container {
    max-width: none;
    padding: 0;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
    padding-right: 3rem;
}
.marquee-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.marquee-item:hover {
    opacity: 1;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== Blog Card ==================== */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.blog-image {
    background-size: cover;
    background-position: center;
    width: 100%;
}
.blog-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.blog-body p {
    color: #495057;
    margin-bottom: 1rem;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.blog-meta span i {
    margin-right: 0.3rem;
}

/* ==================== Pricing Card ==================== */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0 1.5rem;
    line-height: 1;
}
.pricing-card .price .currency {
    font-size: 1.25rem;
    vertical-align: top;
    font-weight: 600;
}
.pricing-card .price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}
.pricing-card ul li {
    padding: 0.5rem 0;
    color: #495057;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.pricing-card ul li:last-child {
    border-bottom: none;
}
.pricing-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    margin-right: 0.6rem;
    font-size: 0.85rem;
}

/* ==================== Custom Table ==================== */
.table-custom {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.table-custom thead {
    background: var(--primary);
    color: #ffffff;
}
.table-custom thead th {
    padding: 1rem 1.25rem;
    font-weight: 600;
    border: none;
}
.table-custom tbody tr {
    transition: background 0.2s ease;
}
.table-custom tbody tr:hover {
    background: var(--bg-light);
}
.table-custom tbody td {
    padding: 1rem 1.25rem;
    border-color: var(--border);
}

/* ==================== Process Timeline ==================== */
.process-timeline {
    position: relative;
    padding-left: 2rem;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    opacity: 0.3;
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--accent);
    margin-left: -6px;
}
.timeline-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.timeline-item p {
    color: #495057;
    margin: 0;
}

/* ==================== Team Card ==================== */
.team-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.team-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.team-card p {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}
.avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent);
}
.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== Gallery ==================== */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(10, 31, 68, 0.9));
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.gallery-overlay p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== Benefit Item ==================== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.benefit-item:last-child {
    border-bottom: none;
}
.benefit-item i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.benefit-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.benefit-item span {
    color: #495057;
    font-size: 0.95rem;
}

/* ==================== About Media ==================== */
.about-media {
    position: relative;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--accent);
    color: #1a1a1a;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 30px rgba(240, 180, 41, 0.4);
}
.about-experience-badge span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Hero Floating Card ==================== */
.hero-floating-card {
    border-radius: 20px;
}

/* ==================== Contact Info Box ==================== */
.contact-info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-box .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(240, 180, 41, 0.15);
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ==================== Map Wrapper ==================== */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ==================== Newsletter Form ==================== */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form .form-control {
    flex: 1;
}
.newsletter-form .btn {
    flex-shrink: 0;
}

/* ==================== Footer Details ==================== */
.footer-brand {
    margin-bottom: 1rem;
}
.footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.footer-contact li i {
    color: var(--accent);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== Social Links ==================== */
.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--accent);
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ==================== FAQ Accordion ==================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 1.25rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(240, 180, 41, 0.08);
    color: var(--primary);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}
.faq-accordion .accordion-body {
    color: #495057;
    padding: 0 1.5rem 1.25rem;
}

/* ==================== Cookie Banner ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.cookie-text i {
    font-size: 1.5rem;
    color: var(--accent);
}
.cookie-link {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.btn-cookie {
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn-cookie-accept {
    background: var(--accent);
    color: #1a1a1a;
}
.btn-cookie-accept:hover {
    background: #d9a51f;
}
.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== Notification ==================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 400px;
}
.notification.show {
    transform: translateX(0);
}
.notification-success .notification-icon {
    color: #28a745;
    font-size: 1.5rem;
}
.notification-text h6 {
    margin: 0 0 0.25rem;
    font-weight: 700;
    color: var(--primary);
}
.notification-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    opacity: 0.6;
}
.notification-close:hover {
    opacity: 1;
}

/* ==================== Legal Pages ==================== */
.page-header-alt {
    color: #ffffff;
}
.page-header-alt h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}
.page-header-alt .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.page-header-alt .breadcrumb a:hover {
    color: var(--accent);
}
.page-header-alt .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}
.page-header-alt .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}
.legal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content ul li {
    color: #495057;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.legal-contact-box {
    background: var(--bg-light);
}

/* ==================== Utility Classes ==================== */
.rounded-20 {
    border-radius: 20px !important;
}
.rounded-10 {
    border-radius: 10px !important;
}
.object-fit-cover {
    object-fit: cover;
}
.border-3 {
    border-width: 3px !important;
}
.w-md-auto {
    width: auto;
}
@media (max-width: 768px) {
    .w-md-auto {
        width: 100%;
    }
}

/* ==================== Responsive ==================== */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 50vh;
        padding: 4rem 0 2rem;
    }
    .hero-carousel {
        min-height: 400px;
    }
    .hero-content {
        padding: 4rem 0 2rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .stat-number {
        font-size: 2.25rem;
    }
    .about-experience-badge {
        font-size: 1.75rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .cookie-text {
        justify-content: center;
        text-align: center;
    }
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .legal-content {
        padding: 1.5rem;
    }
}
