/* ==========================================================================
   DoMyStudy — modern UI/UX layer
   Loaded after theme.min.css. Uses the site's own palette so admin color
   settings still win where they apply inline styles.
   ========================================================================== */

:root {
    --dms-green: #23564e;
    --dms-green-dark: #1a423c;
    --dms-teal: #04d2c8;
    --dms-teal-dark: #03b3aa;
    --dms-ink: #1f2d3d;
    --dms-muted: #5f7285;
    --dms-bg: #f7fafc;
    --dms-line: #e4ebf0;
    --dms-radius: 14px;
    --dms-radius-sm: 10px;
    --dms-shadow-sm: 0 2px 10px rgba(31, 45, 61, 0.06);
    --dms-shadow-md: 0 10px 30px rgba(31, 45, 61, 0.10);
    --dms-shadow-lg: 0 24px 60px rgba(31, 45, 61, 0.14);
    --dms-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dms-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* --- Screen-reader only --------------------------------------------------- */
.sr-only, .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Honeypot field — must stay invisible but present in DOM */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    height: 0; width: 0;
    overflow: hidden;
    opacity: 0;
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.header-area .main-header-area {
    transition: background .3s var(--dms-ease), box-shadow .3s var(--dms-ease),
                padding .3s var(--dms-ease);
}

.header-area .main-header-area.sticky {
    box-shadow: 0 6px 24px rgba(15, 35, 32, 0.18);
    backdrop-filter: saturate(140%) blur(6px);
}

.navbar-brand .logo {
    max-height: 42px;
    width: auto;
    transition: transform .25s var(--dms-ease);
}
.navbar-brand:hover .logo { transform: scale(1.03); }

.primary-menu .navbar-nav .nav-link {
    position: relative;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color .2s var(--dms-ease), background .2s var(--dms-ease);
}

.primary-menu .navbar-nav .nav-link:hover,
.primary-menu .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.14);
}

/* underline accent for active/hover on non-sticky + sticky */
.primary-menu .navbar-nav > .nav-item > .nav-link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--dms-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--dms-ease);
}
.primary-menu .navbar-nav > .nav-item > .nav-link:hover::after,
.primary-menu .navbar-nav > .nav-item > .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdowns */
.primary-menu .dropdown-menu {
    border: 0;
    border-radius: var(--dms-radius-sm);
    box-shadow: var(--dms-shadow-md);
    padding: 8px;
    margin-top: 8px;
    min-width: 220px;
    animation: dms-drop .18s var(--dms-ease);
}
@keyframes dms-drop {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.primary-menu .dropdown-item {
    border-radius: 7px;
    padding: 9px 14px;
    font-weight: 600;
    font-size: 14.5px;
    transition: background .15s var(--dms-ease), color .15s var(--dms-ease),
                padding-left .2s var(--dms-ease);
}
.primary-menu .dropdown-item:hover,
.primary-menu .dropdown-item:focus {
    padding-left: 18px;
}

/* Header CTA cluster */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-cta .nav-item { display: flex; }

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dms-teal);
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(4, 210, 200, 0.35);
    transition: transform .2s var(--dms-ease), box-shadow .2s var(--dms-ease),
                background .2s var(--dms-ease);
}
.btn-cta-primary:hover, .btn-cta-primary:focus-visible {
    background: var(--dms-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4, 210, 200, 0.45);
    text-decoration: none;
}

.btn-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background .2s var(--dms-ease), transform .2s var(--dms-ease);
}
.btn-cta-icon:hover, .btn-cta-icon:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}
.btn-cta-icon.btn-whatsapp { color: #25d366 !important; background: rgba(37, 211, 102, 0.15); border-color: rgba(37,211,102,.35); }
.btn-cta-icon.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.30); }

/* Toggler */
.navbar-toggler {
    border-radius: 10px;
    padding: 8px 12px;
    transition: background .2s var(--dms-ease);
}
.navbar-toggler:focus { outline: none; box-shadow: 0 0 0 3px rgba(4,210,200,.35); }

