.elementor-44386 .elementor-element.elementor-element-777192a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ed4a82b *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warm-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gold-gradient: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    --primary-color: #667eea;
    --success-color: #11998e;
    --text-dark: #1a202c;
    --text-medium: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-medium);
    background: var(--primary-gradient);
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Background Animation */
.nkdn-background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nkdn-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: nkdn-float 20s infinite ease-in-out;
}

.nkdn-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.nkdn-shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.nkdn-shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 20%;
    animation-delay: 10s;
}

.nkdn-shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes nkdn-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Container */
.nkdn-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    padding: 60px;
    position: relative;
    z-index: 1;
    animation: nkdn-fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes nkdn-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Header */
.nkdn-success-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.nkdn-success-icon-wrapper {
    margin-bottom: 25px;
    animation: nkdn-scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.nkdn-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--success-gradient);
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(17, 153, 142, 0.4);
    position: relative;
}

.nkdn-success-icon svg {
    width: 50px;
    height: 50px;
    animation: nkdn-checkmark 0.5s ease-in-out 0.8s both;
}

@keyframes nkdn-checkmark {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

@keyframes nkdn-scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0deg);
    }
}

.nkdn-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: nkdn-fadeIn 0.6s ease-out 0.4s both;
}

/* Confetti Animation */
.nkdn-confetti {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
}

.nkdn-confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    top: 0;
    opacity: 0;
    animation: nkdn-confettiFall 3s ease-in-out infinite;
}

.nkdn-confetti-piece:nth-child(1) {
    left: 10%;
    background: #f093fb;
    animation-delay: 0s;
}

.nkdn-confetti-piece:nth-child(2) {
    left: 25%;
    background: #38ef7d;
    animation-delay: 0.3s;
}

.nkdn-confetti-piece:nth-child(3) {
    left: 40%;
    background: #ffd89b;
    animation-delay: 0.6s;
}

.nkdn-confetti-piece:nth-child(4) {
    left: 60%;
    background: #667eea;
    animation-delay: 0.9s;
}

.nkdn-confetti-piece:nth-child(5) {
    left: 75%;
    background: #f5576c;
    animation-delay: 1.2s;
}

.nkdn-confetti-piece:nth-child(6) {
    left: 90%;
    background: #11998e;
    animation-delay: 1.5s;
}

@keyframes nkdn-confettiFall {
    0% {
        top: -10%;
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: rotate(720deg);
    }
}

