/* OxyCloud Universal Stylesheet */
/* Version: 2.0 */
/* Last Updated: 2026 */

/* ==================== CSS Variables ==================== */
:root {
    /* Primary Colors */
    --primary-color: #4F46E5;
    --secondary-color: #1E40AF;
    --accent-color: #F59E0B;

    /* Text Colors */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-color: #475569;
    --dark-color: #1E293B;

    /* Background Colors */
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --light-color: #F8FAFC;

    /* Border Colors */
    --border-color: #E5E7EB;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #1E40AF 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);

    /* Transitions & Animations */
    --transition-base: all 0.3s ease;

    /* Border Radius */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-full: 50px;
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* ==================== Loader Styles ==================== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: opacity 1s ease, visibility 1s ease;
}

.loader-content {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ==================== Header Styles ==================== */
header,
.products-header {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before,
.products-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

header h1,
.products-header h1,
.products-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

header p,
.products-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

/* ==================== Navigation Styles ==================== */
nav {
    background: var(--bg-white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.navbar-expand-lg .navbar-nav {
    column-gap: 15px;
}



/* GRID MENU BASE STYLE */
.custom-grid-menu {
    display: none;
    /* Hidden by default */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    background: #fff;
    padding: 15px !important;
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: -90px;
    z-index: 999;
    width: 600px;
}

/* RESPONSIVE WIDTH */
@media (max-width: 992px) {
    .custom-grid-menu {
        position: static;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* GRID ITEMS */
.custom-grid-menu .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px !important;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
    border: 1px solid transparent;
}

/* ICON STYLE */
.custom-grid-menu .dropdown-item i {
    font-size: 1.1em;
    width: 24px;
    text-align: center;
    margin-right: 12px !important;
    color: #06A3DA !important;
    /* theme color */
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.custom-grid-menu .dropdown-item:hover {
    background-color: #06A3DA !important;
    color: #fff !important;
    transform: translateY(-2px);
    border-color: #06A3DA !important;
}

.custom-grid-menu .dropdown-item:hover .custom-grid-menu .dropdown-item.active {
    background-color: #06A3DA !important;
    transform: translateY(-2px);
    border-color: #06A3DA !important;
}

.custom-grid-menu .dropdown-item:hover i {
    color: #fff !important;
}

.custom-grid-menu .dropdown-item:hover i {
    color: #fff !important;
}

/* SHOW ON HOVER (desktop) */
.nav-item.dropdown:hover .custom-grid-menu {
    display: grid;
}

/* SHOW ON CLICK (Bootstrap mobile behavior) */
.nav-item.dropdown.show .custom-grid-menu {
    display: grid;
}

.custom-grid-menu .dropdown-item.active {
    background-color: #06A3DA !important;
    color: #fff !important;
}

.custom-grid-menu .dropdown-item.active i {
    background-color: #06A3DA !important;
    color: #fff !important;
}

/* ==================== Container and Section Styles ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* ==================== Card Styles ==================== */
.tool-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tool-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tool-card h2 i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.tool-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==================== Hero Section ==================== */
.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ==================== Features Grid ==================== */
.features-grid,
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ==================== Benefits Section ==================== */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

/* ==================== Details/Summary Styles ==================== */
details {
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

summary {
    font-weight: bold;
    cursor: pointer;
    padding: 1rem;
    background: var(--light-color);
    transition: var(--transition-base);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary:hover {
    background: #F3F4F6;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details ul {
    padding: 1rem 1rem 1rem 2.5rem;
}

details li {
    margin-bottom: 0.5rem;
}

/* ==================== CTA Button Styles ==================== */
.cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    align-self: flex-start;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ==================== Back Link Styles ==================== */
.back-link {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.back-link:hover {
    color: var(--secondary-color);
}

/* ==================== Testimonials Styles ==================== */
.testimonial {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ==================== Category Section ==================== */
.category-section {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    margin-bottom: 40px;
}

.category-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.category-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== Category Tabs ==================== */
.category-tabs {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-tabs .nav-pills {
    justify-content: center;
}

.category-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
}

.category-tabs .nav-link:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.category-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* ==================== Filter Buttons ==================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==================== Search Bar ==================== */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-container button:hover {
    background-color: var(--secondary-color);
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-section h2::after {
    background: white;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    margin: 0 10px;
    transition: var(--transition-base);
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-outline-light {
    border-color: white;
    color: white;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== Footer Styles ==================== */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-section a:hover {
    color: var(--accent-color);
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    /* Allows sections to wrap on smaller screens */
    justify-content: space-between;
}

.footer-section {
    flex-basis: 22%;
    /* Base width for each section */
    margin-bottom: 20px;
}

/* Specific styling for the multi-column products section */
.footer-section.products-section {
    flex-basis: 48%;
    /* Make the products section wider */
}

.product-list-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-start;
  padding: 15px 0;
}

.product-list-flex a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.25s ease-in-out;
}
.product-list-flex h3 {
  color: #ffffff;
  font-size: 2rem;
  transition: all 0.25s ease-in-out;
}


.product-list-flex a:hover {
  background-color: #06A3DA;
  color: #fff;
  border-color: #06A3DA;
  transform: translateY(-2px);
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-section {
        flex-basis: 48%;
    }

    .footer-section.products-section {
        flex-basis: 100%;
    }

    .product-categories-container {
        flex-wrap: wrap;
    }

    .product-category-column {
        flex-basis: 48%;
    }
}

@media (max-width: 600px) {

    .footer-section,
    .product-category-column {
        flex-basis: 100%;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* ==================== Animations ==================== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 768px) {

    .products-header h1,
    .products-header h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
    }

    nav {
        flex-wrap: wrap;
    }

    nav a {
        margin: 0.5rem;
    }

    .features-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .category-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin: 0 2px;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .tool-card,
    .feature-card,
    .testimonial {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        gap: 2rem;
    }
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ==================== FAQ Section Styles ==================== */
#faq {
    margin-bottom: 4rem;
}

#faq h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

#faq h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.05);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active p {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* FAQ Icon */
.faq-question::before {
    content: "\f059";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* FAQ Section Background Pattern */
#faq {
    position: relative;
    padding: 3rem 0;
}

#faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(79, 70, 229, 0.03)" stroke-width="1"/></svg>');
    z-index: -1;
}

/* FAQ Category Headers */
.faq-category {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

/* FAQ Search */
.faq-search {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.faq-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-search button:hover {
    background-color: var(--secondary-color);
}

/* FAQ No Results Message */
.faq-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-style: italic;
    display: none;
}

/* FAQ Show All Button */
.faq-show-all {
    text-align: center;
    margin-top: 2rem;
}

.faq-show-all button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-show-all button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.2rem;
        padding-right: 2.5rem;
        font-size: 1rem;
    }

    .faq-item.active p {
        padding: 0 1.2rem 1.2rem;
    }

    #faq h2 {
        font-size: 1.8rem;
    }
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}