/*
 * Halalah Plus V2 Design System
 * Based on Figma Prototype "Halalah Plus V2"
 * Clean, modern design with white backgrounds and blue accents
 */

/* ============================================
   V2 CSS VARIABLES
   ============================================ */
:root {
    --v2-primary: #4B5EFC;
    --v2-primary-light: #6B76F9;
    --v2-primary-dark: #3A4BE0;
    --v2-primary-hover: #3F51E5;
    --v2-text-dark: #1A1A2E;
    --v2-text-body: #444444;
    --v2-text-gray: #666666;
    --v2-text-light: #888888;
    --v2-bg-white: #FFFFFF;
    --v2-bg-light: #F8F9FF;
    --v2-bg-section: #FAFBFF;
    --v2-border-light: #E8ECF4;
    --v2-dots-color: rgba(75, 94, 252, 0.08);
    --v2-dots-color-strong: rgba(75, 94, 252, 0.15);
    --v2-gradient-hero: linear-gradient(135deg, #4B5EFC 0%, #7C3AED 50%, #4B5EFC 100%);
    --v2-gradient-about: linear-gradient(135deg, #4B5EFC 0%, #6B3FA0 50%, #7C3AED 100%);
    --v2-shadow-sm: 0 2px 8px rgba(75, 94, 252, 0.08);
    --v2-shadow-md: 0 4px 20px rgba(75, 94, 252, 0.12);
    --v2-shadow-lg: 0 8px 40px rgba(75, 94, 252, 0.15);
    --v2-radius-sm: 8px;
    --v2-radius-md: 12px;
    --v2-radius-lg: 20px;
    --v2-radius-pill: 50px;
    --v2-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   V2 GLOBAL OVERRIDES
   ============================================ */
body.v2-design {
    background-color: var(--v2-bg-white);
    color: var(--v2-text-body);
    font-size: 1.1rem; /* Slightly larger base font to match Figma */
}

/* Wider Container for V2 */
@media (min-width: 1200px) {
    body.v2-design .container {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    body.v2-design .container {
        max-width: 1400px;
    }
}
@media (min-width: 1600px) {
    body.v2-design .container {
        max-width: 1540px;
    }
}

body.v2-design h1,
body.v2-design h2,
body.v2-design h3,
body.v2-design h4,
body.v2-design h5,
body.v2-design h6 {
    color: var(--v2-text-dark);
}

/* ============================================
   V2 HALFTONE DOTS BACKGROUND PATTERN
   ============================================ */
.v2-dots-bg {
    position: relative;
}

.v2-dots-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, var(--v2-dots-color) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
}

/* Stronger dots for corners */
.v2-dots-corners::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-image:
        radial-gradient(circle, var(--v2-dots-color-strong) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

[dir="RTL"] .v2-dots-corners::after {
    bottom: 0;
    left: 0;
    border-radius: 0 300px 0 0;
}

[dir="LTR"] .v2-dots-corners::after {
    bottom: 0;
    right: 0;
    border-radius: 300px 0 0 0;
}

/* ============================================
   V2 NAVBAR
   ============================================ */
body.v2-design .navbar-v2 {
    background-color: var(--v2-bg-white) !important;
    box-shadow: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

body.v2-design .navbar-v2.scrolled {
    background-color: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: var(--v2-shadow-sm) !important;
}

body.v2-design .navbar-v2:hover {
    background-color: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.v2-design .navbar-v2 .container-nav {
    background-color: transparent !important;
}

body.v2-design .navbar-v2 .navbar {
    background-color: transparent !important;
    height: auto;
    padding: 15px 0 !important;
    min-height: 80px;
}

/* V2 Logo */
body.v2-design .navbar-v2 .img-header {
    width: 120px;
    filter: none;
}

body.v2-design .navbar-v2 .img-tog {
    width: 80px;
    filter: none;
}

/* V2 Nav Links */
body.v2-design .navbar-v2 .navbar-nav .nav-link {
    color: var(--v2-text-dark) !important;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 0 !important;
    margin: 0 18px !important;
    position: relative;
    transition: var(--v2-transition);
    letter-spacing: 0.3px;
}

body.v2-design .navbar-v2 .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--v2-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

body.v2-design .navbar-v2 .navbar-nav .nav-link:hover {
    color: var(--v2-primary) !important;
}

body.v2-design .navbar-v2 .navbar-nav .nav-link:hover::after {
    width: 100%;
}

body.v2-design .navbar-v2 .navbar-nav .nav-link.active {
    color: var(--v2-primary) !important;
}

body.v2-design .navbar-v2 .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* V2 Dropdown */
body.v2-design .navbar-v2 .dropdown-toggle::after {
    color: var(--v2-text-dark);
}

body.v2-design .navbar-v2 .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid var(--v2-border-light) !important;
    box-shadow: var(--v2-shadow-lg) !important;
    border-radius: var(--v2-radius-md) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
}

body.v2-design .navbar-v2 .dropdown-menu.show {
    opacity: 1 !important;
}

/* V2 Register Button */
body.v2-design .navbar-v2 .login-navitem {
    background: var(--v2-primary) !important;
    color: #FFFFFF !important;
    border-radius: var(--v2-radius-pill) !important;
    border: none !important;
    padding: 8px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    height: auto !important;
    width: auto !important;
    min-width: 120px;
    transition: var(--v2-transition);
    text-align: center;
    margin: 0 8px !important;
}

body.v2-design .navbar-v2 .login-navitem:hover {
    background: var(--v2-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 94, 252, 0.35);
}

/* V2 Language Switcher */
body.v2-design .navbar-v2 .lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 10px;
}

body.v2-design .navbar-v2 .lang-flag-btn {
    border: 2px solid var(--v2-border-light) !important;
    background: var(--v2-bg-white) !important;
    border-radius: 6px !important;
    padding: 3px !important;
    transition: var(--v2-transition);
}

body.v2-design .navbar-v2 .lang-flag-btn.active {
    border-color: var(--v2-primary) !important;
    box-shadow: 0 0 0 2px rgba(75, 94, 252, 0.2);
}

body.v2-design .navbar-v2 .lang-flag-btn img {
    width: 22px;
    height: 16px;
}

/* V2 Mega Menu */
body.v2-design .navbar-v2 .mega-menu {
    background: #ffffff !important;
    border: 1px solid var(--v2-border-light) !important;
    box-shadow: var(--v2-shadow-lg) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
}

body.v2-design .navbar-v2 .mega-menu.show {
    opacity: 1 !important;
}

body.v2-design .navbar-v2 .mega-menu-title {
    color: var(--v2-text-dark) !important;
}

body.v2-design .navbar-v2 .mega-menu-link {
    color: var(--v2-text-body) !important;
}

body.v2-design .navbar-v2 .mega-menu-link:hover {
    color: var(--v2-primary) !important;
    background: var(--v2-bg-light) !important;
}

body.v2-design .navbar-v2 .mega-menu-icon {
    background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-light) 100%) !important;
}

body.v2-design .navbar-v2 .mega-menu-footer {
    background: var(--v2-bg-light) !important;
    border-top: 1px solid var(--v2-border-light) !important;
}

body.v2-design .navbar-v2 .mega-menu-footer-btn {
    background: var(--v2-primary) !important;
    color: #fff !important;
}

/* ============================================
   V2 HERO SECTION
   ============================================ */
body.v2-design .hero-v2 {
    background: var(--v2-bg-white);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 40px 0 60px !important;
}

/* Halftone dots background for hero */
body.v2-design .hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, var(--v2-dots-color) 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Bottom-left corner dots (stronger) in RTL */
body.v2-design .hero-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background-image:
        radial-gradient(circle, var(--v2-dots-color-strong) 2px, transparent 2px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at bottom left, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 30%, transparent 70%);
}

[dir="RTL"] body.v2-design .hero-v2::after {
    left: auto;
    right: 0;
    mask-image: radial-gradient(ellipse at bottom right, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 30%, transparent 70%);
}

body.v2-design .hero-v2 .container {
    position: relative;
    z-index: 2;
}

/* Hero Image Column with Blue Blob */
body.v2-design .hero-v2-image-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)), url('../img/v2/hero_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 30px 20px;
    overflow: hidden;
}

