/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: 800;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 40px;
    border-radius: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 2rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
}

.main-nav a i {
    font-size: 1.125rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-header-login {
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-header-login:hover {
    color: var(--primary-color);
}

.btn-header-primary {
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    background: var(--gradient-bg);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    transition: all 0.3s ease;
}

.btn-header-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 0.75rem 0.375rem 0.375rem;
    background: rgba(var(--primary-color-rgb), 0.08);
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.user-btn:hover {
    background: rgba(var(--primary-color-rgb), 0.12);
    border-color: rgba(var(--primary-color-rgb), 0.25);
}

.user-btn i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    color: var(--text-light);
}

.user-dropdown.show .user-btn i {
    transform: rotate(180deg);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-bg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    z-index: 1000;
    display: none;
    min-width: 200px;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    list-style: none;
    animation: dropdownFade 0.2s ease;
}

.user-dropdown.show .dropdown-menu {
    display: block;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.625rem 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(var(--primary-color-rgb), 0.08);
    color: var(--primary-color);
}

.dropdown-item i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
    color: var(--text-light);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

.dropdown-item.text-danger {
    color: var(--error-color);
}

.dropdown-item.text-danger:hover {
    background: var(--error-bg);
}

.dropdown-item.text-danger i {
    color: var(--error-color);
}

.dropdown-divider {
    height: 1px;
    margin: 0.375rem 0;
    background: var(--border-color);
}

.d-none {
    display: none;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(var(--primary-color-rgb), 0.08);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 10s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-bg);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(var(--primary-color-rgb), 0.15);
    border-color: rgba(var(--primary-color-rgb), 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(var(--primary-color-rgb), 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: var(--gradient-bg);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(var(--primary-color-rgb), 0.35);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.4;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 3rem 0 6rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.05) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatBubble 12s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.04) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite reverse;
}

/* Animated floating particles */
.services-section .container::before,
.services-section .container::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 6s ease-in-out infinite;
}

.services-section .container::before {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.services-section .container::after {
    bottom: 30%;
    right: 8%;
    width: 8px;
    height: 8px;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: serviceCardIn 0.6s ease forwards;
    position: relative;
}

/* Rotating gradient border on hover */
.service-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 0%,
        rgba(var(--primary-color-rgb), 0.5) 5%,
        var(--primary-color) 10%,
        rgba(var(--primary-color-rgb), 0.5) 15%,
        transparent 25%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
    animation: rotateBorder 3s linear infinite paused;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: var(--white);
    z-index: -1;
}

@keyframes rotateBorder {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Alternating entrance animations */
.service-card:nth-child(1) { animation: serviceCardSlideLeft 0.6s ease forwards; animation-delay: 0.1s; }
.service-card:nth-child(2) { animation: serviceCardSlideUp 0.6s ease forwards; animation-delay: 0.15s; }
.service-card:nth-child(3) { animation: serviceCardSlideRight 0.6s ease forwards; animation-delay: 0.2s; }
.service-card:nth-child(4) { animation: serviceCardSlideRight 0.6s ease forwards; animation-delay: 0.25s; }
.service-card:nth-child(5) { animation: serviceCardSlideUp 0.6s ease forwards; animation-delay: 0.3s; }
.service-card:nth-child(6) { animation: serviceCardSlideLeft 0.6s ease forwards; animation-delay: 0.35s; }

@keyframes serviceCardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes serviceCardSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes serviceCardSlideRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes serviceCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(var(--primary-color-rgb), 0.2);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05), rgba(var(--primary-color-rgb), 0.1));
    flex-shrink: 0;
}

/* Shimmer effect overlay */
.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    z-index: 2;
    transition: left 0.7s ease;
    transform: skewX(-20deg);
}

.service-card:hover .service-image::before {
    left: 150%;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(var(--primary-color-rgb), 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: saturate(1);
}

.service-card:hover .service-image img {
    transform: scale(1.15) rotate(2deg);
    filter: saturate(1.2);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(var(--primary-color-rgb), 0.2);
    position: relative;
}

.service-placeholder i {
    animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.service-card:hover .service-placeholder i {
    animation: placeholderBounce 0.6s ease;
    color: rgba(var(--primary-color-rgb), 0.4);
}

@keyframes placeholderBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
}

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    overflow: hidden;
}

.service-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-badge {
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.4);
}

