/* SwiftVault Protection - Custom CSS */

:root {
    --navy: #0b1b2b;
    --gold: #d4af37;
    --off-white: #f7f7f7;
    --light-gold: rgba(212, 175, 55, 0.1);
    --transition: all 0.3s ease;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-4, .display-5 {
    font-weight: 700;
}

/* Color Classes */
.bg-navy { background-color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-gold { color: var(--gold) !important; }
.text-off-white { color: var(--off-white) !important; }

/* Button Styles */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: #b8941f;
    border-color: #b8941f;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--navy);
    border-color: var(--navy);
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.btn-navy:hover {
    background-color: #1a2a3a;
    border-color: #1a2a3a;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-navy {
    border-color: var(--navy);
    color: var(--navy);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: var(--navy) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    color: rgba(255,255,255,0.9) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.dropdown-menu {
    background-color: var(--navy);
    border: 1px solid var(--gold);
}

.dropdown-item {
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.hero-carousel img {
    height: 70vh;
    min-height: 500px;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    background: rgba(11, 27, 43, 0.8);
    border-radius: 10px;
    padding: 2rem;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
}

.carousel-indicators button {
    background-color: var(--gold);
    border: 2px solid var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Cards */
.value-card {
    border: none;
    border-radius: 15px;
    transition: var(--transition);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: var(--transition);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-left: 4px solid var(--gold);
}

/* How It Works */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Testimonials */
.blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 2rem;
    font-style: italic;
}

/* FAQ */
.accordion-button {
    background-color: var(--off-white);
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--gold);
    color: var(--navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.accordion-item {
    border-color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy);
    color: white;
    padding: 15px 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-notice.show {
    transform: translateY(0);
}

/* Forms */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Hero Banners for Inner Pages */
.hero-banner {
    height: 50vh;
    min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 27, 43, 0.7);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Team Cards */
.team-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-card img {
    height: 250px;
    object-fit: cover;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.process-step:first-child::before {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel,
    .hero-carousel img {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        bottom: 10%;
        padding: 1.5rem;
    }
    
    .hero-banner {
        height: 40vh;
        min-height: 250px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel,
    .hero-carousel img {
        height: 40vh;
        min-height: 300px;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}