body.v2-design .hero-v2-blob {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.v2-design .hero-v2-blob::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--v2-primary);
    border-radius: 42% 58% 52% 48% / 45% 40% 60% 55%;
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 42% 58% 52% 48% / 45% 40% 60% 55%;
    }
    25% {
        border-radius: 50% 50% 45% 55% / 40% 50% 50% 60%;
    }
    50% {
        border-radius: 45% 55% 58% 42% / 55% 45% 55% 45%;
    }
    75% {
        border-radius: 55% 45% 48% 52% / 48% 55% 45% 55%;
    }
}

body.v2-design .hero-v2-blob .hero-phone-img {
    position: relative;
    z-index: 1;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Text Content */
body.v2-design .hero-v2-content {
    padding: 20px 0;
}

body.v2-design .hero-v2-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--v2-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

body.v2-design .hero-v2-title .brand-name {
    color: var(--v2-primary);
}

body.v2-design .hero-v2-description {
    font-size: 1.25rem;
    color: var(--v2-text-gray);
    line-height: 2;
    margin-bottom: 30px;
    max-width: 700px;
}

body.v2-design .hero-v2-download-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

/* App Store Buttons */
body.v2-design .hero-v2-stores {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

body.v2-design .hero-v2-stores a {
    display: inline-block;
    transition: var(--v2-transition);
}

body.v2-design .hero-v2-stores a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.2));
}