/* ==========================================================================
   Hero / page banners
   ========================================================================== */

.slider_area, .bradcam_area {
    position: relative;
    overflow: hidden;
}

/* subtle depth on dark heroes */
.slider_area::before, .bradcam_area::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(4, 210, 200, 0.16), transparent 60%),
        radial-gradient(800px 400px at -10% 110%, rgba(4, 210, 200, 0.10), transparent 55%);
    pointer-events: none;
}
.slider_area > .container, .bradcam_area > .container,
.slider_area .container, .bradcam_area .container {
    position: relative;
    z-index: 1;
}

.bradcam_area h1, .bradcam_area h3, .slider_info h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: .5rem;
}
.bradcam_area h3 { /* pages that still emit h3 as banner title */
    color: #fff;
    padding: 70px 0;
    margin: 0;
    text-align: center;
}
.slider_info p {
    font-size: 1.15rem;
    font-weight: 600;
    opacity: .92;
    max-width: 56ch;
}

/* fade-up entrance for hero content */
.slider_info > * {
    animation: dms-rise .55s var(--dms-ease) both;
}
.slider_info > *:nth-child(2) { animation-delay: .08s; }
@keyframes dms-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero calculator card */
.opc1.card {
    border-radius: var(--dms-radius) !important;
    box-shadow: var(--dms-shadow-lg) !important;
    border: 0 !important;
    padding: 26px 22px;
    background: #fff;
}
.opc1.card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dms-ink);
    margin-bottom: 16px;
}

/* ==========================================================================
   Buttons (legacy classes restyled)
   ========================================================================== */

a, .boxed_btn, .boxed-btn, button, .btn {
    transition: all .22s var(--dms-ease);
}

.boxed_btn, .boxed-btn {
    display: inline-block;
    border-radius: 999px !important;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 30px;
    letter-spacing: .01em;
}

.boxed_btn:hover, .boxed-btn:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 45, 61, 0.16);
    text-decoration: none;
}
.boxed_btn:active, .boxed-btn:active, .btn:active {
    transform: translateY(0);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
}
.btn-primary, .btn-info {
    background-color: var(--dms-teal);
    border-color: var(--dms-teal);
}
.btn-primary:hover, .btn-info:hover {
    background-color: var(--dms-teal-dark);
    border-color: var(--dms-teal-dark);
}
.btn-outline-primary {
    color: var(--dms-green);
    border-color: var(--dms-green);
}
.btn-outline-primary:hover {
    background: var(--dms-green);
    border-color: var(--dms-green);
}
.rounded-pill { border-radius: 999px !important; }

/* ==========================================================================
   Focus visibility (accessibility)
   ========================================================================== */

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.boxed_btn:focus-visible,
.boxed-btn:focus-visible,
.form-control:focus-visible,
.custom-select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--dms-teal);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-control, .custom-select {
    border-radius: var(--dms-radius-sm);
    border: 1.5px solid var(--dms-line);
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color .2s var(--dms-ease), box-shadow .2s var(--dms-ease);
}
textarea.form-control { border-radius: var(--dms-radius-sm); }

.form-control:focus, .custom-select:focus {
    border-color: var(--dms-teal);
    box-shadow: 0 0 0 4px rgba(4, 210, 200, 0.15);
    outline: none;
}
.form-control.is-invalid, .form-control.invalid {
    border-color: #dc3545;
}
.invalid-feedback {
    font-weight: 700;
    font-size: 13px;
}
::placeholder {
    color: #9aa9b8;
    opacity: 1;
}
.input-number { font-weight: 700; }

/* ==========================================================================
   Cards & content rhythm
   ========================================================================== */

.card {
    border-radius: var(--dms-radius);
    border: 1px solid var(--dms-line);
}
.card.shadow, .card.shadow-sm { border: 0; }

