/*
Theme Name: Yukolab Theme
Author: Ultimatoom Agency
Author URI: https://ultimatoom.com
Description: Theme for Digital Marketing Agency
Version: 1.0.1
Text Domain: yukolab
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* UCollab Core Style - Centralized CSS */

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

p {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1500px;
    margin: 0 20px;
    padding: 10px 40px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5px;
    position: relative;
}

.site-header {
    padding: 24px 0;
}

.logo img {
    max-height: 48px;
    width: auto;
}

.logo-section img {
    max-height: 68px;
    width: auto;
    margin-bottom: 20px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links .cta-nav {
    background-color: #2563eb;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    margin-left: 8px;
}

.nav-links .cta-nav:hover {
    background-color: #1d4ed8;
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #334155;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    padding: 100px 32px 32px;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #2563eb;
}

.mobile-menu .cta-nav-mobile {
    background-color: #2563eb;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 40px;
    font-weight: 600;
    margin-top: 16px;
    border-bottom: none;
}

.mobile-menu .cta-nav-mobile:hover {
    background-color: #1d4ed8;
    color: white;
}

/* Hero Section */
.hero {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.857fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-content .keterangan,
.hero-badge {
    display: inline-block;
    background-color: #eef2ff;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.hero-highlight {
    color: #2563eb;
}

.hero-content .subheadline {
    font-size: 1.0rem;
    color: #475569;
    margin-bottom: 32px;
    max-width: 700px;
}

.company-credentials {
    display: flex;
    gap: 32px;
    margin: 40px 0 32px 0;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    max-width: 600px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-icon {
    background-color: #eef2ff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.3rem;
}

.credential-text {
    font-weight: 500;
    color: #0f172a;
}

.credential-text small {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: #64748b;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 90%;
    height: auto;
    border-radius: 16px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1e293b;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    transition: background-color 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f8fafc;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-badges .trust-badges-title {
    text-align: center;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.client-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo-item:hover {
    color: #2563eb;
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
}

.client-logo-item i {
    font-size: 3rem;
    transition: all 0.3s ease;
}

.client-logo-item .logo-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.client-logo-item:hover .logo-label {
    color: #2563eb;
}

/* Problem Section */
.problem {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #475569;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    background: #f8fafc;
    padding: 36px 28px;
    border-radius: 20px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.problem-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.problem-card p {
    color: #475569;
}

/* Kategori BPOM Section Styles */
.categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
}

.category-icon {
    width: 64px;
    height: 64px;
    background-color: #f1f5f9;
    color: #2563eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background-color: #2563eb;
    color: #ffffff;
    transform: scale(1.1);
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.category-info p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: #f8fafc;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2ff;
}

.advantage-icon {
    background-color: #eef2ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Solutions Section */
.solutions {
    padding: 80px 0px 20px 0px;
    background-color: #f8fafc;
}

.solutions-header {
    text-align: center;
    margin-bottom: 50px;
}

.solutions-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
}

.solution-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    max-width: 60px;
    max-height: 60px;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon img {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #eef2ff;
}

.value-icon {
    background-color: #eef2ff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.value-content p {
    color: #475569;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.clients h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.clients-sub {
    color: #475569;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.client-logos-image {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.client-logos-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2ff;
    transition: transform 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.testimonial-card i {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 28px;
    color: #334155;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: #0f172a;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
}

/* Catalog Preview */
.catalog-preview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 48px 0;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2ff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
}

.product-image {
    height: 200px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1rem;
}

.product-image i {
    font-size: 3rem;
    color: #94a3b8;
}

.product-content {
    padding: 28px;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 0;
}

.product-desc {
    color: #475569;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-order {
    display: block;
    background-color: #2563eb;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-order:hover {
    background-color: #1d4ed8;
}

/* Resources */
.resources {
    padding: 20px 0px 60px 0px;
    background-color: #f8fafc;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eef2ff;
    transition: transform 0.2s;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.article-image {
    height: 190px;
    width: 100%;
    background-color: #ffffff;
    display: block;
    justify-content: center;
    object-fit: cover;
    color: #64748b;
}

.article-image i {
    font-size: 3rem;
    color: #94a3b8;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    line-height: 1.5;
    color: #0f172a;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Ebook Promo (for service pages) */
.ebook-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.ebook-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ebook-image i {
    font-size: 10rem;
    opacity: 0.8;
}

.btn-ebook {
    display: inline-block;
    background-color: white;
    color: #2563eb;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-ebook:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-left {
    padding-right: 20px;
}

.cta-badge {
    display: inline-block;
    background-color: #eef2ff;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cta-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #334155;
}

.benefit-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 24px;
}

/* Forms */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #eef2ff;
}

.form-container h3 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 28px;
    text-align: center;
}

.form-group,
.form-row {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea,
.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.cta-submit-btn,
.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 20px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-submit-btn:hover,
.btn-submit:hover {
    background-color: #1d4ed8;
}

.form-note {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 16px;
}

/* Modal Pop-up */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideDown 0.3s ease;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
    z-index: 10;
}

.close-modal:hover {
    color: #1e293b;
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    /* Membuat putihnya agak soft */
}


.footer-col p {
    color: #94a3b8;
    margin: 20px 0;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #2563eb;
    border-radius: 2px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-contact i {
    color: #2563eb;
    font-size: 1.1rem;
    width: 20px;
    margin-top: 3px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #64748b;
    margin-top: 40px;
}

/* Utilities */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .value-grid,
    .footer-grid,
    .cta-wrapper,
    .ebook-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .solutions-grid,
    .problem-grid,
    .testimonial-grid,
    .catalog-grid,
    .article-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    .company-credentials {
        flex-direction: column;
        padding-left: 70px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-grid {
        gap: 40px;
        padding: 20px 15px 40px 15px;
    }

    .solutions-grid,
    .problem-grid,
    .testimonial-grid,
    .catalog-grid,
    .article-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: left;
    }


}

.footer-contact li {
    justify-content: left;
}

.cta-left {
    text-align: center;
    padding-right: 0;
}

.cta-benefits {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    padding: 30px 20px;
}

.modal-content {
    padding: 30px 20px;
}


/* Footer Map */
.footer-map-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    display: inline-block;
}

.footer-map-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-map-container img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

.footer-map-container:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .client-logos-wrapper {
        gap: 30px 10px;
    }

    .client-logo-item {
        width: calc(33.33% - 15px);
        display: flex;
        justify-content: center;
    }

    .client-logo-item img {
        max-width: 100%;
        height: auto !important;
    }
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
}

/* Contact Form 7 Global Styling */
.wpcf7 {
    width: 100%;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #0f172a;
    background-color: #f8fafc;
    transition: all 0.2s;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='C19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

.wpcf7 .wpcf7-submit {
    display: inline-block;
    width: 100%;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.wpcf7 .wpcf7-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.wpcf7 .wpcf7-spinner {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Response Messages */
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 16px !important;
    border-radius: 12px !important;
    border: 2px solid transparent !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #ecfdf5 !important;
    border-color: #10b981 !important;
    color: #065f46 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    background-color: #fef2f2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 4px;
    font-weight: 500;
}

/* Custom design for CTA section forms */
.cta-right .cf7-wrapper {
    background: #ffffff;
    padding: 10px;
}

@media (max-width: 768px) {
    .wpcf7 .wpcf7-submit {
        font-size: 1rem;
        padding: 14px 28px;
    }
}