/* Global Styles */
:root {
    --primary-color: #ff9a9e;
    --primary-gradient: linear-gradient(120deg, #ff9a9e 0%, #fecfef 100%);
    --secondary-color: #a18cd1;
    --secondary-gradient: linear-gradient(120deg, #a18cd1 0%, #fbc2eb 100%);
    --accent-color: #333;
    --bg-color: #fffdf9;
    --bg-alt: #f8f9fa;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --padding-container: 2rem;
    --border-radius: 16px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--padding-container);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Shapes */
.shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: floatBlob 10s infinite alternate;
}

.shape-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #fecfef;
}

.shape-2 {
    bottom: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #e0c3fc;
    animation-delay: 2s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--text-main);
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    min-height: 85vh;
    /* Slightly taller */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* More space for text */
    gap: 4rem;
    align-items: center;
}

.hero-content .badge {
    background: rgba(255, 154, 158, 0.1);
    color: #ff758c;
    border: 1px solid #ff9a9e;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 1rem;
}

.time-box {
    background: white;
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 70px;
    border: 1px solid #eee;
}

.time-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    display: block;
}

.discount-tag {
    background: #FF6B6B;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 600;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.2rem 0;
}

.promo-text {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
    color: #888;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    /* Adds depth for potential 3D transforms */
}

/* Phone Mockup Styling */
.phone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 12px;
    /* Bezel thickness */
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px #333,
        inset 0 0 0 4px #000;
    /* Sophisticated bezel */
    position: relative;
    margin: 0 auto;
    border: 2px solid #444;
    /* Outer edge */
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    mask-image: radial-gradient(white, black);
    /* Fixes some border-radius clipping issues in some browsers */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.phone-frame:hover .phone-screen img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #000;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 20;
}

/* Add a reflection/glare effect */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 46px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 30;
}

/* Animations */
.pulse-anim {
    animation: pulse 2s infinite;
}

.floating-anim {
    animation: floatImg 6s ease-in-out infinite;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: glow 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes floatImg {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}


/* Features */
.features {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 200px;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: 0.4s;
    background: var(--bg-alt);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-md);
    border-color: #fce4ec;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.3);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Templates Catalog */
.templates {
    padding: 6rem 0;
    background-color: var(--bg-alt);
}

.section-title {
    margin-bottom: 4rem;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.template-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.preview-area {
    height: 350px;
    /* Increased height for better view */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.preview-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is shown without cropping */
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.template-card:hover .preview-area img {
    transform: scale(1.08);
    /* Slightly larger zoom */
}

.placeholder-preview {
    color: #999;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    border: 2px dashed #ddd;
    font-weight: 500;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.card-price .strike {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-weight: 400;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-sm {
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #25D366;
    color: white;
    flex: 1;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-sm:hover {
    background: #128C7E;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 6rem 0;
    background: #fdfdfd;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.badge-popular {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Specific colors for Plan Titles */
.pricing-card:nth-child(1) .pricing-header h3 {
    color: #A0A0A0;
}

/* Silver */
.pricing-card:nth-child(2) .pricing-header h3 {
    color: #D4AF37;
}

/* Gold */
.pricing-card:nth-child(3) .pricing-header h3 {
    color: #40E0D0;
}

/* Diamond */

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.pricing-header .duration {
    background: #f0f0f0;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.pricing-features li i.fa-star {
    color: #D4AF37;
}

.pricing-features li i.fa-crown {
    color: #FF6B6B;
}

.pricing-action .btn-primary {
    width: 100%;
    justify-content: center;
}

.catalog-more {
    text-align: center;
    margin-top: 4rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Online Payment Info */
.online-payment-info {
    padding: 4rem 0;
    background: white;
}

.info-box {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    color: #1565c0;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-box i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #2d3436;
    color: #f0f0f0;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: var(--font-serif);
    color: white;
    margin-bottom: 0.8rem;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    transition: 0.3s;
}

.footer-contact p:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        /* JS will toggle this */
        border-radius: 0 0 16px 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-only {
        display: block;
        width: 100%;
    }

    .mobile-only a {
        display: block;
        background: var(--primary-gradient);
        color: white !important;
        padding: 0.8rem;
        text-align: center;
        border-radius: 8px;
    }

    .sm-hidden {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .feature-card:hover {
        transform: none;
    }
}

/* Pricing Discounts Styling */
.price-container {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    /* Center horizontally since parent text-align center */
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.discount-label {
    background: #ffebeb;
    color: #ef476f;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Adjust pricing header to handle the new structure */
.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Enforce center alignment */
}

.pricing-card.popular .badge-popular {
    /* Ensure badge stays correct */
    z-index: 2;
}


/* Single Featured Pricing Card */
.pricing-card.single-featured {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 154, 158, 0.15);
}

.pricing-card.single-featured .pricing-header h3 {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.pricing-card.single-featured .pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card.single-featured .pricing-features li {
    border-bottom: none;
    padding: 0;
    font-size: 0.9rem;
    align-items: center;
}

.bonus-feature {
    background: #fff9c4;
    /* Light yellow */
    color: #fbc02d;
    /* Gold/Dark Yellow */
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px dashed #fbc02d;
    animation: pulse 3s infinite;
}

.pricing-card.single-featured .btn-primary {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

@media (max-width: 600px) {
    .pricing-card.single-featured .pricing-features {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    /* Mobile width usually */
    height: 85vh;
    border-radius: 20px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.modal-close:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.modal-body h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    background: white;
    margin: 0;
    z-index: 5;
    text-align: center;
}

.modal-iframe-container {
    flex: 1;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    /* Iframe handles its own scrolling usually */
}

.modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.modal-footer {
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid #eee;
    z-index: 5;
}

.input-block {
    display: flex;
    width: 100%;
    justify-content: center;
}