/*
* AIJetConnect - Custom CSS Styles
* Colors:
* - Primary Blue: #112B4A
* - Coral Accent: #D88F7D
* - Dark Graphite: #3A3A3A
* - Milk White: #FAFAFA
* - Light Gray-Blue: #C6CBD1
* - Warm Beige: #D5CAB4
* - Light Gray-Beige: #F2F3F0
*/

/* ======= Global Styles ======= */
:root {
    --primary: #112B4A;
    --primary-light: #234466;
    --primary-dark: #091828;
    --accent: #D88F7D;
    --accent-light: #E9B3A7;
    --accent-dark: #C0765F;
    --dark: #3A3A3A;
    --light: #FAFAFA;
    --gray: #C6CBD1;
    --beige: #D5CAB4;
    --beige-light: #F2F3F0;
    --transition: all 0.3s ease;
    --skew-angle: -5deg;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-beige-light {
    background-color: var(--beige-light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-accent:hover, .btn-accent:focus {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary);
    color: white;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: white;
    color: var(--primary);
}

.btn-link {
    color: var(--primary);
    padding: 0;
    text-decoration: none;
}

.btn-link:hover, .btn-link:focus {
    color: var(--accent);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Custom Classes */
.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skewed-bg {
    position: relative;
    overflow: hidden;
}

.skewed-bg:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: skewY(var(--skew-angle));
    transform-origin: 0;
    background: inherit;
    z-index: -1;
}

.overlay {
    position: relative;
}

.overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 43, 74, 0.8);
    z-index: 0;
}

.overlay > * {
    position: relative;
    z-index: 1;
}

.shadow-custom {
    box-shadow: 0 15px 30px rgba(17, 43, 74, 0.1);
}

/* ======= Cookie Consent Banner ======= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    margin-right: 20px;
}

.cookie-text h5 {
    color: white;
    margin-bottom: 10px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ======= Top Bar ======= */
.top-bar {
    background-color: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icon {
    color: white;
    font-size: 16px;
    margin-left: 15px;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* ======= Header ======= */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.nav-item {
    margin: 0 5px;
    position: relative;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover:before, .nav-link.active:before {
    width: 70%;
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--beige-light);
    color: var(--primary);
}

.header-cta {
    margin-left: 20px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ======= Hero Section ======= */
.hero {
    position: relative;
    background-color: var(--primary);
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--accent);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* ======= Services Section ======= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--beige-light);
    color: var(--primary);
    font-size: 28px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-title:after {
    width: 60px;
}

.service-description {
    margin-bottom: 20px;
    color: var(--dark);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ======= About Section ======= */
.about-img {
    position: relative;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50%;
    height: 50%;
    border: 5px solid var(--accent);
    border-right: none;
    border-bottom: none;
    z-index: -1;
}

.about-content {
    padding: 30px 0;
}

.about-title {
    margin-bottom: 20px;
}

.about-description {
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 20px;
}

/* ======= Testimonials Section ======= */
.testimonials {
    background-color: var(--beige-light);
    padding: 100px 0;
}

.testimonial-slider {
    padding: 40px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-family: serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--accent);
    opacity: 0.2;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-position {
    font-size: 14px;
    color: var(--gray);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent);
    opacity: 1;
}

/* ======= Process Section ======= */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gray);
    z-index: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: white;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background-color: var(--accent);
    color: white;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: var(--dark);
}

/* ======= Stats Section ======= */
.stats {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======= CTA Section ======= */
.cta {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ======= Clients Section ======= */
.clients {
    padding: 80px 0;
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ======= Team Section ======= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(17, 43, 74, 0.8);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transition: var(--transition);
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--dark);
}

/* ======= FAQ Section ======= */
.faq-accordion {
    margin-top: 50px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    color: var(--primary);
    background-color: white;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23112B4A' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D88F7D' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 20px 30px;
    color: var(--dark);
}

/* ======= Contact Section ======= */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--beige-light);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background-color: var(--primary);
    color: white;
}

.contact-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-text {
    margin-bottom: 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(17, 43, 74, 0.25);
}

.form-select {
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(17, 43, 74, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* ======= Footer ======= */
.site-footer {
    background-color: var(--primary);
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
}

.footer-social .social-icon:hover {
    background-color: var(--accent);
    color: white;
}

.footer-heading {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 10px;
    margin-top: 5px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-5px);
}

/* ======= Legal Pages ======= */
.legal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.legal-updated {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    margin-bottom: 15px;
}

/* ======= Custom Tabs ======= */
.custom-tabs {
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 2px solid var(--gray);
    margin-bottom: 30px;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    border-bottom: 2px solid var(--accent);
}

.tab-content > .tab-pane {
    padding: 15px 0;
}

/* ======= Custom Animation Effects ======= */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

.hover-float:hover {
    animation: float 3s ease-in-out infinite;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ======= Media Queries ======= */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .navbar-nav {
        margin: 0;
    }
    
    .header-cta {
        margin: 15px 0 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link:before {
        display: none;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
        width: 100%;
        flex: none;
    }
    
    .about-img:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
    }
    
    .btn-lg {
        padding: 12px 30px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
}