.hover-lift, .hover-shadow-lg {
    transition: transform .25s var(--dms-ease), box-shadow .25s var(--dms-ease);
}
.hover-lift:hover, .hover-shadow-lg:hover {
    transform: translateY(-5px);
    box-shadow: var(--dms-shadow-md) !important;
}
.transition-all { transition: all .25s var(--dms-ease); }

/* Section titles */
.single_about_info h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.single_about_info > div {
    font-size: 1.06rem;
    opacity: .85;
    max-width: 68ch;
    margin: 0 auto;
}

/* --- Homepage: feature columns (section 2) --- */
.dms-feature {
    background: #fff;
    border: 1px solid var(--dms-line);
    border-radius: var(--dms-radius);
    padding: 30px 24px;
    height: 100%;
    box-shadow: var(--dms-shadow-sm);
    transition: transform .25s var(--dms-ease), box-shadow .25s var(--dms-ease);
}
.dms-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--dms-shadow-md);
}
.dms-feature .dms-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px; height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(4,210,200,.14), rgba(35,86,78,.10));
    margin-bottom: 14px;
}
.dms-feature h4 { font-size: 1.15rem; font-weight: 800; }
.dms-feature p { color: var(--dms-muted); font-size: .96rem; margin: 0; }

/* --- Homepage: how-it-works steps (section 3) --- */
.dms-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--dms-line);
    border-radius: var(--dms-radius);
    padding: 20px 20px 20px 78px;
    margin-bottom: 16px;
    box-shadow: var(--dms-shadow-sm);
    transition: transform .25s var(--dms-ease), box-shadow .25s var(--dms-ease);
}
.dms-step:hover {
    transform: translateX(6px);
    box-shadow: var(--dms-shadow-md);
}
.dms-step .dms-step-media {
    position: absolute;
    left: 18px; top: 20px;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dms-step .dms-step-num {
    position: absolute;
    left: 44px; top: 12px;
    min-width: 22px; height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--dms-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(35,86,78,.35);
}
.dms-step h4 { font-size: 1.08rem; font-weight: 800; margin-bottom: 4px; }
.dms-step p { color: var(--dms-muted); margin: 0; font-size: .95rem; }

.how-it-works .about_tutorials img,
.about_tutorials img {
    border-radius: var(--dms-radius);
    box-shadow: var(--dms-shadow-md);
}

/* --- Homepage: service chips (section 4) --- */
.dms-service-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--dms-line);
    border-radius: 999px;
    padding: 10px 18px 10px 12px;
    font-weight: 700;
    font-size: .95rem;
    color: var(--dms-ink) !important;
    box-shadow: var(--dms-shadow-sm);
    transition: transform .2s var(--dms-ease), box-shadow .2s var(--dms-ease),
                border-color .2s var(--dms-ease);
    height: 100%;
}
.dms-service-chip img { width: 26px; height: 26px; flex: 0 0 auto; }
.dms-service-chip:hover {
    transform: translateY(-3px);
    border-color: var(--dms-teal);
    box-shadow: var(--dms-shadow-md);
    text-decoration: none;
}
.dms-service-chip .chip-arrow {
    margin-left: auto;
    color: var(--dms-teal);
    font-size: .85rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s var(--dms-ease), transform .2s var(--dms-ease);
}
.dms-service-chip:hover .chip-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- Homepage: guarantees (section 5) --- */
.dms-guarantee {
    background: #fff;
    border: 1px solid var(--dms-line);
    border-radius: var(--dms-radius);
    padding: 30px 20px;
    height: 100%;
    box-shadow: var(--dms-shadow-sm);
    transition: transform .25s var(--dms-ease), box-shadow .25s var(--dms-ease);
}
.dms-guarantee:hover { transform: translateY(-6px); box-shadow: var(--dms-shadow-md); }
.dms-guarantee img {
    border-radius: 18px;
    margin-bottom: 12px;
}
.dms-guarantee h5 { font-weight: 800; font-size: 1.05rem; }
.dms-guarantee p { color: var(--dms-muted); font-size: .93rem; margin: 0; }