body.v2-design .hero-v2-stores img {
    height: 52px;
    width: auto;
    border-radius: 10px;
}

/* ============================================
   V2 ABOUT/FROM-NOHN SECTION (من نحن)
   ============================================ */
body.v2-design .about-v2-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--v2-radius-lg);
    margin: 0 auto;
    max-width: calc(100% - 40px);
    display: flex;
    align-items: center;
    min-height: 600px;
}

body.v2-design .about-v2-hero .about-v2-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body.v2-design .about-v2-hero .about-v2-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.v2-design .about-v2-hero .about-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 94, 252, 0.85) 0%, rgba(124, 58, 237, 0.85) 100%);
    z-index: 1;
}

body.v2-design .about-v2-hero .about-v2-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 65%;
}

[dir="LTR"] body.v2-design .about-v2-hero .about-v2-content {
    right: auto;
    left: 0;
}

body.v2-design .about-v2-hero .about-v2-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

body.v2-design .about-v2-hero .about-v2-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
}

/* ============================================
   V2 STATISTICS SECTION
   ============================================ */
body.v2-design .stats-v2 {
    padding: 60px 0;
}

body.v2-design .stats-v2 .stats-v2-container {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #7C3AED 100%);
    border-radius: var(--v2-radius-lg);
    padding: 50px 30px;
    box-shadow: var(--v2-shadow-lg);
    position: relative;
    overflow: hidden;
}

body.v2-design .stats-v2 .stats-v2-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

body.v2-design .stats-v2 .stat-v2-item {
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 1;
}

body.v2-design .stats-v2 .stat-v2-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.v2-design .stats-v2 .stat-v2-plus {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    margin: 0 3px;
}

body.v2-design .stats-v2 .stat-v2-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* ============================================
   V2 WHY HALALA SECTION
   ============================================ */
body.v2-design .services-v2 {
    padding: 80px 0;
    background: var(--v2-bg-white);
}

body.v2-design .services-v2 .section-v2-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--v2-text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

body.v2-design .services-v2 .section-v2-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--v2-primary);
    border-radius: 2px;
}

body.v2-design .service-v2-card {
    background: var(--v2-bg-white);
    border-radius: var(--v2-radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--v2-transition);
    border: 1px solid var(--v2-border-light);
    height: 100%;
}

body.v2-design .service-v2-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--v2-shadow-md);
    border-color: var(--v2-primary);
}

body.v2-design .service-v2-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
    transition: var(--v2-transition);
}

body.v2-design .service-v2-card:hover img {
    transform: scale(1.1);
}

body.v2-design .service-v2-card p {
    color: var(--v2-text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   V2 DOWNLOAD APP SECTION
   ============================================ */
body.v2-design .download-v2 {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #7C3AED 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

body.v2-design .download-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

body.v2-design .download-v2 .container {
    position: relative;
    z-index: 1;
}

body.v2-design .download-v2 h1 {
    color: #FFFFFF !important;
    font-weight: 700;
}

body.v2-design .download-v2 .btn-app {
    filter: brightness(1.1);
}

/* ============================================
   V2 CONTACT SECTION
   ============================================ */
body.v2-design .contact-v2 {
    padding: 80px 0;
    background: var(--v2-bg-section);
}

body.v2-design .contact-v2 .section-v2-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--v2-text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

body.v2-design .contact-v2 .section-v2-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--v2-primary);
    border-radius: 2px;
}

body.v2-design .contact-v2 .form-control {
    border: 2px solid var(--v2-border-light);
    border-radius: var(--v2-radius-md);
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--v2-transition);
    background: var(--v2-bg-white);
}