.service-card:hover .service-badge::before {
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    line-height: 1.4;
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-bg);
    transition: width 0.4s ease;
}

.service-card:hover .service-title::after {
    width: 100%;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: auto;
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(var(--primary-color-rgb), 0.05);
    transition: all 0.3s ease;
}

.service-card:hover .service-features span {
    background: rgba(var(--primary-color-rgb), 0.1);
    transform: translateX(3px);
}

.service-features span i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover .service-features span i {
    transform: scale(1.2);
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #fafbfc;
    flex-shrink: 0;
    margin-top: auto;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.6875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.price-amount.price-free {
    color: var(--primary-color);
}

.service-card:hover .price-amount {
    transform: scale(1.1);
    text-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.service-card:hover .price-amount.price-free {
    text-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.btn-service {
    padding: 0.625rem 1.25rem;
    background: var(--gradient-bg);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(4px);
}

.btn-view-all {
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-view-all:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view-all:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.3);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: var(--white);
}

.cta-card {
    padding: 4rem;
    background: var(--gradient-bg);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 25px 80px rgba(var(--primary-color-rgb), 0.25);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 450px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== FOOTER ===== */
.main-footer {
    position: relative;
    background: linear-gradient(180deg, 
        color-mix(in srgb, var(--primary-color) 92%, #000 8%) 0%, 
        color-mix(in srgb, var(--primary-color) 80%, #000 20%) 100%
    );
    color: rgba(255, 255, 255, 0.75);
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--white);
    transform: translateY(-99%);
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-content {
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 38px;
    border-radius: 10px;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.375rem;
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact .label {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal span {
    opacity: 0.3;
}

/* Mobile footer links - hidden on desktop */
.footer-mobile-links {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        z-index: 1000;
    }
    
    .navbar-collapse.show {
        display: flex !important;
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
    }
    
    .main-nav a {
        width: 100%;
        padding: 0.875rem 1rem;
        border-radius: 10px;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .btn-header-login,
    .btn-header-primary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
    }
    
    .user-dropdown {
        width: 100%;
    }
    
    .user-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    /* Features Section */
    .features-section {
        padding: 4rem 0 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 2rem 0 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-card {
        flex-direction: column;
        padding: 2.5rem 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section.footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-contact i {
        margin-top: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-badge {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Features */
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-footer {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .service-price {
        text-align: center;
    }
    
    .btn-service {
        width: 100%;
        justify-content: center;
    }
    
    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer - Mobile Redesign */
    .footer-content {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.5rem;
    }
    
    /* Brand section - Always visible */
    .footer-section.footer-brand {
        text-align: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        max-width: 300px;
        margin: 0 auto 1.25rem;
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .footer-socials {
        justify-content: center;
        gap: 0.625rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Other footer sections - Horizontal scroll on mobile */
    .footer-section:not(.footer-brand) {
        display: none;
    }
    
    /* Mobile footer links - Horizontal row */
    .footer-mobile-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-mobile-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.8125rem;
        font-weight: 500;
        padding: 0.375rem 0;
        transition: color 0.2s ease;
    }
    
    .footer-mobile-links a:hover {
        color: var(--white);
    }
    
    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding-top: 1.25rem;
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        opacity: 0.7;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem 0.5rem;
    }
    
    .footer-legal a {
        font-size: 0.6875rem;
        padding: 0.25rem 0;
    }
    
    .footer-legal span {
        font-size: 0.5rem;
        opacity: 0.4;
    }
}

@media (max-width: 575.98px) {
    .header-content {
        padding: 0.625rem 0;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    /* Features */
    .features-section {
        padding: 3rem 0 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    /* Services */
    .services-section {
        padding: 1.5rem 0 3rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .service-features {
        font-size: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer-content {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 1.25rem;
    }
    
    .footer-logo {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        height: 32px;
    }
    
    .footer-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .footer-contact li {
        margin-bottom: 0.75rem;
    }
    
    .footer-contact a,
    .footer-contact span {
        font-size: 0.875rem;
    }
    
    .footer-contact .label {
        font-size: 0.625rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.8125rem;
        padding-top: 1.25rem;
    }
    
    .footer-legal {
        gap: 0.375rem 0.5rem;
    }
    
    .footer-legal a {
        font-size: 0.75rem;
    }
    
    .footer-legal span {
        font-size: 0.625rem;
    }
    
    /* Notifications */
    .notification {
        min-width: auto;
        max-width: calc(100vw - 32px);
        right: 16px;
        top: 16px;
        padding: 14px;
    }

    .notification-content {
        gap: 10px;
    }

    .notification .notification-icon {
        width: 36px;
        height: 36px;
    }

    .notification .notification-icon svg {
        width: 18px;
        height: 18px;
    }

    .notification .notification-title {
        font-size: 13px;
    }

    .notification .notification-message {
        font-size: 12px;
    }

    .notification .notification-close {
        width: 24px;
        height: 24px;
    }
}

/* ===== TOAST NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    z-index: 99999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 360px;
    max-width: 420px;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--primary-color);
}

.notification-error {
    border-left-color: var(--error-color, #ef4444);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.notification-success .notification-icon {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.notification-success .notification-icon svg {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.notification-error .notification-icon {
    background: var(--error-bg, rgba(239, 68, 68, 0.1));
    color: var(--error-color, #ef4444);
}

.notification-error .notification-icon svg {
    color: var(--error-color, #ef4444);
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Sparkle effect for success */
.notification-success .notification-icon::before {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    animation: notificationSparkle 1.5s ease-in-out infinite;
}

@keyframes notificationSparkle {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.4;
}

.notification-message {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    word-wrap: break-word;
}

.notification-close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 4px;
}

.notification-close:hover {
    background: var(--bg-light, #f3f4f6);
    color: var(--text-dark);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.notification-progress-bar {
    height: 100%;
    width: 100%;
    transform-origin: left;
    animation: notificationProgress 5s linear forwards;
}

.notification-success .notification-progress-bar {
    background: var(--primary-color);
}

.notification-error .notification-progress-bar {
    background: var(--error-color, #ef4444);
}

@keyframes notificationProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* ===== NOTIFICATION MODAL ===== */
.notification-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-modal.show {
    opacity: 1;
    visibility: visible;
}

.notification-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.notification-modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-modal.show .notification-modal-container {
    transform: scale(1) translateY(0);
}

.notification-modal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.notification-modal-content::before,
.notification-modal-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.notification-modal-content::before {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

.notification-modal-content::after {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -50px;
}

.notification-modal-success .notification-modal-content::before,
.notification-modal-success .notification-modal-content::after {
    background: var(--primary-color);
}

.notification-modal-error .notification-modal-content::before,
.notification-modal-error .notification-modal-content::after {
    background: var(--error-color);
}

/* Icon */
.notification-modal-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.notification-modal-icon .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.notification-modal-icon .icon-circle.success {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.15), rgba(var(--primary-color-rgb), 0.05));
    color: var(--primary-color);
}

.notification-modal-icon .icon-circle.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    color: var(--error-color);
}

.notification-modal-icon .icon-circle svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

/* Success animation */
.notification-modal-success .icon-circle.success {
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(var(--primary-color-rgb), 0);
    }
}

/* Error animation */
.notification-modal-error .icon-circle.error {
    animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

/* Checkmark animation for success */
.notification-modal-success .icon-circle.success svg path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: checkDraw 0.5s ease forwards 0.2s;
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* X animation for error */
.notification-modal-error .icon-circle.error svg path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: xDraw 0.4s ease forwards 0.2s;
}

@keyframes xDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Title */
.notification-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.notification-modal-success .notification-modal-title {
    color: var(--primary-color);
}

.notification-modal-error .notification-modal-title {
    color: var(--error-color);
}

/* Message */
.notification-modal-message {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Button */
.notification-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    min-width: 140px;
}

.notification-modal-btn.success {
    background: var(--gradient-bg);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.35);
}

.notification-modal-btn.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(var(--primary-color-rgb), 0.45);
}

.notification-modal-btn.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

.notification-modal-btn.error:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.45);
}

/* Confetti effect for success */
.notification-modal-success .notification-modal-content::before {
    animation: confettiFloat 3s ease-in-out infinite;
}

@keyframes confettiFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 575.98px) {
    .notification-modal {
        padding: 1rem;
    }
    
    .notification-modal-content {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .notification-modal-icon .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .notification-modal-icon .icon-circle svg {
        width: 35px;
        height: 35px;
    }
    
    .notification-modal-title {
        font-size: 1.25rem;
    }
    
    .notification-modal-message {
        font-size: 0.9375rem;
    }
    
    .notification-modal-btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}