
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Saira+Stencil+One&display=swap');
/* Color Variables */
:root {
    --navy: #0A1A3A;
    --black: #000000;
    --gold: #FFD700;
    --red: #C00C00;
    --light: #F8F9FA;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--light);
    background-color: var(--navy);
    margin: 0;
    padding: 0;
}


/* Top Bar Styles */
.top-bar {
    background-color: var(--black);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar a i {
    margin-right: 5px;
    color: var(--gold);
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black) !important;
}

/* Navbar Styles */
.navbar {
    background-color: var(--navy) !important;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.btn-outline-warning {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-warning:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }
    
    .navbar-collapse {
        background: var(--navy);
        padding: 20px;
        margin-top: 10px;
        border-radius: 5px;
    }
    
    .nav-item {
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--navy) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/noise-texture.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--gold);
    display: block;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 80%;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta {
    background-color: var(--red);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #a00909;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.image-wrapper img {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-down a {
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding: 80px 0;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-title span {
        font-size: 2rem;
    }
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-image {
        margin-top: 50px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #0c0e15;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/texture-dark.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #121826 0%, #0a0e1a 100%);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: white;
}

.service-link:hover i {
    transform: translateX(5px);
}

.hover-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .hover-effect {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 25px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #0a0e17;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,26,58,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .main-image {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--black);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.years {
    font-size: 2.2rem;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/diagonal-pattern.png') repeat;
    opacity: 0.15;
    z-index: 1;
}

.section-header.left-aligned {
    text-align: left;
    margin-bottom: 40px;
}

.section-header.left-aligned .section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-header.left-aligned .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.section-header.left-aligned .section-title span {
    color: var(--gold);
}

.about-content .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.about-features li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.gold-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
}

.about-features h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-features p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.signature-block {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.signature {
    height: 50px;
    margin-right: 20px;
    filter: invert(80%) sepia(39%) saturate(427%) hue-rotate(360deg) brightness(105%) contrast(104%);
}

.director-info h6 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.director-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Counter */
.stats-counter {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(10,26,58,0.5) 0%, rgba(0,0,0,0.3) 100%);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.1);
}

.stats-counter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/grid-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter-item .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.counter-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, rgba(10,26,58,0.8) 0%, rgba(0,0,0,0) 100%);
    }
    
    .section-header.left-aligned {
        text-align: center;
        margin-top: 40px;
    }
    
    .about-content .lead {
        text-align: center;
    }
    
    .signature-block {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .counter-item .counter {
        font-size: 2rem;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background-color: #0c0f18;
    background-image: url('../assets/crime-scene-tape-pattern.png');
    background-size: 300px;
    background-blend-mode: overlay;
    background-opacity: 0.03;
    position: relative;
}

.case-card {
    background: linear-gradient(145deg, #121826 0%, #0a0e1a 100%);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,215,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,215,0,0.3);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-content {
    padding: 25px;
    flex-grow: 1;
}

.case-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.case-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.case-meta span {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.case-meta i {
    margin-right: 5px;
    color: var(--gold);
    font-size: 0.9rem;
}

.case-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.client-quote {
    background: rgba(10,26,58,0.7);
    padding: 20px;
    border-top: 1px solid rgba(255,215,0,0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 24px;
    height: 24px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.8rem;
}

.client-quote p {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.client-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.confidential-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.confidential-note i {
    color: var(--gold);
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-card {
        margin-bottom: 30px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0 50px;
    background-color: #0a0e17;
    background-image: url('../assets/contact-bg-pattern.png');
    background-size: cover;
    position: relative;
}

.contact-info-card {
    background: linear-gradient(145deg, #121826 0%, #0a0e1a 100%);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    border: 1px solid rgba(255,215,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-info-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(10,26,58,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 3px;
}

.contact-details a:hover {
    color: white;
    text-decoration: underline;
}

.contact-details address {
    color: rgba(255,255,255,0.8);
    font-style: normal;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details small {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    display: block;
}

.contact-notes {
    margin-top: 40px;
}

.note-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(10,26,58,0.3);
    border-radius: 5px;
    border-left: 3px solid var(--gold);
}

.note-box i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.note-box p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form */
/* Contact Form Input Styling Overrides */
.contact-form .form-control,
.contact-form .form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 15px !important;
    -webkit-text-fill-color: white !important;
    box-shadow: none !important;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--gold) !important;
    color: white !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.1) !important;
}

/* Remove black background and white text from autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(18, 24, 38, 0.8) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Placeholder styling */
.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}

/* Floating label styling */
.contact-form .form-floating > label {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.5rem 0.75rem !important;
    background: transparent !important;
}

.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-select ~ label {
    color: var(--gold) !important;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem) !important;
    background: transparent !important;
    padding: 0 0.25rem !important;
}

/* Select dropdown styling */
.contact-form .form-select option {
    background: #121826;
    color: white;
}

/* Remove the black background and white text rules that were causing issues */
input {
    background-color: transparent !important;
    color: white !important;
}


/* Map Container */
.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,215,0,0.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.map-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--navy);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    z-index: 2;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-label i {
    color: var(--gold);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 30px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  --gold: #FFD700;
  --red: #C00C00;
  --navy: #0A1A3A;
  --black: #000000;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  padding: clamp(3rem, 5vw, 6rem) 0;
  background: 
    linear-gradient(135deg, #0c0f18 0%, #070a12 100%),
    url('../assets/security-pattern.png') center/300px;
  background-blend-mode: overlay;
  position: relative;
}

/* Container Shadow Effect */
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, rgba(255,215,0,0.05) 0%, transparent 40%);
}

