/* V'Kreates Premium Agency Styles */

:root {
    /* Colors */
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
    --surface-color-hover: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --accent-color: #FF6600;
    /* Vibrant Orange */
    --accent-hover: #e65c00;
    --border-color: #dee2e6;
    --success-color: #2ecc71;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6600 0%, #ff8c00 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);

    /* Spacing */
    --container-padding: 1.5rem;
    --section-spacing: 4rem;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --card-radius: 16px;
    --btn-radius: 50px;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    padding: 0 var(--container-padding);
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.section {
    padding: var(--section-spacing) 0;
}

.text-center {
    text-align: center;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    gap: 0.5rem;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

/* Mobile Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 70px;
    /* Header height approx */
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--surface-color);
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu.active {
    height: auto;
    padding-bottom: 2rem;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.btn-chat {
    color: var(--accent-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    background: rgba(255, 102, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    z-index: 1;
    pointer-events: none;
}

/* Services Section */
.section-header {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    /* Reset link underline */
    color: inherit;
    /* Reset text color */
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: var(--surface-color-hover);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

/* Colorful Service Card Icons */
.service-card:nth-child(1) .icon-box {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.service-card:nth-child(1):hover .icon-box {
    background: #8B5CF6;
    color: #fff;
}

.service-card:nth-child(2) .icon-box {
    background: rgba(59, 130, 246, 0.12);
    color: #3B82F6;
}

.service-card:nth-child(2):hover .icon-box {
    background: #3B82F6;
    color: #fff;
}

.service-card:nth-child(3) .icon-box {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.service-card:nth-child(3):hover .icon-box {
    background: #10B981;
    color: #fff;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 2rem 1.5rem;
    border-radius: var(--card-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.04);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Colorful Feature Icons */
.feature-item:nth-child(1) i {
    color: #EF4444;
}

.feature-item:nth-child(2) i {
    color: #10B981;
}

.feature-item:nth-child(3) i {
    color: #8B5CF6;
}

.feature-item:nth-child(4) i {
    color: #3B82F6;
}

.feature-item:nth-child(5) i {
    color: #EC4899;
}

.feature-item:nth-child(1):hover {
    border-color: #EF4444;
}

.feature-item:nth-child(2):hover {
    border-color: #10B981;
}

.feature-item:nth-child(3):hover {
    border-color: #8B5CF6;
}

.feature-item:nth-child(4):hover {
    border-color: #3B82F6;
}

.feature-item:nth-child(5):hover {
    border-color: #EC4899;
}

.feature-item span {
    font-weight: 600;
    font-size: 1rem;
}

/* Featured Work */
.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.work-item {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
}

.work-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #f0f0f0;
    transition: transform 0.6s ease;
}

.placeholder-gradient {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.work-item:hover .work-thumb {
    transform: scale(1.05);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

.work-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.work-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}




/* Colorful About Us Icons */
.about-item:nth-child(1) i {
    color: #8B5CF6;
}

.about-item:nth-child(2) i {
    color: #3B82F6;
}

.about-item:nth-child(3) i {
    color: #EC4899;
}

.about-item:nth-child(4) i {
    color: #10B981;
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-social a.social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border: none;
    color: #fff;
}

.footer-social a.social-youtube {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.footer-social a.social-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 0.9rem;
}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.float-btn.whatsapp {
    background-color: #25D366;
    border-color: #25D366;
}

.float-btn.whatsapp:hover {
    background-color: #1ebc57;
}

.float-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border: none;
}

/* Responsive Desktops */
@media (min-width: 768px) {
    :root {
        --container-padding: 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: auto;
    }

    .services-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        padding: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 in a row */
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        background: none;
        border: none;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
        padding: 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlight-container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .highlight-content {
        max-width: 60%;
    }

    .highlight-content p {
        margin-left: 0;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Website Page Specific Styles */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    /* Header + spacing */
    padding-bottom: 2rem;
    overflow: hidden;
}

.bg-surface {
    background-color: var(--surface-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: rgba(0, 0, 0, 0.03);
    padding: 2rem;
    border-radius: var(--card-radius);
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.process-step:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tech Grid */
.tech-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.tech-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Tablet & Desktop Process Styles */
@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .process-step {
        flex: 1;
    }
}

/* About Us Section */
.about-us-section {
    background-color: var(--surface-color);
    /* Match theme similar to hero or clean white */
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text-block p {
    margin-bottom: 1.5rem;
}

.about-text-block .lead-text {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--card-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.about-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-mission-vision {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        border-bottom: none;
        overflow: visible;
        padding-bottom: 0;
    }

    .nav-list {
        flex-direction: row;
        padding-top: 0;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1rem;
        color: var(--text-primary);
    }

    .nav-link:hover {
        color: var(--accent-color);
    }
}

/* Featured Invites Section */
.featured-invites-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.invites-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    border-radius: 30px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 102, 0, 0.1);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.05);
    position: relative;
}

.invites-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.invites-content {
    flex: 1;
    z-index: 1;
    text-align: center;
}

.featured-tag {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 102, 0, 0.2);
    display: table;
    /* Forces block-like behavior but shrink-wraps width */
}

.text-black {
    color: var(--text-primary);
}

.invites-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: inline-block;
    font-weight: 700;
}

.invites-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.invites-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    transition: var(--transition-fast);
}

.btn-secondary-outline:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.invites-mockup {
    flex: 1;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

.mockup-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    background: #fff;
    padding: 10px;
    /* Frame border */
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.mockup-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Responsive */
@media (min-width: 992px) {
    .invites-container {
        flex-direction: column;
        text-align: center;
        padding: 4rem;
        gap: 3rem;
    }

    .invites-content {
        text-align: center;
    }

    .invites-buttons {
        justify-content: center;
    }
}