body.v2-design .contact-v2 .form-control:focus {
    border-color: var(--v2-primary);
    box-shadow: 0 0 0 3px rgba(75, 94, 252, 0.1);
}

body.v2-design .contact-v2 .btn-primary {
    background: var(--v2-primary) !important;
    border: none !important;
    border-radius: var(--v2-radius-md) !important;
    padding: 14px 30px !important;
    font-weight: 600 !important;
    font-size: 1.05rem;
    transition: var(--v2-transition);
}

body.v2-design .contact-v2 .btn-primary:hover {
    background: var(--v2-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 94, 252, 0.3);
}

/* ============================================
   V2 FAQ SECTION
   ============================================ */
body.v2-design .faq-v2 {
    padding: 80px 0;
    background: var(--v2-bg-white);
}

body.v2-design .faq-v2 .section-v2-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--v2-text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

body.v2-design .faq-v2 .section-v2-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--v2-primary);
    border-radius: 2px;
}

body.v2-design .faq-v2 .accordion-item {
    border: 1px solid var(--v2-border-light) !important;
    border-radius: var(--v2-radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--v2-transition);
}

body.v2-design .faq-v2 .accordion-item:hover {
    border-color: var(--v2-primary) !important;
    box-shadow: var(--v2-shadow-sm);
}

body.v2-design .faq-v2 .accordion-button {
    background: var(--v2-bg-white) !important;
    color: var(--v2-text-dark) !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 22px;
}

body.v2-design .faq-v2 .accordion-button:not(.collapsed) {
    background: var(--v2-primary) !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}

body.v2-design .faq-v2 .accordion-body {
    background: var(--v2-bg-light);
    color: var(--v2-text-body);
    line-height: 1.8;
    padding: 20px 22px;
}

/* ============================================
   V2 FOOTER
   ============================================ */
body.v2-design .site-footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%) !important;
}

body.v2-design .site-footer .footer-glow-line {
    background: linear-gradient(90deg, transparent, var(--v2-primary), transparent) !important;
    height: 2px !important;
}

body.v2-design .site-footer .footer-links-title {
    color: var(--v2-primary-light) !important;
}

body.v2-design .site-footer .footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.v2-design .site-footer .footer-link:hover {
    color: var(--v2-primary-light) !important;
}

body.v2-design .site-footer .social-icon {
    background: rgba(75, 94, 252, 0.15) !important;
    border-color: rgba(75, 94, 252, 0.3) !important;
}

body.v2-design .site-footer .social-icon:hover {
    background: var(--v2-primary) !important;
}

body.v2-design .site-footer .footer-bottom {
    border-top-color: rgba(75, 94, 252, 0.15) !important;
}

/* V2 Back to Top */
body.v2-design .back-to-top {
    background: var(--v2-primary) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(75, 94, 252, 0.35);
    transition: var(--v2-transition);
}

body.v2-design .back-to-top:hover {
    background: var(--v2-primary-hover) !important;
    transform: translateY(-3px);
}

/* ============================================
   V2 GENERAL COMPONENTS
   ============================================ */
/* V2 Buttons */
body.v2-design .btn-primary {
    background-color: var(--v2-primary) !important;
    border-color: var(--v2-primary) !important;
}

body.v2-design .btn-primary:hover {
    background-color: var(--v2-primary-hover) !important;
    border-color: var(--v2-primary-hover) !important;
}

/* V2 Section Title */
body.v2-design .section-v2-title {
    color: var(--v2-text-dark);
    font-weight: 700;
}

/* ============================================
   V2 ABOUT PAGE
   ============================================ */
body.v2-design .about-hero {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #7C3AED 100%) !important;
}

body.v2-design .about-hero h2 {
    color: #FFFFFF !important;
}