/* === Accordion === */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0.5rem;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1.25rem;
  --bs-accordion-active-color: var(--gold);
}

.accordion-item {
  background: linear-gradient(145deg, rgba(18,24,38,0.8) 0%, rgba(10,14,26,0.9) 100%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,215,0,0.15) !important;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: rgba(255,215,0,0.3) !important;
}

.accordion-button {
  background-color: transparent !important;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  box-shadow: none !important;
  gap: 1rem;
}

.accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(255,215,0,0.1);
  color: var(--gold);
}

.accordion-button::after {
  background-size: 1.1rem;
  transition: var(--transition);
}

.accordion-button i {
  font-size: 1.1em;
  min-width: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.accordion-button:not(.collapsed) i {
  transform: rotate(360deg);
}

.accordion-body {
  padding: 1.25rem 1.5rem 1.5rem 4rem;
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.accordion-body ul {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.accordion-body li {
  margin-bottom: 0.5rem;
  position: relative;
}

.accordion-body li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.65em;
  width: 0.4em;
  height: 0.4em;
  background: var(--gold);
  border-radius: 50%;
}

/* === Security Badges === */
.confidentiality-badges {
  background: linear-gradient(145deg, rgba(18,24,38,0.9) 0%, rgba(10,14,26,0.95) 100%);
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
  padding: 2rem;
  height: 100%;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.confidentiality-badges::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 70%);
}

.badges-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  position: relative;
}

.badges-title i {
  font-size: 1.5em;
  color: var(--gold);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.badge-item {
  background: rgba(10,26,58,0.4);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1rem;
  border-radius: 0.25rem;
  transition: var(--transition);
}

.badge-item:hover {
  background: rgba(10,26,58,0.7);
  transform: translateY(-3px);
}

.badge-icon {
  width: 10rem;
  height: 8rem;
  background: rgba(255,215,0,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.badge-item h4 {
  color: white;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.badge-item p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  margin: 0;
  line-height: 1.5;
}

/* === Emergency CTA === */
.emergency-cta {
  background: linear-gradient(135deg, rgba(192,12,0,0.15) 0%, rgba(10,26,58,0.7) 100%);
  border: 1px solid rgba(255,0,0,0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/alert-pattern.png') center/300px;
  opacity: 0.1;
}

.emergency-content {
  position: relative;
  z-index: 1;
}

.emergency-cta h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.emergency-cta i {
  color: var(--red);
  font-size: 1.2em;
}

.emergency-cta p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  margin-bottom: 1.5rem;
}

.btn-danger {
  --btn-red: #{rgba(192,12,0,0.9)};
  background: var(--btn-red);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-danger:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-danger::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 45%,
    rgba(255,255,255,0.15) 50%,
    transparent 55%
  );
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-danger:hover::after {
  transform: translateY(-50%) rotate(15deg);
}

/* === Responsive Adjustments === */
@media (max-width: 992px) {
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .confidentiality-badges {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .badge-grid {
    grid-template-columns: 1fr;
  }
  
  .emergency-cta {
    padding: 1.5rem;
  }
}

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e17 0%, #070a12 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/dna-pattern.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

/* Interactive Graphic */
.interactive-graphic {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-base {
    position: relative;
    width: 300px;
    height: 300px;
}

.why-us-section .badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateOrbit linear infinite;
}

.orbit-1 {
    width: 150px;
    height: 150px;
    animation-duration: 40s;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    animation-duration: 60s;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    animation-duration: 80s;
}

.orbit-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #121826 0%, #0a0e1a 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.orbit-item:hover {
    transform: scale(1.2);
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 15px var(--gold);
}

.tooltip-display {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(10, 26, 58, 0.7);
    border-radius: 8px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(18, 24, 38, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.feature-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.badge-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.badge-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .interactive-graphic {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .graphic-base {
        width: 250px;
        height: 250px;
    }
    
    .orbit-1 { width: 120px; height: 120px; }
    .orbit-2 { width: 180px; height: 180px; }
    .orbit-3 { width: 250px; height: 250px; }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, #0a0e17 0%, #070a12 100%);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    position: relative;
    border-top: 1px solid rgba(255,215,0,0.1);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/footer-pattern.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact address,
.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,0.7);
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom {
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: white;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-title {
        margin-bottom: 15px;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* WhatsApp Button Styles */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* WhatsApp brand color */
  color: white;
  border-radius: 50%;
  font-size: 28px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-btn:hover {
  background-color: #128C7E; /* Darker WhatsApp color */
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Tooltip Specific Styles */
.whatsapp-tooltip-container .custom-tooltip {
  background: linear-gradient(135deg, #0A1A3A 0%, #000000 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  position: fixed;
  z-index: 101;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  width: max-content;
  max-width: 200px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip-container .custom-tooltip::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #0A1A3A;
}

/* Tooltip Position Adjustments */
.whatsapp-tooltip-container[data-tooltip-position="left"] .custom-tooltip {
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}

.whatsapp-tooltip-container[data-tooltip-position="left"] .custom-tooltip::before {
  right: -8px;
  left: auto;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #0A1A3A;
}

/* Animation States */
.whatsapp-tooltip-container:hover .custom-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip-container .custom-tooltip {
    font-size: 0.8rem;
    max-width: 160px;
  }
}

