@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --bs-primary: #0d6efd;
    --bs-dark: #212529;
    --bs-light: #f8f9fa;
    --gold: #FFD700;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #343a40;
    padding: 8px 0;
    color: white;
    font-size: 0.85rem;
}

/* --- Header --- */
.navbar {
    transition: top 0.3s;
}

.hero-section {
    position: relative;
    height: calc(100vh - 95px); /* Adjust for top-bar and navbar */
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    animation: kenburns 20s ease-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2, 2, 36, 0.8), rgba(5, 46, 101, 0.7));
}

@keyframes kenburns {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-section .btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bs-dark);
    font-weight: 700;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* --- Why Us Section --- */
#why-us {
    background-color: #fff;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.col-md-3:hover .feature-icon {
    background-color: var(--gold);
    color: var(--bs-dark);
    transform: rotate(15deg) scale(1.1);
}

/* --- Process Section --- */
.process-step {
    position: relative;
}
.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}
.process-step:hover .process-icon {
    background-color: var(--gold);
    color: var(--bs-dark);
    transform: scale(1.1);
}
.row .col-md-3:not(:last-child) .process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    transform: translateY(-50%);
}


/* --- Certificates Section --- */
#certificates {
    background-color: #fff;
}
.certificate-thumb {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.certificate-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.certificate-thumb img {
    width: 100%;
}

/* --- Services Section --- */
#services .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
#services .card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#services .card .card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
}
#services .card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    flex-grow: 1;
}
#services .card .text-primary {
    color: var(--bs-primary) !important;
    transition: color 0.3s ease;
}
#services .card:hover .text-primary {
    color: var(--gold) !important;
}

/* --- FAQ Section --- */
.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: .375rem !important;
    margin-bottom: 1rem;
}
.accordion-button {
    font-weight: 700;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-dark);
    background-color: rgba(13, 110, 253, 0.05);
}
.accordion-button:focus {
    box-shadow: none;
}

/* --- Reviews Section (Swiper) --- */
#reviews {
    background-color: #fff;
}
.swiper {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}
.review-card {
    background: var(--bs-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--bs-primary);
}
.review-card p {
    font-style: italic;
    font-size: 1.1rem;
}
.review-author {
    margin-top: 15px;
    font-weight: 700;
    color: var(--bs-dark);
}
.swiper-pagination-bullet-active {
    background-color: var(--bs-primary) !important;
}

/* --- Contact Form --- */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-form .form-control {
    padding: 12px;
    border-radius: 8px;
}
.contact-form .btn-primary {
    font-weight: 700;
    background-color: var(--bs-primary);
}
.contact-form .btn-primary:hover {
    background-color: #0b5ed7;
}
.form-check-label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* --- Location Section --- */
#location {
    background-color: #fff;
}
.contact-details p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.contact-details i {
    color: var(--bs-primary);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}
.contact-details a {
    color: var(--bs-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-details a:hover {
    color: var(--bs-primary);
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* --- Footer --- */
footer {
    background-color: var(--bs-dark);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Start hidden */
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 1050;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-right: 15px;
}

/* Modal */
.modal-content {
    background-color: transparent;
    border: none;
}
.modal-header {
    border-bottom: none;
}
.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 767px) {
    .row .col-md-3:not(:last-child) .process-step::after {
        display: none;
    }
    .process-step {
        margin-bottom: 30px;
    }
}