body.v2-design .about-hero p {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.v2-design .about-message {
    background: var(--v2-bg-section) !important;
}

body.v2-design .about-message h2 {
    color: var(--v2-text-dark) !important;
}

body.v2-design .about-vision {
    background: var(--v2-bg-white) !important;
}

body.v2-design .about-vision h2 {
    color: var(--v2-text-dark) !important;
}

body.v2-design .about-team-section {
    background: var(--v2-bg-light) !important;
}

body.v2-design .about-team-section .section-title {
    color: var(--v2-text-dark) !important;
}

body.v2-design .team-box {
    border: 1px solid var(--v2-border-light) !important;
    border-radius: var(--v2-radius-lg) !important;
    transition: var(--v2-transition);
}

body.v2-design .team-box:hover {
    border-color: var(--v2-primary) !important;
    box-shadow: var(--v2-shadow-md);
}

body.v2-design .about-achievements {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #7C3AED 100%) !important;
}

body.v2-design .about-achievements h2 {
    color: #FFFFFF !important;
}

body.v2-design .achievement-item {
    border-radius: var(--v2-radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--v2-shadow-md);
}

/* ============================================
   V2 RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    body.v2-design .hero-v2-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    /* Navbar mobile */
    body.v2-design .navbar-v2 .navbar {
        min-height: auto;
        padding: 10px 0 !important;
    }

    body.v2-design .navbar-v2 .navbar-nav {
        margin-top: 15px;
        background: var(--v2-bg-white);
    }

    body.v2-design .navbar-v2 .navbar-nav .nav-link {
        margin: 0 !important;
        padding: 12px 15px !important;
        border: none !important;
    }
    
    body.v2-design .mega-menu-item {
        border-bottom: none !important;
    }
    
    body.v2-design .mega-menu-link {
        border: none !important;
    }

    /* Hide floating buttons when mobile menu is open */
    body.v2-design:has(.navbar-collapse.show) .back-to-top,
    body.v2-design:has(.navbar-collapse.show) .floating-lang-btn {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    body.v2-design .navbar-v2 .show::after,
    body.v2-design .navbar .show::after,
    body.v2-design .navbar-v2 .dropdown-toggle::after {
        display: none !important;
    }

    body.v2-design .navbar-v2 .navbar-nav .nav-link::after {
        display: none;
    }

    body.v2-design .navbar-v2 .login-navitem {
        margin: 10px 15px !important;
        display: block;
        text-align: center;
    }

    body.v2-design .navbar-v2 .lang-switcher {
        justify-content: center;
        padding: 10px 0;
    }

    /* Navbar toggler */
    body.v2-design .navbar-v2 .navbar-toggler {
        border: 2px solid var(--v2-border-light);
        padding: 6px 10px;
        border-radius: 8px;
    }

    body.v2-design .navbar-v2 .navbar-toggler-icon {
        filter: invert(0) !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 46, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Hero mobile */
    body.v2-design .hero-v2 {
        min-height: auto;
        padding: 30px 0 40px !important;
        text-align: center;
    }

    body.v2-design .hero-v2-title {
        font-size: 2rem;
    }

    body.v2-design .hero-v2-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    body.v2-design .hero-v2-blob {
        max-width: 350px;
        margin: 0 auto 30px;
    }

    body.v2-design .hero-v2-stores {
        justify-content: center;
    }

    body.v2-design .hero-v2-content {
        text-align: center;
    }

    /* About hero mobile */
    body.v2-design .about-v2-hero .about-v2-content {
        max-width: 100%;
        padding: 30px;
    }

    body.v2-design .about-v2-hero .about-v2-title {
        font-size: 2rem;
    }

    body.v2-design .about-v2-hero .about-v2-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    body.v2-design .hero-v2-title {
        font-size: 1.7rem;
    }

    body.v2-design .hero-v2-description {
        font-size: 1rem;
    }

    body.v2-design .hero-v2-blob {
        max-width: 280px;
    }

    body.v2-design .hero-v2-stores img {
        height: 44px;
    }

    /* Stats mobile */
    body.v2-design .stats-v2 .stat-v2-number {
        font-size: 2.2rem;
    }

    body.v2-design .stats-v2 .stat-v2-label {
        font-size: 1rem;
    }

    /* About hero mobile */
    body.v2-design .about-v2-hero .about-v2-content {
        padding: 25px 20px;
    }

    body.v2-design .about-v2-hero .about-v2-title {
        font-size: 1.6rem;
    }

    body.v2-design .about-v2-hero .about-v2-text {
        font-size: 0.95rem;
    }

    body.v2-design .about-v2-hero .about-v2-image-wrapper {
        min-height: 350px;
    }

    body.v2-design .about-v2-hero {
        max-width: calc(100% - 20px);
    }

    /* Section titles mobile */
    body.v2-design .services-v2 .section-v2-title,
    body.v2-design .contact-v2 .section-v2-title,
    body.v2-design .faq-v2 .section-v2-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    body.v2-design .hero-v2-title {
        font-size: 1.5rem;
    }

    body.v2-design .hero-v2-blob {
        max-width: 240px;
    }

    body.v2-design .hero-v2-stores img {
        height: 40px;
    }

    body.v2-design .stats-v2 .stat-v2-number {
        font-size: 1.8rem;
    }

    body.v2-design .stats-v2 .stat-v2-plus {
        font-size: 1.4rem;
    }

    body.v2-design .stats-v2 .stat-v2-label {
        font-size: 0.9rem;
    }

    body.v2-design .about-v2-hero .about-v2-image-wrapper {
        min-height: 300px;
    }

    body.v2-design .about-v2-hero .about-v2-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   V2 GENERAL PAGE STYLES (for sub-pages)
   ============================================ */
body.v2-design .page-v2-header {
    background: linear-gradient(135deg, var(--v2-primary) 0%, #7C3AED 100%);
    padding: 60px 0;
    text-align: center;
}

body.v2-design .page-v2-header h1 {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 2.2rem;
}

body.v2-design .page-v2-content {
    padding: 60px 0;
    background: var(--v2-bg-white);
}

/* V2 Cards */
body.v2-design .card-v2 {
    background: var(--v2-bg-white);
    border: 1px solid var(--v2-border-light);
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    transition: var(--v2-transition);
}

body.v2-design .card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--v2-shadow-md);
    border-color: var(--v2-primary);
}

/* V2 Discount/Coupon Cards */
body.v2-design .discount-card-v2 {
    border-radius: var(--v2-radius-lg);
    border: 1px solid var(--v2-border-light);
    transition: var(--v2-transition);
    overflow: hidden;
}

body.v2-design .discount-card-v2:hover {
    box-shadow: var(--v2-shadow-md);
    border-color: var(--v2-primary);
    transform: translateY(-3px);
}

/* V2 Form Pages */
body.v2-design .form-v2-section {
    background: var(--v2-bg-section);
    padding: 60px 0;
    min-height: 60vh;
}

body.v2-design .form-v2-section .form-control {
    border: 2px solid var(--v2-border-light);
    border-radius: var(--v2-radius-md);
    padding: 12px 16px;
    transition: var(--v2-transition);
}

body.v2-design .form-v2-section .form-control:focus {
    border-color: var(--v2-primary);
    box-shadow: 0 0 0 3px rgba(75, 94, 252, 0.1);
}

body.v2-design .form-v2-section .btn-primary {
    background: var(--v2-primary) !important;
    border: none !important;
    border-radius: var(--v2-radius-md) !important;
}
/* ============================================
   V2 FOOTER (Figma Design)
   ============================================ */
.site-footer-v2 {
    background-color: var(--v2-primary-light); /* #6B76F9 */
    color: var(--v2-bg-white);
    padding: 0;
    margin-top: 60px;
}

.footer-logo-v2 img {
    height: 130px;
    margin: 0;
    transition: transform 0.3s ease;
}
.footer-logo-v2 img:hover {
    transform: scale(1.05);
}

.social-icons-v2 .social-icon-v2 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    color: var(--v2-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--v2-transition);
    text-decoration: none;
}

.social-icons-v2 .social-icon-v2:hover {
    background-color: var(--v2-bg-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-links-v2 {
    padding: 0;
}

.footer-links-v2 li a {
    color: var(--v2-bg-white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--v2-transition);
}

.footer-links-v2 li a:hover {
    opacity: 0.8;
}

.footer-bottom-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding-top: 1.5rem;
}

/* ============================================
   V2 Statistics Section (Cards)
   ============================================ */
body.v2-design .stats-v2 {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlap with hero section */
    padding-bottom: 60px;
}

body.v2-design .stat-v2-card {
    background-color: var(--v2-primary);
    border-radius: var(--v2-radius-lg);
    box-shadow: 0 10px 30px rgba(75, 94, 252, 0.2);
    padding: 30px 20px;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    height: 100%;
    transition: var(--v2-transition);
    gap: 15px;
}

[dir="ltr"] body.v2-design .stat-v2-card {
    text-align: left;
}

body.v2-design .stat-v2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 94, 252, 0.35);
}