/* --- Testimonials (section 6 + reviews page) --- */
.dms-review {
    position: relative;
    border-radius: var(--dms-radius) !important;
    border: 1px solid var(--dms-line) !important;
    height: 100%;
    transition: transform .25s var(--dms-ease), box-shadow .25s var(--dms-ease);
}
.dms-review:hover { transform: translateY(-5px); box-shadow: var(--dms-shadow-md) !important; }
.dms-review::before {
    content: "\201C";
    position: absolute;
    top: 6px; right: 18px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(4, 210, 200, 0.18);
    line-height: 1;
    font-family: Georgia, serif;
}
.star-filled, .stars .fa-star, .fa-star.text-warning { color: #f5b301 !important; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

#accordion .card {
    border: 1px solid var(--dms-line) !important;
    border-radius: var(--dms-radius-sm) !important;
    box-shadow: var(--dms-shadow-sm);
    overflow: hidden;
    transition: box-shadow .2s var(--dms-ease);
}
#accordion .card:hover { box-shadow: var(--dms-shadow-md); }
#accordion .card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none !important;
    padding: 16px 20px;
    color: var(--dms-ink) !important;
}
#accordion .card > a h5 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--dms-ink);
}
#accordion .card > a::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: .8rem;
    color: var(--dms-teal);
    transition: transform .25s var(--dms-ease);
    flex: 0 0 auto;
    margin-left: 14px;
}
#accordion .card > a[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
#accordion .card-body {
    color: var(--dms-muted);
    border-top: 1px solid var(--dms-line);
    padding-top: 14px !important;
}

/* --- Blog cards ------------------------------------------------------------ */
.dms-blog-card {
    background: #fff;
    border: 1px solid var(--dms-line);
    border-radius: var(--dms-radius);
    overflow: hidden;
    box-shadow: var(--dms-shadow-sm);
    transition: transform .25s var(--dms-ease), box-shadow .25s var(--dms-ease);
    display: flex;
    flex-direction: column;
}
.dms-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dms-shadow-md);
}
.dms-blog-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.dms-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--dms-ease);
}
.dms-blog-card:hover .dms-blog-thumb img {
    transform: scale(1.05);
}

/* ==========================================================================
   Prose content (service pages, legal pages, blog)
   ========================================================================== */

.about_area {
    padding: 60px 0;
}
.about_area .col-12 > :first-child,
.about_area .col-lg-8 > :first-child { margin-top: 0; }
.about_area p { line-height: 1.8; color: #3d4f61; }
.about_area h2, .about_area h3, .about_area h4 {
    color: var(--dms-ink);
    margin-top: 1.4em;
    margin-bottom: .6em;
}
.about_area ul, .about_area ol { padding-left: 1.4em; }
.about_area ul li, .about_area ol li { margin-bottom: .45em; line-height: 1.7; color: #3d4f61; }
.about_area img { border-radius: var(--dms-radius-sm); }

/* ==========================================================================
   How to order steps page
   ========================================================================== */

.dms-order-step {
    position: relative;
    border: 1px solid var(--dms-line) !important;
    border-radius: var(--dms-radius) !important;
    background: #fff !important;
    box-shadow: var(--dms-shadow-sm) !important;
}
.dms-order-step .dms-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--dms-green);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(35,86,78,.3);
}
.dms-order-step h3 { font-size: 1.25rem; font-weight: 800; }
.dms-order-step img { border-radius: var(--dms-radius-sm); }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-section {
    padding: 70px 0;
}
.contact-section .form-contact {
    background: #fff;
    border: 1px solid var(--dms-line);
    border-radius: var(--dms-radius);
    padding: 30px;
    box-shadow: var(--dms-shadow-md);
}
.contact-title { font-weight: 800; }
.contact-section .media.contact-info {
    align-items: flex-start;
    margin-bottom: 18px;
}
.contact-section .media.contact-info .contact-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(4, 210, 200, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}
.contact-section .media.contact-info .contact-icon i {
    font-size: 18px;
    color: var(--dms-green);
}
.contact-section .media-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 2px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    font-size: 15px;
}
.footer .footer_top {
    padding: 70px 0 50px;
}
.footer .footer_widget .footer_title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer .footer_widget .footer_title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 3px;
    border-radius: 2px;
    background: var(--dms-teal);
}
.footer .footer_widget ul { list-style: none; padding: 0; margin: 0; }
.footer .footer_widget ul li { margin-bottom: 11px; }
.footer .footer_widget ul li a {
    position: relative;
    opacity: .85;
    transition: opacity .2s var(--dms-ease), padding-left .2s var(--dms-ease);
}
.footer .footer_widget ul li a:hover {
    opacity: 1;
    padding-left: 6px;
    text-decoration: none;
}
.footer .footer_logo img { max-height: 44px; width: auto; margin-bottom: 18px; }
.footer .footer_widget p { opacity: .85; line-height: 1.8; }