@keyframes nkdn-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Thank You Section */
.nkdn-thank-you-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.nkdn-thank-you-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.nkdn-intro-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Response Time Cards */
.nkdn-response-time {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.nkdn-time-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nkdn-time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nkdn-time-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.nkdn-time-card:hover::before {
    transform: scaleY(1);
}

.nkdn-time-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.nkdn-time-content {
    flex: 1;
}

.nkdn-time-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.nkdn-time-value {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Info Box */
.nkdn-info-box {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8b3 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid #ffd89b;
    position: relative;
    overflow: hidden;
}

.nkdn-info-box::before {
    content: '💡';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
}

.nkdn-info-box p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Emergency Contact */
.nkdn-emergency-contact {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 2px solid #fc8181;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.nkdn-emergency-contact:hover {
    transform: scale(1.02);
}

.nkdn-emergency-icon {
    font-size: 50px;
    animation: nkdn-ring 2s ease-in-out infinite;
}

@keyframes nkdn-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.nkdn-emergency-content {
    flex: 1;
    text-align: center;
}

.nkdn-emergency-title {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.nkdn-hotline {
    display: inline-block !important;
    color: #e53e3e !important;
    background-color: transparent !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 800 !important;
    font-size: 32px !important;
    text-decoration: none !important;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    letter-spacing: 1px !important;
}

.nkdn-hotline:hover {
    color: #c53030 !important;
    transform: scale(1.05);
    text-decoration: none !important;
}

.nkdn-emergency-apps {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.nkdn-app-badge {
    background: white;
    color: #e53e3e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Section Header */
.nkdn-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.nkdn-section-header h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    color: var(--text-dark) !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.5px !important;
    position: relative;
    display: inline-block;
}

.nkdn-section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.nkdn-section-intro {
    font-family: 'Nunito', sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: var(--text-light) !important;
    margin-top: 20px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8 !important;
}

/* Stats Grid */
.nkdn-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.nkdn-stat-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nkdn-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.nkdn-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.nkdn-stat-card:hover::before {
    opacity: 0.05;
}

.nkdn-stat-card > * {
    position: relative;
    z-index: 1;
}

.nkdn-stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: nkdn-bounce 2s ease-in-out infinite;
}

.nkdn-stat-card:nth-child(1) .nkdn-stat-icon {
    animation-delay: 0s;
}

.nkdn-stat-card:nth-child(2) .nkdn-stat-icon {
    animation-delay: 0.2s;
}

.nkdn-stat-card:nth-child(3) .nkdn-stat-icon {
    animation-delay: 0.4s;
}

@keyframes nkdn-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.nkdn-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.nkdn-stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.nkdn-stat-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Locations */
.nkdn-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.nkdn-location-card {
    background: linear-gradient(135deg, #f7fafc 0%, white 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nkdn-location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.nkdn-location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.nkdn-location-card:hover::before {
    transform: scale(1);
}

.nkdn-location-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.nkdn-location-icon {
    font-size: 50px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.nkdn-address {
    display: block;
    color: #2d3748 !important;
    background-color: transparent !important;
    text-decoration: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.nkdn-location-card:hover .nkdn-address {
    color: #667eea !important;
}

.nkdn-map-link {
    position: relative;
    z-index: 1;
}

.nkdn-map-link a {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    color: #667eea !important;
    background-color: transparent !important;
    text-decoration: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    border: 2px solid #667eea !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.nkdn-map-link a:hover {
    background: #667eea !important;
    background-color: #667eea !important;
    color: white !important;
    transform: scale(1.05);
    border-color: #667eea !important;
}

/* Contact Grid */
.nkdn-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.nkdn-contact-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.nkdn-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.nkdn-contact-icon {
    font-size: 35px;
    margin-bottom: 12px;
}

.nkdn-contact-label {
    font-family: 'Nunito', sans-serif !important;
    font-size: 13px !important;
    color: var(--text-light) !important;
    margin-bottom: 8px;
    font-weight: 500 !important;
}

.nkdn-contact-value {
    display: block !important;
    color: #667eea !important;
    background-color: transparent !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.nkdn-contact-value:hover {
    color: #764ba2 !important;
    text-decoration: underline !important;
}

/* Working Hours Card */
.nkdn-working-hours-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.nkdn-hours-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.nkdn-hours-content {
    flex: 1;
}

.nkdn-hours-title {
    font-family: 'Nunito', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    letter-spacing: 0.5px !important;
    color: white !important;
}

.nkdn-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nkdn-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nkdn-day {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: white !important;
}

.nkdn-time {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    color: white !important;
}

/* Footer Message */
.nkdn-footer-message {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    margin-top: 50px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.nkdn-footer-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.nkdn-footer-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: nkdn-sparkle 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes nkdn-sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.nkdn-footer-message p {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.nkdn-footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.nkdn-decoration-line {
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.nkdn-decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .nkdn-container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .nkdn-success-icon {
        width: 80px;
        height: 80px;
    }

    .nkdn-success-icon svg {
        width: 40px;
        height: 40px;
    }

    .nkdn-success-title {
        font-size: 32px;
    }

    .nkdn-thank-you-section h2 {
        font-size: 20px;
    }

    .nkdn-section-header h3 {
        font-size: 26px;
    }

    .nkdn-response-time {
        grid-template-columns: 1fr;
    }

    .nkdn-emergency-contact {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .nkdn-hotline {
        font-size: 28px;
    }

    .nkdn-stats-grid {
        grid-template-columns: 1fr;
    }

    .nkdn-locations {
        grid-template-columns: 1fr;
    }

    .nkdn-contact-grid {
        grid-template-columns: 1fr;
    }

    .nkdn-working-hours-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .nkdn-hours-item {
        flex-direction: column;
        gap: 5px;
    }

    .nkdn-footer-message p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px 5px;
    }

    .nkdn-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .nkdn-success-icon {
        width: 70px;
        height: 70px;
    }

    .nkdn-success-title {
        font-size: 26px;
    }

    .nkdn-thank-you-section h2 {
        font-size: 18px;
    }

    .nkdn-intro-text,
    .nkdn-section-intro {
        font-size: 15px;
    }

    .nkdn-section-header h3 {
        font-size: 22px;
    }

    .nkdn-time-card {
        padding: 20px;
    }

    .nkdn-time-icon {
        font-size: 32px;
    }

    .nkdn-time-value {
        font-size: 16px;
    }

    .nkdn-info-box {
        padding: 25px 20px;
    }

    .nkdn-emergency-icon {
        font-size: 40px;
    }

    .nkdn-hotline {
        font-size: 24px;
    }

    .nkdn-stat-number {
        font-size: 40px;
    }

    .nkdn-stat-label {
        font-size: 16px;
    }

    .nkdn-location-icon {
        font-size: 40px;
    }

    .nkdn-hours-title {
        font-size: 18px;
    }

    .nkdn-footer-message {
        padding: 30px 20px;
    }

    .nkdn-footer-message p {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }

    .nkdn-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .nkdn-background-animation,
    .nkdn-confetti {
        display: none;
    }
}/* End custom CSS */