@import url("../fonts/raleway/style.css");

/* ==========================================
   JDEVELOPA - Modern Startup Design System
   ========================================== */

:root {
    --primary: #0b4883;
    --primary-light: #1a6bc4;
    --primary-dark: #063264;
    --accent: #f7941e;
    --accent-hover: #e47f06;
    --green: #22c55e;
    --green-hover: #16a34a;
    --navy: #062a4d;
    --navy-dark: #01213f;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.05), 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Raleway Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Space Grotesk', 'Raleway Bold', sans-serif;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p { font-family: 'Inter', 'Raleway Regular', sans-serif; line-height: 1.7; color: var(--text); }

button.btn, .btn:not(.close):not(.mfp-close), a.btn:not([href]):not([tabindex]) {
    font-family: 'Inter', 'Raleway Bold', sans-serif;
    font-weight: 600;
}

/* Header */
#header .header-inner #logo img, #header #header-wrap #logo img { height: 45px; }

#mainMenu nav>ul>li>a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-transform: none;
}

#mainMenu nav>ul>li.hover-active>a, #mainMenu nav>ul>li.current>a,
#mainMenu nav>ul>li:hover>a, #mainMenu nav>ul>li:focus>a { color: var(--primary); }

#mainMenu nav>ul>li>a:after {
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: block;
    position: absolute;
    margin-top: -28px;
    margin-left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

#mainMenu nav>ul>li:hover>a:after { transform-origin: bottom left; transform: scaleX(1); }
.dark #mainMenu nav>ul>li>a { color: #ffffff !important; }

/* Hero */
.inspiro-slider .slide .slide-captions h1 {
    text-transform: none;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem !important;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}

.inspiro-slider .slide .slide-captions>p { font-size: 1.15rem; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.bg-overlay {
    background: linear-gradient(135deg, rgba(6,42,77,0.85) 0%, rgba(11,72,131,0.7) 100%) !important;
}

/* Buttons */
.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    border: none !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(11,72,131,0.3);
    text-transform: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
}

.btn-modern-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(11,72,131,0.4) !important;
}

.btn-modern-outline {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    text-transform: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
}

.btn-modern-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.8) !important;
    transform: translateY(-2px) !important;
}

.btn-green { background-color: var(--green) !important; border-color: var(--green) !important; border-radius: 50px !important; }
.btn-green:hover { background-color: var(--green-hover) !important; border-color: var(--green-hover) !important; }
.btn-navy { background-color: var(--primary) !important; border-color: var(--primary) !important; border-radius: 50px !important; }

/* Sections */
.section-modern { padding: 100px 0; position: relative; }
.section-header { margin-bottom: 60px; }

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label-light { color: var(--accent) !important; }

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title.text-light { color: #ffffff !important; }

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

.section-desc.text-light { color: rgba(255,255,255,0.8) !important; }

/* ==========================================
   SERVICES V2 - Startup Style
   ========================================== */
.section-services-v2 { background: var(--bg-light); }

/* Featured AI card */
.svc-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.svc-featured::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247,148,30,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.svc-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.svc-tag-ai {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    color: #fff;
}

.svc-featured-title {
    color: #ffffff !important;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.svc-featured-text {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 520px;
}

.svc-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.svc-featured-tags span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* Orbit visual */
.svc-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
}

.svc-orbit {
    position: relative;
    width: 240px;
    height: 240px;
}

.svc-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(247,148,30,0.4);
    z-index: 2;
}

.svc-orbit-center i { color: #fff; font-size: 36px; }

.svc-orbit::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: orbit-spin 20s linear infinite;
}

.svc-orbit-item {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbit-float 3s ease-in-out infinite;
}

.svc-orbit-item i { color: #ffffff; font-size: 18px; }
.svc-orbit-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.svc-orbit-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.75s; }
.svc-orbit-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.svc-orbit-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 2.25s; }

@keyframes orbit-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes orbit-float {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-8px) translateX(-50%); }
}
.svc-orbit-2 { animation-name: orbit-float-x; }
.svc-orbit-4 { animation-name: orbit-float-x; }
@keyframes orbit-float-x {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-8px); }
}

/* Service cards v2 */
.svc-grid { margin-bottom: 40px; }