body.v2-design .stat-v2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

body.v2-design .stat-v2-icon img {
    width: 80px !important;
    height: 80px !important;
    filter: brightness(0) invert(1);
}

body.v2-design .stat-v2-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

body.v2-design .stat-v2-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

body.v2-design .stat-v2-number {
    font-size: 30px !important;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

body.v2-design .stat-v2-plus {
    font-size: 30px !important;
    font-weight: 700;
    color: #FFFFFF;
    margin-inline-start: 4px;
}

body.v2-design .stat-v2-label {
    font-size: 18px !important;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body.v2-design .stats-v2 {
        margin-top: -30px;
        padding-bottom: 40px;
    }
    body.v2-design .stat-v2-card {
        padding: 20px 10px;
        flex-direction: column;
        justify-content: center;
        text-align: center !important;
        gap: 10px;
    }
    body.v2-design .stat-v2-info {
        align-items: center;
    }
    body.v2-design .stat-v2-number-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }
    body.v2-design .stat-v2-icon {
        margin-bottom: 5px;
    }
    body.v2-design .stat-v2-icon img {
        width: 45px !important;
        height: 45px !important;
    }
    body.v2-design .stat-v2-number {
        font-size: 22px !important;
    }
    body.v2-design .stat-v2-plus {
        font-size: 22px !important;
    }
    body.v2-design .stat-v2-label {
        font-size: 13px !important;
        margin-top: 5px !important;
    }
}

