/*
Theme Name: Roofas
Theme URI: https://websalty.com
Author: WebSalty
Description: Premium B2B Industrial Shielding Theme for Roofas EU
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #FFB800;
    --primary-hover: #E6A600;
    --bg-body: #F4F4F5;
    --bg-white: #FFFFFF;
    --bg-dark: #09090B;
    --bg-panel: #18181B;
    --text-main: #09090B;
    --text-muted: #71717A;
    --text-light: #A1A1AA;
    --border-light: #E4E4E7;
    --border-dark: #27272A;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-body); color: var(--text-main); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* UNIFIED PILLS */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 99px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; width: fit-content; line-height: 1; white-space: nowrap;}
.pill-dark { background: var(--bg-dark); color: #FFF; border: 1px solid var(--border-dark); }
.pill-gray { background: #E4E4E7; color: var(--text-muted); border: 1px solid #D4D4D8; }
.pill-yellow { background: rgba(255, 184, 0, 0.1); color: #B45309; border: 1px solid rgba(255, 184, 0, 0.2); }
.pill-green { background: rgba(16, 185, 129, 0.1); color: #047857; border: 1px solid rgba(16, 185, 129, 0.2); }

/* UNIFIED BUTTONS */
.btn-primary, .btn-dark, .btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: 0.2s; border: none; text-decoration: none; }
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,184,0,0.15); }
.btn-dark { background: var(--bg-dark); color: #FFF; border: 1px solid var(--bg-dark); }
.btn-dark:hover { background: transparent; color: var(--bg-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border-dark); }
.btn-outline:hover { background: var(--bg-dark); color: #FFF; }
.btn-sm { display: inline-flex; align-items: center; justify-content: center; background: var(--bg-dark); color: #FFF; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; text-decoration: none; border: 1px solid var(--bg-dark); transition: 0.2s; cursor: pointer; }
.btn-sm:hover { background: transparent; color: var(--bg-dark); }

/* HEADER & TOP BAR */
.top-bar { background: var(--bg-dark); color: var(--text-light); font-size: 0.75rem; padding: 8px 0; border-bottom: 1px solid var(--border-dark); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-links { display: flex; gap: 20px; align-items: center;}
.top-bar-links a { color: var(--text-light); text-decoration: none; transition: 0.2s; }
.top-bar-links a:hover { color: #FFF; }
.lang-switch { display: flex; gap: 12px; font-weight: 600; border-left: 1px solid var(--border-dark); padding-left: 20px;}
.lang-switch a { color: var(--text-light); }
.lang-switch a.active { color: var(--primary); }
header.main-header { background: var(--bg-white); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center;}
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%;}
.logo img { height: 32px; display: block; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { color: var(--text-main); text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: 0.2s; }
.main-nav a.active, .main-nav a:hover { color: var(--primary); }

/* FOOTER */
footer { background: var(--bg-dark); color: var(--text-light); padding: 80px 0 32px; font-size: 0.875rem; border-top: 1px solid var(--border-dark);}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; border-bottom: 1px solid var(--border-dark); padding-bottom: 40px;}
.footer-logo { height: 32px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.official-dist { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; display: block;}
.footer-col h5 { color: #FFF; font-size: 0.875rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-light); text-decoration: none; transition: 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.legal-links { display: flex; gap: 24px; }
.legal-links a { color: var(--text-light); text-decoration: none; }

/* MASSIVE CTA SECTION */
.cta-section { background: var(--primary); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -5%; width: 400px; height: 400px; background: rgba(255,255,255,0.3); border-radius: 50%; filter: blur(60px); pointer-events: none;}
.cta-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-content h2 { font-size: 3.5rem; color: #000; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; font-weight: 800; }
.cta-content p { color: rgba(0,0,0,0.8); font-size: 1.125rem; margin-bottom: 40px; font-weight: 500; }
.cta-badges { display: flex; justify-content: center; gap: 24px; margin-top: 40px; flex-wrap: wrap;}
.cta-badge { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 0.5px;}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .cta-content h2 { font-size: 2.5rem; } }
/* DODAJ OVO NA KRAJ POSTOJEĆEG style.css FAJLA */

/* --- FRONT PAGE SPECIFICS --- */
.hero { background: var(--bg-dark); color: #FFF; padding: 80px 0; border-bottom: 1px solid var(--border-dark); overflow: hidden; position: relative;}
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.05) 0%, transparent 50%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; position: relative; z-index: 2;}
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.hero-content p { font-size: 1.125rem; color: var(--text-light); margin-bottom: 32px; max-width: 500px; line-height: 1.6;}
.hero-specs { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap;}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 40px; border-top: 1px solid var(--border-dark); padding-top: 32px; }

.hero-form-card { background: var(--bg-panel); border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 32px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.hero-form-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.hero-form-card p { color: var(--text-light); font-size: 0.875rem; margin-bottom: 24px; }
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; letter-spacing: 0.5px;}
.form-control { width: 100%; background: #000; border: 1px solid var(--border-dark); color: #FFF; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; transition: 0.2s; outline: none;}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.2); }

.stats-section { padding: 60px 0; background: var(--bg-white); border-bottom: 1px solid var(--border-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { background: var(--bg-white); padding: 32px 24px; border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.stat-item:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); border-color: var(--primary); }
.stat-number { font-size: 3.5rem; font-weight: 800; color: var(--text-main); line-height: 1; margin-bottom: 8px; letter-spacing: -2px;}
.stat-number span { color: var(--primary); }
.stat-label { font-size: 0.875rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.catalogue { padding: 100px 0; background: var(--bg-body); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; border-bottom: 1px solid var(--border-light); padding-bottom: 20px;}
.section-header h2 { font-size: 2.5rem; letter-spacing: -1px; }
.filter-group { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { background: var(--bg-white); border: 1px solid var(--border-light); color: var(--text-muted); padding: 8px 16px; border-radius: 99px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: 0.2s; }
.filter-btn.active { background: var(--bg-dark); color: #FFF; border-color: var(--bg-dark); }
.filter-btn:hover:not(.active) { border-color: var(--text-light); color: var(--text-main); }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: 0.2s; display: flex; flex-direction: column; }
.cat-card:hover { border-color: #D1D5DB; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); transform: translateY(-2px);}
.cat-img { height: 220px; background: #E5E7EB; border-bottom: 1px solid var(--border-light); position: relative; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column;}
.cat-content h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cat-content p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.5; flex-grow: 1;}
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.spec-item { background: var(--bg-body); padding: 8px 12px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; color: var(--text-main); border: 1px solid var(--border-light); display: flex; flex-direction: column;}
.spec-item span { color: var(--text-muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; }

.tech-dashboard { padding: 100px 0; background: var(--bg-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);}
.bento-tech { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.bento-box { background: var(--bg-body); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 40px; }
.bento-box.main { grid-column: span 12; display: flex; align-items: center; justify-content: space-between; background: var(--bg-dark); color: #FFF; gap: 40px;}
.bento-box.sub { grid-column: span 6; }
.cert-logos { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap;}
.cert-logos span { background: #FFF; color: #000; padding: 6px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.5px;}

.video-btn { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: rgba(255, 184, 0, 0.1); border: 2px dashed rgba(255, 184, 0, 0.4); color: var(--primary); cursor: pointer; transition: 0.3s; margin-bottom: 16px;}
.video-btn:hover { background: var(--primary); color: #000; transform: scale(1.05); border-style: solid; box-shadow: 0 0 30px rgba(255,184,0,0.3);}
.video-btn svg { width: 32px; height: 32px; fill: currentColor; margin-left: 6px;}

.video-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 1000; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease;}
.video-modal.active { display: flex; opacity: 1; }
.video-modal-content { width: 90%; max-width: 1000px; aspect-ratio: 16/9; position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);}
.video-modal-close { position: absolute; top: -40px; right: 0; color: #FFF; font-size: 2.5rem; cursor: pointer; background: none; border: none; line-height: 1; }

.trust-section { padding: 80px 0; background: var(--bg-white); text-align: center; }
.trust-section p { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 40px; }
.logo-grid { display: flex; justify-content: center; align-items: center; gap: 60px; opacity: 0.6; filter: grayscale(100%); flex-wrap: wrap;}
.logo-item { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; display: flex; align-items: center; gap: 12px;}

@media (max-width: 1024px) {
    .hero-grid, .cat-grid { grid-template-columns: 1fr; }
    .bento-tech { grid-template-columns: 1fr; }
    .bento-box.main, .bento-box.sub { grid-column: span 1; }
    .bento-box.main { flex-direction: column; align-items: flex-start; text-align: left; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }
    .bento-box.main h3 { font-size: 2rem; }
    .hero h1 { font-size: 2.8rem; }
}
/* --- MOBILE NAVIGATION --- */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-main); cursor: pointer; z-index: 1001; position: relative; padding: 4px; }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 99; opacity: 0; visibility: hidden; transition: 0.3s ease; }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 992px) {
    .desktop-only-cta { display: none !important; }
    .mobile-menu-btn { display: block; }
    
    .main-nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--bg-white); flex-direction: column; padding: 100px 32px 32px; gap: 24px; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); z-index: 100; box-shadow: -10px 0 40px rgba(0,0,0,0.1); display: flex; }
    .main-nav.active { right: 0; }
    .main-nav a { font-size: 1.125rem; }
    .mobile-only-cta { display: inline-flex !important; margin-top: auto; }
}

@media (max-width: 768px) {
    .top-bar { display: none; } /* Gasimo crni top bar na mobilnom radi prostora */
}
/* ==========================================================================
   PAGE SPECIFIC STYLES (Company, Contact, Blog, Products, Single)
   ========================================================================== */

/* --- SHARED PAGE HEADER --- */
.page-header { background: var(--bg-dark); color: #FFF; padding: 80px 0; border-bottom: 1px solid var(--border-dark); position: relative; overflow: hidden; text-align: center;}
.page-header::before { content: ''; position: absolute; right: 0; top: -50%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,184,0,0.1) 0%, transparent 60%); pointer-events: none;}
.page-header h1 { font-size: 3.5rem; letter-spacing: -1px; margin-bottom: 16px; font-weight: 800; line-height: 1.1; position: relative; z-index: 2;}
.page-header p { color: var(--text-light); font-size: 1.125rem; max-width: 600px; margin: 0 auto; line-height: 1.6; position: relative; z-index: 2;}
.page-header.left-align { text-align: left; }
.page-header.left-align p { margin: 0; }

/* --- COMPANY & BENEFITS PAGE --- */
.content-section { padding: 100px 0; background: var(--bg-white); border-bottom: 1px solid var(--border-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;}
.text-content h2 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 24px; line-height: 1.1;}
.text-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.6;}
.image-content { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.image-content img { width: 100%; display: block; }
.benefits-section { padding: 100px 0; background: var(--bg-body); border-bottom: 1px solid var(--border-light); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.01); }
.benefit-card:hover { border-color: #D1D5DB; box-shadow: 0 15px 30px -5px rgba(0,0,0,0.05); transform: translateY(-4px); }
.benefit-card.dark { background: var(--bg-dark); color: #FFF; border-color: var(--border-dark); }
.benefit-card.dark:hover { border-color: var(--primary); box-shadow: 0 15px 30px -5px rgba(255,184,0,0.15); }
.benefit-card h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; flex-grow: 1;}
.benefit-card.dark p { color: var(--text-light); }
.benefit-footer { border-top: 1px solid var(--border-light); padding-top: 20px; margin-top: auto;}
.benefit-card.dark .benefit-footer { border-color: var(--border-dark); }
.huge-stat { font-size: 2.5rem; font-weight: 800; line-height: 1; letter-spacing: -1px; margin-bottom: 4px;}
.cases-section { padding: 100px 0; background: var(--bg-white); }
.cases-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; gap: 20px; flex-wrap: wrap;}
.search-bar { width: 300px; position: relative; flex-shrink: 0;}
.search-bar input { width: 100%; padding: 12px 16px 12px 40px; border: 1px solid var(--border-light); border-radius: 99px; font-size: 0.875rem; font-weight: 500; outline: none; transition: 0.2s;}
.search-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1); }
.search-bar svg { position: absolute; left: 14px; top: 12px; color: var(--text-muted); width: 18px; height: 18px; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; box-shadow: 0 4px 6px rgba(0,0,0,0.01);}
.case-card:hover { border-color: #D1D5DB; box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.05); transform: translateY(-4px);}
.case-img { height: 180px; background: var(--bg-body); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; position: relative; padding: 20px;}
.case-img h3 { font-size: 2rem; color: var(--text-muted); font-weight: 800; letter-spacing: -1px; text-transform: uppercase; text-align:center;}
.case-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column;}
.case-content h4 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; line-height: 1.3;}
.case-content p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 24px; line-height: 1.6; flex-grow: 1;}
.btn-link { color: var(--text-main); font-size: 0.875rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: 0.2s; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-light);}
.btn-link:hover { color: var(--primary); gap: 8px;}