/* social circles */
.footer .socail_links ul {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer .socail_links ul li { margin: 0; }
.footer .socail_links ul li a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 17px;
    opacity: 1;
    transition: transform .2s var(--dms-ease), box-shadow .2s var(--dms-ease);
}
.footer .socail_links ul li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    padding-left: 0;
}

/* contact list icons */
.footer .footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    opacity: .9;
}
.footer .footer-contact li i {
    color: var(--dms-teal);
    margin-top: 4px;
    flex: 0 0 auto;
}
.footer .footer-contact li a { opacity: .9; }
.footer .footer-contact li a:hover { opacity: 1; padding-left: 0; }

/* payment badges */
.footer .pay-icons {
    font-size: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: .92;
}
.footer .pay-icons i { transition: transform .2s var(--dms-ease); }
.footer .pay-icons i:hover { transform: translateY(-3px); }

.footer .copy-right_text {
    padding: 22px 0;
}
.footer .footer_border {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .copy_right { font-size: 14px; opacity: .75; margin: 0; }

/* ==========================================================================
   Misc
   ========================================================================== */

.js-cookie-consent {
    font-family: 'Nunito', sans-serif;
    position: fixed !important;
    bottom: 16px !important;
    left: 16px !important;
    right: 16px !important;
    max-width: 480px;
    margin: 0 auto;
    background: var(--dms-ink) !important;
    color: #fff;
    border-radius: var(--dms-radius) !important;
    padding: 18px 22px !important;
    box-shadow: var(--dms-shadow-lg);
    z-index: 9999;
}
.js-cookie-consent .js-cookie-consent-agree,
.js-cookie-consent button {
    border-radius: 999px !important;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(4, 210, 200, 0.30);
}

/* pagination */
.pagination { gap: 6px; }
.pagination .page-link {
    border-radius: 8px !important;
    border: 1px solid var(--dms-line);
    color: var(--dms-green);
    font-weight: 700;
}
.pagination .page-item.active .page-link {
    background: var(--dms-green);
    border-color: var(--dms-green);
}

/* alerts */
.alert {
    border-radius: var(--dms-radius-sm);
    border: 0;
    font-weight: 600;
    box-shadow: var(--dms-shadow-sm);
}
.alert-success { background: #e7f9f4; color: #0b6e57; }
.alert-danger  { background: #fdecec; color: #a5272b; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Small screens -------------------------------------------------------- */
@media (max-width: 767px) {
    .slider_info h1 {
        font-size: 1.9rem;
        line-height: 1.25;
    }
    .bradcam_area h3 { padding: 46px 0; }
    .header-cta .btn-cta-primary { padding: 9px 16px; font-size: 14px; }
    .opc1.card { margin-top: 24px; }
    .contact-section .form-contact { padding: 22px 16px; }
    .footer .footer_top { padding: 50px 0 34px; }
    .boxed_btn, .boxed-btn { width: auto; max-width: 100%; }
}