/* ============================================
   V2 Services Section
   ============================================ */
body.v2-design .services-v2 {
    padding: 80px 0;
    background-color: var(--v2-bg-white);
}

body.v2-design .services-v2-title {
    color: var(--v2-primary);
    font-weight: 800;
    margin-bottom: 50px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

body.v2-design .service-v2-item {
    background-color: var(--v2-bg-white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../img/v2/card-background.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--v2-radius-lg);
    padding-top: 57px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 30px;
    height: 300px;
    text-align: right;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: var(--v2-transition);
    position: relative;
    overflow: hidden;
}

[dir="ltr"] body.v2-design .service-v2-item {
    text-align: left;
}

body.v2-design .service-v2-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(75, 94, 252, 0.1);
}

body.v2-design .service-v2-icon-wrap {
    width: 100%;
    margin-bottom: 41px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

body.v2-design .service-v2-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: invert(36%) sepia(85%) saturate(3015%) hue-rotate(222deg) brightness(98%) contrast(98%);
}

/* ============================================
   V2 Why Discounts Section
   ============================================ */
body.v2-design .why-discounts-v2 {
    padding: 80px 0;
}

body.v2-design .why-phone-img {
    margin-top: -180px;
    margin-bottom: -100px;
    height: 400px;
    max-height: none;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 991px) {
    body.v2-design .why-phone-img {
        margin-top: -80px;
        margin-bottom: -80px;
        height: 320px;
    }
    
    body.v2-design .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        background-color: var(--v2-bg-white);
        padding: 1.5rem 1.5rem 5rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        z-index: 2000;
        border-top: none;
        border-radius: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    body.v2-design .navbar-v2 .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0 !important;
        margin: 0 !important;
        display: block;
        width: 100%;
        text-align: right;
    }
    
    [dir="LTR"] body.v2-design .navbar-v2 .navbar-nav .nav-link {
        text-align: left;
    }
    
    body.v2-design .navbar-v2 .login-btn-v2 {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
        text-align: center;
        padding: 12px 20px !important;
        font-size: 1.1rem;
    }
    
    body.v2-design .navbar-v2 .lang-switcher {
        justify-content: center;
        margin-top: 1.5rem;
    }
}

body.v2-design .why-btn {
    white-space: nowrap;
}