/* --- CONTACT PAGE --- */
.contact-section { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { font-size: 1.75rem; letter-spacing: -0.5px; margin-bottom: 24px; }
.info-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 16px;}
.info-card h4 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px;}
.info-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 12px;}
.info-card a { color: var(--text-main); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 8px; font-size: 0.95rem;}
.info-card a:hover { color: var(--primary); }
.advisor-box { background: var(--bg-panel); color: #FFF; border-radius: var(--radius-md); padding: 32px; margin-top: 32px; border: 1px solid var(--border-dark);}
.advisor-box h4 { font-size: 1.2rem; margin-bottom: 8px; }
.advisor-box p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5;}
.contact-form-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.02);}
textarea.form-control { min-height: 120px; resize: vertical; }

/* --- RESPONSIVE ADJUSTMENTS FOR PAGES --- */
@media (max-width: 1024px) { 
    .grid-2, .benefits-grid { grid-template-columns: 1fr; gap: 40px;} 
    .cases-grid { grid-template-columns: repeat(2, 1fr); } 
    .cases-controls { flex-direction: column; align-items: flex-start; } 
    .search-bar { width: 100%; max-width: 100%; } 
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) { 
    .cases-grid { grid-template-columns: 1fr; } 
    .page-header h1 { font-size: 2.5rem; } 
    .text-content h2 { font-size: 2rem; } 
    .contact-form-card { padding: 24px; } 
}
/* --- LIGHT FORM FIX FOR CONTACT PAGE --- */
.contact-form-card .form-control {
    background-color: var(--bg-body) !important; /* Svetlo siva pozadina */
    color: var(--text-main) !important; /* Tamni tekst kad klijent kuca */
    border: 1px solid var(--border-light) !important; /* Svetlo siva ivica */
}

/* Boja placeholder teksta (npr. name@company.com) */
.contact-form-card .form-control::placeholder {
    color: var(--text-light) !important;
}

/* Hover/Focus efekat kad se klikne na polje */
.contact-form-card .form-control:focus {
    background-color: var(--bg-white) !important; /* Postaje skroz belo */
    border-color: var(--primary) !important; /* Žuta ivica */
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1) !important; /* Žuti sjaj */
}