.svc-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.svc-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.svc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.svc-card-icon i { font-size: 22px; color: #fff; }

.svc-icon-saas { background: linear-gradient(135deg, var(--accent), #ff6b35); }
.svc-icon-dev { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.svc-icon-api { background: linear-gradient(135deg, var(--green), #059669); }
.svc-icon-cloud { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

.svc-card-v2 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.svc-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0;
    flex-grow: 1;
}

.svc-card-arrow {
    margin-top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.svc-card-arrow i { font-size: 14px; color: var(--text-light); transition: var(--transition); }
.svc-card-v2:hover .svc-card-arrow { background: var(--primary); }
.svc-card-v2:hover .svc-card-arrow i { color: #fff; transform: translateX(3px); }

.svc-bottom-cta { margin-top: 10px; }
.svc-bottom-cta p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 16px; }

/* ==========================================
   R\u00c9ALISATIONS V2 - Product Showcase
   ========================================== */
.section-realisations { background: var(--white); }

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 5px 0 0 5px;
}

.product-accent-orange::before { background: linear-gradient(180deg, var(--accent), #ff6b35); }
.product-accent-green::before { background: linear-gradient(180deg, var(--green), #059669); }
.product-accent-blue::before { background: linear-gradient(180deg, var(--primary), var(--primary-light)); }

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-badge-saas {
    background: rgba(247,148,30,0.12);
    color: var(--accent);
}

.product-badge-standalone {
    background: rgba(11,72,131,0.1);
    color: var(--primary);
}

.product-status {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.product-status i { font-size: 7px; vertical-align: middle; margin-right: 4px; }

.product-years {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.product-years i { margin-right: 4px; }

.product-name {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.product-tagline {
    font-size: 1.05rem !important;
    color: var(--primary) !important;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-features span {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.product-features span i {
    margin-right: 5px;
    color: var(--primary);
    font-size: 11px;
}

.product-features span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.product-features span:hover i { color: #fff; }

.product-features-sm span {
    font-size: 11px;
    padding: 4px 12px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--accent) !important;
    gap: 12px;
}

.product-link i { font-size: 12px; }

/* Product Visual */
.product-visual {
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    position: relative;
}

.product-visual-orange { background: linear-gradient(135deg, rgba(247,148,30,0.06) 0%, rgba(255,107,53,0.1) 100%); }
.product-visual-green { background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, rgba(5,150,105,0.1) 100%); }
.product-visual-blue { background: linear-gradient(135deg, rgba(11,72,131,0.06) 0%, rgba(26,107,196,0.1) 100%); }

.product-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.product-visual-orange .product-icon-large {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    box-shadow: 0 10px 30px rgba(247,148,30,0.3);
}

.product-visual-green .product-icon-large {
    background: linear-gradient(135deg, var(--green), #059669);
    box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

.product-visual-blue .product-icon-large {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 10px 30px rgba(11,72,131,0.3);
}

.product-icon-large i { font-size: 40px; color: #fff; }

.product-metric { text-align: center; }

.product-metric-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.product-metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Compact cards (standalone) */
.section-subheader { margin: 50px 0 30px; }
.section-subtitle { font-size: 1.4rem; color: var(--dark); font-weight: 700; margin-bottom: 0; }

.product-card-compact {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.product-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.pcc-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcc-icon i { font-size: 24px; color: #fff; }
.pcc-icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pcc-icon-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }

.pcc-content { flex: 1; }
.pcc-content h4 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pcc-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }

/* About */
.section-about { background: var(--bg-light); }

.about-image-wrapper { position: relative; padding: 20px; }

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    opacity: 0.2;
}

.about-image-wrapper img { border-radius: var(--radius); position: relative; z-index: 1; }
.about-text { font-size: 1.1rem; line-height: 1.8; color: var(--text); margin-bottom: 32px; }

.about-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px !important;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-vision { background: var(--white); }

/* News */
.section-news { background: var(--bg-light); }
#blog { background: none; }

.post-thumbnails .post-item {
    background: linear-gradient(135deg, rgba(6,42,78,0.9) 0%, rgba(11,72,131,0.85) 100%);
    padding: 0px;
    border-radius: var(--radius);
    overflow: hidden;
}

.post-thumbnails .post-item:not(.quote) .post-item-description { padding: 40px 50px; }
.post-item .post-item-wrap { background-color: transparent; }
.post-item .post-item-description>h2 { font-size: 24px; color: #ffffff; font-weight: 700; margin-bottom: 16px; }
.post-item .post-item-description>p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* CTA / Newsletter */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
}

.cta-inner {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.12);
}

.cta-inner h3 { color: #ffffff; font-size: 1.8rem; margin-bottom: 8px; font-weight: 700; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 0; }

.newsletter-form .form-control {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50px 0 0 50px !important;
    padding: 12px 24px;
    height: auto;
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form .btn { border-radius: 0 50px 50px 0 !important; padding: 12px 28px !important; }

/* Legacy Projects (kept for compatibility) */
.section-projects { background: var(--bg-section); }

/* Partners Section */
.section-partners {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
    padding: 100px 0 80px;
    position: relative;
}

.partners-showcase {
    margin-bottom: 60px;
}

.partners-grid {
    justify-content: center;
    gap: 0;
}

.partner-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-item:hover::after { transform: scaleX(1); }

.partner-item img {
    max-height: 55px;
    max-width: 100%;
    object-fit: contain;
    filter: saturate(0%) opacity(50%);
    transition: var(--transition);
}

.partner-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.partner-item:hover img {
    filter: saturate(100%) opacity(100%);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 20px;
}

.trust-item {
    text-align: center;
    padding: 32px 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    color: #ffffff;
    font-size: 24px;
}

.trust-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact */
.section-contact {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
    padding: 100px 0;
}

.contact-info-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.contact-info-card h3 { color: #ffffff; font-size: 1.5rem; margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; }

.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.contact-icon i { color: var(--accent) !important; }
.contact-item:hover .contact-icon { background: var(--accent); }
.contact-item:hover .contact-icon i { color: #fff !important; }

.contact-whatsapp .contact-icon { background: rgba(37,211,102,0.15); }
.contact-whatsapp .contact-icon i { color: #25d366 !important; }
.contact-whatsapp:hover .contact-icon { background: #25d366; }
.contact-whatsapp:hover .contact-icon i { color: #fff !important; }

.contact-detail { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }
.contact-detail strong { color: #ffffff; font-weight: 600; display: block; margin-bottom: 4px; }
.contact-detail a { color: rgba(255,255,255,0.8) !important; text-decoration: none; transition: var(--transition); }
.contact-detail a:hover { color: var(--accent) !important; }

/* Social Icons Modern */
.social-icons-modern { display: flex; gap: 12px; margin-top: 28px; }

.social-icons-modern a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons-modern a i { color: var(--accent) !important; font-size: 16px; }
.social-icons-modern a:hover { background: var(--accent); transform: translateY(-3px); }
.social-icons-modern a:hover i { color: #fff !important; }

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form-card h4 { color: var(--dark); font-size: 1.3rem; margin-bottom: 24px; font-weight: 700; }

.contact-form-card label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-card .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,72,131,0.1);
    background: var(--white);
}

.contact-form-card .btn-block { width: 100%; }

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float i { color: #ffffff; font-size: 30px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================
   FOOTER - Redesigned
   ========================================== */
#footer,
.footer-modern {
    background: var(--dark) !important;
    color: rgba(255,255,255,0.7);
}

#footer *:not(.btn) {
    color: inherit;
}

.footer-main {
    padding: 80px 0 40px;
    background: var(--dark) !important;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h5 {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand p { margin-bottom: 24px; }

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a i {
    color: rgba(255,255,255,0.7) !important;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    transform: translateY(-3px);
}

.footer-social a:hover i { color: #fff !important; }

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 9px;
    color: var(--accent) !important;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent) !important;
    padding-left: 4px;
}

.footer-links li a:hover i { transform: translateX(2px); }

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

.footer-contact-v2 li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.fct-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.fct-icon i { color: var(--accent) !important; font-size: 15px; }
.fct-icon-wa i { color: #25d366 !important; }
.fct-icon-wa { border-color: rgba(37,211,102,0.3) !important; }

.footer-contact-v2 li:hover .fct-icon { background: var(--accent) !important; border-color: var(--accent) !important; }
.footer-contact-v2 li:hover .fct-icon i { color: #fff !important; }
.footer-contact-v2 li:hover .fct-icon-wa { background: #25d366 !important; border-color: #25d366 !important; }

.fct-text { color: rgba(255,255,255,0.6) !important; font-size: 0.9rem; }
.fct-text a { color: rgba(255,255,255,0.6) !important; text-decoration: none !important; transition: var(--transition); }
.fct-text a:hover { color: var(--accent) !important; }

.social-icons-footer { margin-top: 16px; }
.social-icons-footer a { background: rgba(255,255,255,0.06) !important; }

/* Copyright bar */
.copyright-content {
    background: rgba(0,0,0,0.4) !important;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.copyright-content .container { position: relative; }

.copyright-text {
    font-size: 14px;
    color: rgba(255,255,255,0.5) !important;
    margin: 0;
    font-weight: 400;
}

.copyright-content .text-md-right {
    text-align: right;
}

/* Carousel */
.flickity-button {
    box-shadow: none;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #ffffff;
    transition: var(--transition);
    width: 48px;
    height: 48px;
}

.flickity-button:hover { background-color: var(--primary); }
.flickity-button:before { color: #ffffff; }

/* Scroll Top */
#scrollTop { background-color: rgba(11,72,131,0.7) !important; border-radius: 50%; width: 48px; height: 48px; }
#scrollTop:after, #scrollTop:before { background-color: var(--primary); border-radius: 50%; }

/* Backgrounds */
.background-grey { background-color: var(--bg-section); }
.background-dark-grey { background-color: #1e293b !important; }
.background-green { background-color: var(--green); }
.background-navy { background-color: var(--navy); }
.background-dark-navy { background-color: var(--navy-dark) !important; }
.text-orange { color: var(--accent) !important; }
.text-red { color: #ef4444 !important; }

input:not([type=checkbox]):not([type=radio]), select { font-size: 15px; }
.call-to-action { margin-bottom: 0px; }
.call-to-action p { font-size: 16px; }
.mfp-close-btn-in .mfp-close:hover { cursor: pointer; }

/* ==========================================
   RESPONSIVE - Global overflow fix
   ========================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }
.body-inner { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ==========================================
   RESPONSIVE - Desktop / Large Tablets (max 1199px)
   ========================================== */
@media (max-width: 1199px) {
    .post-thumbnails .post-item .post-image,
    .post-thumbnails .post-item .post-slider,
    .post-thumbnails .post-item .post-video,
    .post-thumbnails .post-item .post-audio { width: 100%; }
    .post-thumbnails .post-item:not(.quote) .post-item-description { width: 100% !important; }
}

/* ==========================================
   RESPONSIVE - Tablets (max 1024px)
   ========================================== */
@media (max-width: 1024px) {
    .mainMenu-open #header #mainMenu { min-height: 300px !important; overflow-y: auto; }
    #mainMenu:not(.menu-overlay) nav>ul>li>a { text-align: center; }
    .section-modern { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 2rem; }
    .inspiro-slider .slide .slide-captions h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem !important; }
    .about-stats { gap: 30px; }
    .stat-number { font-size: 2rem !important; }
    .cta-inner { padding: 40px 30px; }
    .cta-inner h3 { font-size: 1.5rem; margin-bottom: 16px; }
    .newsletter-form { margin-top: 20px; }
    .svc-featured { padding: 40px 30px; }
    .svc-featured-title { font-size: 1.8rem; }
    .svc-featured-visual { min-height: 220px; }
    .svc-orbit { width: 200px; height: 200px; }
    .product-card { padding: 36px; }
    .product-name { font-size: 1.5rem !important; }
    .product-visual { min-height: 220px; padding: 40px 20px; }
}

/* ==========================================
   RESPONSIVE - Below Bootstrap lg (max 991px)
   Columns stack here for col-lg-*
   ========================================== */
@media (max-width: 991px) {
    /* Header / Nav */
    #header .header-inner { padding: 0 10px; }

    /* Hero */
    .inspiro-slider .slide .slide-captions h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem !important; }
    .hero-subtitle br { display: none; }

    /* Services Featured - stack columns */
    .svc-featured .row { flex-direction: column; }
    .svc-featured .col-lg-6 { max-width: 100%; flex: 0 0 100%; }
    .svc-featured-visual { min-height: 200px; margin-top: 30px; }

    /* About - stack columns */
    .section-about .col-lg-5,
    .section-about .col-lg-7 { max-width: 100%; flex: 0 0 100%; }
    .about-image-wrapper { margin-bottom: 30px; text-align: center; }

    /* Vision - stack columns */
    .section-vision .col-lg-8,
    .section-vision .col-lg-4 { max-width: 100%; flex: 0 0 100%; }
    .section-vision .col-lg-4 { margin-top: 30px; }

    /* Newsletter CTA - stack columns */
    .cta-inner .col-lg-7,
    .cta-inner .col-lg-5 { max-width: 100%; flex: 0 0 100%; }
    .cta-inner { text-align: center; }
    .newsletter-form { margin-top: 24px; }

    /* Products - stack columns */
    .product-card .col-lg-7,
    .product-card .col-lg-5 { max-width: 100%; flex: 0 0 100%; }
    .product-visual { margin-top: 24px; }

    /* Standalone products */
    .product-card-compact .col-lg-6 { max-width: 100%; flex: 0 0 100%; }

    /* Contact - stack columns */
    .section-contact .col-lg-5,
    .section-contact .col-lg-7 { max-width: 100%; flex: 0 0 100%; }
    .contact-info-card { margin-bottom: 30px; }

    /* Footer - adjust columns, force dark bg */
    #footer, .footer-modern { background: var(--dark) !important; }
    .footer-main { background: var(--dark) !important; }
    .footer-modern .col-lg-4,
    .footer-modern .col-lg-2,
    .footer-modern .col-lg-3 { max-width: 50%; flex: 0 0 50%; }
    .footer-widget h5 { color: #ffffff !important; }
    .footer-widget p { color: rgba(255,255,255,0.6) !important; }
    .footer-links li a { color: rgba(255,255,255,0.6) !important; }
    .footer-links li a:hover { color: var(--accent) !important; }
    .fct-text, .fct-text a { color: rgba(255,255,255,0.6) !important; }
    .copyright-content { background: rgba(0,0,0,0.4) !important; }
    .copyright-text { color: rgba(255,255,255,0.5) !important; }

    /* Partners */
    .partners-grid .col-lg-2 { max-width: 25%; flex: 0 0 25%; }
}

/* ==========================================
   RESPONSIVE - Tablets portrait / Large phones (max 768px)
   ========================================== */
@media (max-width: 768px) {
    /* General */
    .section-modern { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: 1.65rem; }
    .section-desc { font-size: 0.95rem; }
    .container { padding-left: 20px; padding-right: 20px; }

    /* Hero */
    .inspiro-slider .slide .slide-captions h1 { font-size: 1.85rem; line-height: 1.15; }
    .hero-badge { font-size: 11px; padding: 6px 16px; }
    .hero-subtitle { font-size: 0.9rem !important; line-height: 1.6; }
    .hero-subtitle br { display: none; }
    .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
    .hero-cta .btn { width: auto; min-width: 220px; max-width: 90%; text-align: center; padding: 12px 28px !important; font-size: 14px !important; }

    /* About */
    .about-image-wrapper { margin-bottom: 30px; padding: 10px; }
    .about-image-wrapper::before { display: none; }
    .about-text { font-size: 1rem; }
    .about-stats { justify-content: center; gap: 24px; }
    .stat-number { font-size: 1.8rem !important; }
    .stat-label { font-size: 0.75rem; }

    /* Services */
    .svc-featured { padding: 28px 22px; border-radius: var(--radius); }
    .svc-featured-title { font-size: 1.4rem; }
    .svc-featured-text { font-size: 0.95rem; }
    .svc-featured-visual { display: none; }
    .svc-featured-tags span { font-size: 11px; padding: 5px 12px; }
    .svc-grid .col-md-6 { max-width: 100%; flex: 0 0 100%; }
    .svc-card-v2 { margin-bottom: 16px; padding: 24px 20px; }

    /* Products */
    .product-card { padding: 24px; border-radius: var(--radius); margin-bottom: 20px; }
    .product-name { font-size: 1.3rem !important; }
    .product-tagline { font-size: 0.9rem !important; }
    .product-desc { font-size: 0.88rem; }
    .product-visual { min-height: 180px; margin-top: 20px; padding: 28px 16px; }
    .product-icon-large { width: 72px; height: 72px; border-radius: 18px; }
    .product-icon-large i { font-size: 28px; }
    .product-metric-number { font-size: 1.8rem; }
    .product-features span { font-size: 11px; padding: 5px 11px; }
    .product-card-compact { flex-direction: column; gap: 16px; padding: 24px; }
    .pcc-icon { width: 50px; height: 50px; min-width: 50px; }

    /* News */
    .post-thumbnails .post-item:not(.quote) .post-item-description { padding: 24px 20px; }
    .post-item .post-item-description>h2 { font-size: 18px; }
    .post-item .post-item-description>p { font-size: 14px; }

    /* CTA / Newsletter */
    .section-cta { padding: 50px 0; }
    .cta-inner { padding: 28px 20px; text-align: center; border-radius: var(--radius); }
    .cta-inner h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .cta-inner p { font-size: 0.9rem; }
    .newsletter-form { margin-top: 20px; }
    .newsletter-form .input-group { flex-direction: column; }
    .newsletter-form .form-control { border-radius: 50px !important; margin-bottom: 10px; width: 100%; }
    .newsletter-form .input-group-append { width: 100%; }
    .newsletter-form .btn { border-radius: 50px !important; width: 100%; }

    /* Partners */
    .partners-grid .col-md-3 { max-width: 33.333%; flex: 0 0 33.333%; }
    .partner-item { height: 75px; padding: 14px 10px; }
    .partner-item img { max-height: 38px; }
    .trust-item { padding: 20px 10px; }
    .trust-item p { font-size: 0.85rem; }

    /* Contact */
    .section-contact { padding: 60px 0; }
    .contact-info-card { padding: 28px; margin-bottom: 24px; }
    .contact-info-card h3 { font-size: 1.3rem; }
    .contact-form-card { padding: 28px; }
    .contact-form-card .row .col-md-6 { max-width: 100%; flex: 0 0 100%; }

    /* Footer */
    .footer-main { padding: 50px 0 20px; background: var(--dark) !important; }
    #footer, .footer-modern { background: var(--dark) !important; }
    .footer-modern .col-lg-4,
    .footer-modern .col-lg-2,
    .footer-modern .col-lg-3,
    .footer-modern .col-md-6 { max-width: 100%; flex: 0 0 100%; }
    .footer-widget { margin-bottom: 30px; text-align: center; }
    .footer-widget h5 { color: #ffffff !important; }
    .footer-widget h5::after { left: 50%; transform: translateX(-50%); }
    .footer-widget p { color: rgba(255,255,255,0.6) !important; }
    .footer-links li a { justify-content: center; color: rgba(255,255,255,0.6) !important; }
    .footer-links li a:hover { color: var(--accent) !important; }
    .footer-social { justify-content: center; }
    .footer-social a { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.12) !important; }
    .footer-social a i { color: rgba(255,255,255,0.7) !important; }
    .footer-contact-v2 li { justify-content: center; }
    .fct-text, .fct-text a { color: rgba(255,255,255,0.6) !important; }
    .footer-brand { text-align: center; }
    .footer-logo { margin-left: auto; margin-right: auto; display: block; }
    .copyright-content { background: rgba(0,0,0,0.4) !important; }
    .copyright-content .row { text-align: center; }
    .copyright-content .col-md-6 { max-width: 100%; flex: 0 0 100%; }
    .copyright-content .text-md-right { text-align: center !important; }
    .copyright-text { font-size: 12px; color: rgba(255,255,255,0.5) !important; }
    .footer-social a { width: 36px; height: 36px; }
    .fct-icon { width: 34px; height: 34px; min-width: 34px; background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.12) !important; }
    .fct-icon i { color: var(--accent) !important; }

    /* WhatsApp & Scroll */
    .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .whatsapp-float i { font-size: 24px; }
    #scrollTop { bottom: 76px !important; right: 16px !important; width: 42px; height: 42px; }

    /* Flickity / Carousel */
    .flickity-button { width: 40px; height: 40px; }
}

/* ==========================================
   RESPONSIVE - Small phones (max 576px)
   ========================================== */
@media (max-width: 576px) {
    .container { padding-left: 16px; padding-right: 16px; }

    .section-modern { padding: 40px 0; }
    .section-title { font-size: 1.45rem; }
    .section-label { font-size: 11px; letter-spacing: 0.1em; }

    /* Hero */
    .inspiro-slider .slide .slide-captions h1 { font-size: 1.6rem; }
    .hero-badge { font-size: 10px; padding: 5px 14px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 0.85rem !important; margin-bottom: 24px !important; }
    .hero-cta .btn { width: auto; min-width: 180px; max-width: 85%; padding: 11px 20px !important; font-size: 13px !important; }

    /* About stats */
    .about-stats { gap: 16px; }
    .stat-item { min-width: 80px; }
    .stat-number { font-size: 1.6rem !important; }

    /* Services */
    .svc-featured { padding: 22px 16px; }
    .svc-featured-title { font-size: 1.25rem; }
    .svc-featured-text { font-size: 0.88rem; }
    .svc-card-v2 { padding: 20px 16px; margin-bottom: 12px; }
    .svc-card-icon { width: 48px; height: 48px; border-radius: 12px; }
    .svc-card-icon i { font-size: 18px; }
    .svc-card-v2 h4 { font-size: 1rem; }

    /* Products */
    .product-card { padding: 18px; margin-bottom: 16px; }
    .product-name { font-size: 1.15rem !important; }
    .product-tagline { font-size: 0.85rem !important; }
    .product-desc { font-size: 0.85rem; line-height: 1.6; }
    .product-features { gap: 6px; }
    .product-features span { font-size: 10px; padding: 4px 8px; }
    .product-link { font-size: 13px; }
    .product-visual { min-height: 160px; padding: 24px 12px; }
    .product-icon-large { width: 64px; height: 64px; border-radius: 16px; }
    .product-icon-large i { font-size: 24px; }
    .product-metric-number { font-size: 1.5rem; }
    .product-metric-label { font-size: 0.75rem; }
    .product-card-compact { padding: 18px; gap: 14px; }
    .pcc-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; }
    .pcc-icon i { font-size: 20px; }
    .pcc-content h4 { font-size: 1rem; }
    .pcc-content p { font-size: 0.83rem; }
    .product-features-sm span { font-size: 10px; padding: 3px 8px; }

    /* Section subheadings */
    .section-subtitle { font-size: 1.15rem; }
    .section-subheader { margin: 36px 0 20px; }

    /* News */
    .post-thumbnails .post-item:not(.quote) .post-item-description { padding: 18px 16px; }
    .post-item .post-item-description>h2 { font-size: 16px; }
    .post-item .post-item-description>p { font-size: 13px; }
    .post-item .btn { font-size: 13px !important; padding: 10px 20px !important; }

    /* Newsletter */
    .cta-inner { padding: 24px 16px; }
    .cta-inner h3 { font-size: 1.15rem; }
    .cta-inner p { font-size: 0.85rem; }

    /* All buttons uniform sizing */
    .btn-modern-primary, .btn-modern-outline { 
        padding: 11px 22px !important; 
        font-size: 13px !important; 
        white-space: normal;
        min-width: 0;
    }
    .hero-cta .btn { min-width: 200px; max-width: 85%; }
    .newsletter-form .btn { white-space: nowrap; }
    .contact-form-card .btn-block { white-space: nowrap; }

    /* Partners */
    .partners-grid .col-4 { max-width: 50%; flex: 0 0 50%; }
    .partner-item { height: 65px; padding: 10px 8px; margin-bottom: 12px; }
    .partner-item img { max-height: 32px; }
    .trust-icon { width: 48px; height: 48px; border-radius: 12px; }
    .trust-icon i { font-size: 20px; }
    .trust-item h5 { font-size: 0.95rem; }
    .trust-item p { font-size: 0.8rem; }

    /* Contact */
    .section-contact { padding: 40px 0; }
    .contact-info-card { padding: 22px; }
    .contact-info-card h3 { font-size: 1.15rem; }
    .contact-info-card > p { font-size: 0.85rem; }
    .contact-icon { width: 38px; height: 38px; min-width: 38px; font-size: 16px; border-radius: 10px; }
    .contact-item { gap: 12px; }
    .contact-detail { font-size: 0.85rem; }
    .social-icons-modern a { width: 38px; height: 38px; border-radius: 10px; }
    .contact-form-card { padding: 22px; }
    .contact-form-card h4 { font-size: 1.1rem; }
    .contact-form-card .form-control { padding: 10px 14px; font-size: 14px; }
    .contact-form-card .btn-block { font-size: 14px !important; padding: 12px 20px !important; }

    /* Buttons */
    .btn-modern-primary, .btn-modern-outline { padding: 11px 22px !important; font-size: 13px !important; }

    /* Footer */
    .footer-main { padding: 40px 0 16px; background: var(--dark) !important; }
    #footer, .footer-modern { background: var(--dark) !important; }
    .footer-widget { margin-bottom: 24px; }
    .footer-widget h5 { font-size: 0.9rem; margin-bottom: 16px; color: #ffffff !important; }
    .footer-widget p { color: rgba(255,255,255,0.6) !important; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links li a { font-size: 0.85rem; color: rgba(255,255,255,0.6) !important; }
    .footer-links li a:hover { color: var(--accent) !important; }
    .footer-contact-v2 li { margin-bottom: 14px; }
    .fct-text, .fct-text a { font-size: 0.85rem; color: rgba(255,255,255,0.6) !important; }
    .copyright-content { padding: 14px 0; background: rgba(0,0,0,0.4) !important; }
    .copyright-text { color: rgba(255,255,255,0.5) !important; }

    /* WhatsApp float */
    .whatsapp-float { bottom: 14px; right: 14px; width: 48px; height: 48px; }
    .whatsapp-float i { font-size: 22px; }
    #scrollTop { bottom: 70px !important; }
}

/* ==========================================
   RESPONSIVE - Extra small phones (max 380px)
   ========================================== */
@media (max-width: 380px) {
    .container { padding-left: 12px; padding-right: 12px; }

    .inspiro-slider .slide .slide-captions h1 { font-size: 1.35rem; }
    .hero-badge { font-size: 9px; padding: 4px 12px; }
    .hero-subtitle { font-size: 0.8rem !important; }
    .hero-cta .btn { width: auto; min-width: 160px; max-width: 100%; }

    .section-title { font-size: 1.3rem; }
    .section-desc { font-size: 0.85rem; }

    .about-stats { flex-direction: column; align-items: center; gap: 12px; }
    .stat-number { font-size: 1.5rem !important; }

    .svc-featured { padding: 18px 14px; }
    .svc-featured-title { font-size: 1.15rem; }
    .svc-featured-tags span { font-size: 10px; padding: 4px 10px; }
    .svc-card-v2 { padding: 18px 14px; }

    .product-card { padding: 14px; }
    .product-name { font-size: 1.05rem !important; }
    .product-visual { min-height: 140px; padding: 20px 10px; }
    .product-card-compact { padding: 14px; }

    .contact-info-card { padding: 18px; }
    .contact-form-card { padding: 18px; }

    .cta-inner { padding: 20px 12px; }
    .cta-inner h3 { font-size: 1.05rem; }

    .partner-item { height: 55px; }
    .partner-item img { max-height: 28px; }

    .footer-logo { height: 32px; }
    #footer, .footer-modern { background: var(--dark) !important; }
    .footer-main { background: var(--dark) !important; }
    .footer-widget h5 { color: #ffffff !important; }
    .footer-widget p { color: rgba(255,255,255,0.6) !important; }
    .footer-links li a { color: rgba(255,255,255,0.6) !important; }
    .copyright-content { background: rgba(0,0,0,0.4) !important; }
    .copyright-text { color: rgba(255,255,255,0.5) !important; }
}

html { scroll-behavior: smooth; }
::selection { background: var(--primary); color: #fff; }
::-moz-selection { background: var(--primary); color: #fff; }