@media (max-width: 576px) {
    body.v2-design .why-btn {
        font-size: 14px;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    body.v2-design .why-btn i {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    
    body.v2-design .registration-v2-btn {
        width: 100% !important;
    }
}

body.v2-design .why-discounts-title {
    color: var(--v2-primary);
    font-weight: 800;
    margin-bottom: 50px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

body.v2-design .why-item p {
    color: var(--v2-text-body);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
}

body.v2-design .service-v2-icon {
    font-size: 2.2rem;
    color: var(--v2-primary);
    position: relative;
    z-index: 1;
}

body.v2-design .service-v2-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

body.v2-design .service-v2-desc {
    font-size: 0.95rem;
    color: var(--v2-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   V2 Key Discounts Section
   ============================================ */
body.v2-design .key-discounts-v2 {
    padding: 80px 0;
    background-color: var(--v2-bg-white);
}

body.v2-design .key-discounts-v2-title {
    color: var(--v2-primary);
    font-weight: 800;
    margin-bottom: 50px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

/* Custom Scroll Carousel */
body.v2-design .discount-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

body.v2-design .discount-track-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

body.v2-design .discount-track-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

body.v2-design .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--v2-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--v2-transition);
}

@media (min-width: 992px) {
    body.v2-design .initiative-card-v2 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
}

body.v2-design .carousel-btn:hover {
    background-color: var(--v2-text-dark);
}

body.v2-design .carousel-btn-next {
    right: 0;
}

body.v2-design .carousel-btn-prev {
    left: 0;
}

body.v2-design .discount-v2-card {
    background: var(--v2-bg-white);
    border-radius: var(--v2-radius-lg);
    border: 1px solid var(--v2-border-light);
    padding: 40px 20px;
    height: 100%;
    min-height: 260px;
    text-align: center;
    position: relative;
    transition: var(--v2-transition);
    width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

body.v2-design .discount-v2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

body.v2-design .discount-v2-logo {
    margin: 10px auto 30px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.v2-design .discount-v2-badge {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: 40px;
    background-color: var(--v2-primary);
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(75, 94, 252, 0.3);
    z-index: 2;
    opacity: 0.5;
}

[dir="rtl"] body.v2-design .discount-v2-badge {
    right: auto;
    left: 40px;
}

body.v2-design .brand-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #F0F2F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--v2-text-muted);
    font-weight: 600;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
}

body.v2-design .discount-v2-heading {
    font-size: 1.3rem !important;
    font-weight: bold !important;
    color: var(--v2-primary) !important;
    margin-top: 50px;
    margin-bottom: 15px;
    text-align: center !important;
}

[dir="rtl"] body.v2-design .discount-v2-heading {
    text-align: center !important;
}

body.v2-design .discount-v2-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
    color: var(--v2-text-muted);
    text-align: left;
    align-items: flex-start;
}

[dir="rtl"] body.v2-design .discount-v2-meta {
    text-align: right;
    align-items: flex-start;
}

body.v2-design .discount-v2-meta i {
    color: var(--v2-primary);
    margin: 0 4px;
}

body.v2-design .discount-v2-city {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: var(--v2-text-muted);
}

body.v2-design .discount-v2-city i {
    color: var(--v2-primary);
    font-size: 0.9rem;
}

/* ============================================
   V2 Registration Section
   ============================================ */
body.v2-design .registration-v2 {
    padding: 80px 0;
    background-color: var(--v2-bg-white);
    position: relative;
    overflow: hidden;
}

body.v2-design .registration-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/v2/regester-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

body.v2-design .registration-v2 .container {
    position: relative;
    z-index: 1;
}

body.v2-design .registration-v2-content {
    padding-right: 20px;
}

[dir="rtl"] body.v2-design .registration-v2-content {
    padding-right: 0;
    padding-left: 20px;
}

body.v2-design .registration-v2-title {
    color: var(--v2-primary);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Poppins', 'Cairo', sans-serif;
    line-height: 1.4;
}

body.v2-design .registration-v2-desc {
    font-size: 1.1rem;
    color: var(--v2-text-muted);
    line-height: 1.6;
}

body.v2-design .registration-v2-subtitle {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

body.v2-design .navbar-v2 {
}

body.v2-design .registration-v2-form-box {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

body.v2-design .registration-v2-input {
    border-radius: var(--v2-radius-md);
    padding: 15px 20px;
    border: 1px solid #dee2e6 !important;
    background-color: #FFFFFF !important;
    transition: var(--v2-transition);
}

body.v2-design .registration-v2-input:focus {
    border-color: var(--v2-primary);
    box-shadow: 0 0 0 0.25rem rgba(75, 94, 252, 0.25);
    background-color: var(--v2-bg-white);
}

body.v2-design .registration-v2-btn {
    background: var(--v2-primary);
    color: #FFFFFF;
    border-radius: var(--v2-radius-md);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--v2-transition);
    border: none;
}

body.v2-design .registration-v2-btn:hover {
    background: var(--v2-primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 94, 252, 0.35);
}

body.v2-design .registration-v2-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: rgba(75, 94, 252, 0.1);
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    body.v2-design .registration-v2-content {
        text-align: center !important;
        margin-bottom: 40px;
        padding: 0;
    }
    body.v2-design .registration-v2-illustration {
        text-align: center !important;
    }
}
