:root {
    --primary-color: #003F8A;
    --secondary-color: #00AEEF;
    --light-bg: #F4F7F6;
    --text-main: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
    --border-radius: 8px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-main); background-color: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--primary-color); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 30px; font-weight: 600; text-align: center; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background-color: var(--secondary-color); color: var(--white); }
.btn-primary:hover { background-color: #008cc0; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { flex-shrink: 0; background-color: var(--primary-color); color: var(--white); }
.btn-accent:hover { background-color: #002a5c; transform: translateY(-2px); box-shadow: var(--shadow); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; padding: 12px 24px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); z-index: 1000; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.05); color: white; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

.icon svg { width: 56px; height: 56px; color: var(--secondary-color); }
.feature-item .icon svg { color: rgba(255, 255, 255, 0.9); }
.social-icons a svg { width: 18px; height: 18px; fill: white; }
.footer-contact li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--secondary-color); }

.top-bar { background: linear-gradient(135deg, #001f45, var(--primary-color)); color: var(--white); font-size: 0.95rem; padding: 8px 20px; text-align: center; position: fixed; top: 0; left: 0; width: 100%; z-index: 550; overflow: hidden; height: 36px; display: flex; align-items: center; justify-content: center; }
.top-bar-slider { position: relative; width: 100%; max-width: 1200px; height: 20px; overflow: hidden; }
.top-bar-slide { position: absolute; width: 100%; text-align: center; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; white-space: nowrap; }
.top-bar-slide.active { opacity: 1; transform: translateY(0); }
.top-bar-slide a { color: var(--secondary-color); font-weight: 700; text-decoration: underline; }
.top-bar-slide svg { width: 14px; height: 14px; vertical-align: -2px; stroke: var(--secondary-color); fill: none; margin-right: 4px; }

header { position: fixed; top: 36px; left: 0; width: 100%; background-color: var(--white); box-shadow: var(--shadow); z-index: 500; transition: var(--transition); padding: 12px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo h2 { margin: 0; color: var(--primary-color); font-weight: 800; font-size: 1.5rem; display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links li a { font-weight: 600; color: var(--primary-color); font-size: 1.05rem; }
.nav-links li a:hover { color: var(--secondary-color); }
.nav-cta a { padding: 0.75rem 1.8rem; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 40px; }
.nav-links .nav-cta a { color: var(--white) !important; }

.nav-search { position: relative; margin-left: 15px; display: flex; align-items: center; width: 40px; transition: width 0.4s ease; flex-shrink: 0; }
.nav-search:hover, .nav-search:focus-within { width: 220px; }
.nav-search input { width: 100%; height: 40px; padding: 0 10px 0 36px; border: 1.5px solid #222; border-radius: 4px; font-size: 1rem; font-family: 'DM Sans', sans-serif; color: transparent; outline: none; transition: all 0.4s ease; background: transparent; cursor: pointer; box-sizing: border-box; }
.nav-search input::placeholder { color: transparent; }
.nav-search:focus-within input, .nav-search input:not(:placeholder-shown) { border-color: var(--primary-color); background: var(--white); color: var(--text-main); cursor: text; }
.nav-search:focus-within input:focus { border-color: var(--secondary-color); }
.nav-search:focus-within input::placeholder, .nav-search input:not(:placeholder-shown)::placeholder { color: #999; }
.nav-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; stroke: var(--primary-color); fill: none; pointer-events: none; transition: all 0.3s; z-index: 10; }
.nav-search:focus-within svg, .nav-search:has(input:not(:placeholder-shown)) svg { stroke: var(--text-light); width: 16px; height: 16px; left: 12px; }

.has-dropdown { position: relative; }
.has-dropdown>a { display: flex; align-items: center; gap: 4px; }
.has-dropdown>a::after { content: ''; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--primary-color); transition: var(--transition); }
.has-dropdown:hover>a::after { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--white); min-width: 280px; border-radius: var(--border-radius); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); padding: 12px 0; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100; margin-top: 15px; }
.dropdown::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid var(--white); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; margin-top: 8px; }
.dropdown li { width: 100%; }
.dropdown li a { display: flex !important; align-items: center; gap: 12px; padding: 12px 20px !important; font-size: 1rem !important; color: var(--text-main) !important; transition: var(--transition); white-space: nowrap; }
.dropdown li a:hover { background: var(--light-bg); color: var(--primary-color) !important; }
.dropdown li a svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--secondary-color); fill: none; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 700; position: relative; }
.hamburger span { width: 25px; height: 3px; background-color: var(--primary-color); border-radius: 3px; transition: var(--transition); }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.section-header { text-align: center; max-width: 900px; margin: 0 auto 50px; padding: 0 15px; }
.section-header h2 { font-size: 2.6rem; margin-bottom: 15px; line-height: 1.2; }
.section-header p { font-size: 1.15rem; }
.grid-4 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-quick { background: var(--white); border-radius: var(--border-radius); padding: 30px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; border-bottom: 4px solid var(--secondary-color); }
.card-quick:hover { transform: translateY(-10px); }
.card-quick .icon { font-size: 3rem; margin-bottom: 15px; }
.card-quick h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card { background: var(--white); border: 1px solid #eee; border-radius: var(--border-radius); padding: 40px 20px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--secondary-color); }
.service-card .icon { font-size: 3.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { font-size: 1.05rem; line-height: 1.4; margin-bottom: 20px; }
.service-card .btn { font-size: 1rem; padding: 0.5rem 1.2rem; background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.service-card:hover .btn { background: var(--primary-color); color: var(--white); }
.services-section { padding: 100px 20px; }

footer { background-color: #00224A; color: var(--white); padding: 80px 20px 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 0.9fr 0.9fr 1.6fr 0.4fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.footer-desc { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; font-size: 0.9rem; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.social-icons a:hover { background: var(--secondary-color); }
.footer-col { min-width: 0; word-break: break-word; } .footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--secondary-color); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; line-height: 1.5; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255, 255, 255, 0.8); transition: var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--secondary-color); padding-left: 5px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; position: relative; }
.newsletter-form input { padding: 12px 15px; border-radius: 5px; border: none; font-size: 0.95rem; background: rgba(255, 255, 255, 0.1); color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form button { padding: 12px; border-radius: 5px; border: none; background: var(--primary-color); color: var(--white); font-weight: 700; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--secondary-color); }
.form-success-msg { display: none; color: #4CAF50; font-weight: 600; margin-top: 10px; align-items: center; gap: 8px; }
.form-success-icon { width: 20px; height: 20px; fill: #4CAF50; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 1rem; color: rgba(255, 255, 255, 0.6); gap: 12px; text-align: center; padding-bottom: 20px; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

.header-logo-img { height: 70px !important; width: auto !important; }
.footer-logo-img { height: 85px !important; margin-left: -5px; filter: brightness(0) invert(1) !important; width: auto !important; }
.svg-sprite { display: none; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.8fr 0.9fr 0.9fr 1.4fr 0.6fr; gap: 40px; }
}
@media (max-width: 900px) {
    h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .top-bar { font-size: 0.85rem; padding: 6px 10px; height: 32px; }
    .nav-search { display: none; }
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background-color: var(--white); flex-direction: column; align-items: center; justify-content: center; transition: var(--transition); opacity: 0; padding-top: 80px; gap: 0; }
    .nav-links.active { left: 0; opacity: 1; z-index: 600; }
    .nav-links li { width: 80%; text-align: center; }
    .nav-links li a { display: block; padding: 15px; font-size: 1.2rem; }
    .nav-cta { margin-top: 10px; }
    .nav-cta a { display: block !important; width: 100%; text-align: center; }
:root {
    --primary-color: #003F8A;
    --secondary-color: #00AEEF;
    --light-bg: #F4F7F6;
    --text-main: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
    --border-radius: 8px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-main); background-color: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--primary-color); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 30px; font-weight: 600; text-align: center; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background-color: var(--secondary-color); color: var(--white); }
.btn-primary:hover { background-color: #008cc0; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { flex-shrink: 0; background-color: var(--primary-color); color: var(--white); }
.btn-accent:hover { background-color: #002a5c; transform: translateY(-2px); box-shadow: var(--shadow); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; padding: 12px 24px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); z-index: 1000; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.05); color: white; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

.icon svg { width: 56px; height: 56px; color: var(--secondary-color); }
.feature-item .icon svg { color: rgba(255, 255, 255, 0.9); }
.social-icons a svg { width: 18px; height: 18px; fill: white; }
.footer-contact li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--secondary-color); }

.top-bar { background: linear-gradient(135deg, #001f45, var(--primary-color)); color: var(--white); font-size: 0.95rem; padding: 8px 20px; text-align: center; position: fixed; top: 0; left: 0; width: 100%; z-index: 550; overflow: hidden; height: 36px; display: flex; align-items: center; justify-content: center; }
.top-bar-slider { position: relative; width: 100%; max-width: 1200px; height: 20px; overflow: hidden; }
.top-bar-slide { position: absolute; width: 100%; text-align: center; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; white-space: nowrap; }
.top-bar-slide.active { opacity: 1; transform: translateY(0); }
.top-bar-slide a { color: var(--secondary-color); font-weight: 700; text-decoration: underline; }
.top-bar-slide svg { width: 14px; height: 14px; vertical-align: -2px; stroke: var(--secondary-color); fill: none; margin-right: 4px; }
.top-bar-marquee-wrap { display: none; }

header { position: fixed; top: 36px; left: 0; width: 100%; background-color: var(--white); box-shadow: var(--shadow); z-index: 500; transition: var(--transition); padding: 12px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo h2 { margin: 0; color: var(--primary-color); font-weight: 800; font-size: 1.5rem; display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links li a { font-weight: 600; color: var(--primary-color); font-size: 1.05rem; }
.nav-links li a:hover { color: var(--secondary-color); }
.nav-cta a { padding: 0.75rem 1.8rem; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 40px; }
.nav-links .nav-cta a { color: var(--white) !important; }

.nav-search { position: relative; margin-left: 15px; display: flex; align-items: center; width: 40px; transition: width 0.4s ease; flex-shrink: 0; }
.nav-search:hover, .nav-search:focus-within { width: 220px; }
.nav-search input { width: 100%; height: 40px; padding: 0 10px 0 36px; border: 1.5px solid #222; border-radius: 4px; font-size: 1rem; font-family: 'DM Sans', sans-serif; color: transparent; outline: none; transition: all 0.4s ease; background: transparent; cursor: pointer; box-sizing: border-box; }
.nav-search input::placeholder { color: transparent; }
.nav-search:focus-within input, .nav-search input:not(:placeholder-shown) { border-color: var(--primary-color); background: var(--white); color: var(--text-main); cursor: text; }
.nav-search:focus-within input:focus { border-color: var(--secondary-color); }
.nav-search:focus-within input::placeholder, .nav-search input:not(:placeholder-shown)::placeholder { color: #999; }
.nav-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; stroke: var(--primary-color); fill: none; pointer-events: none; transition: all 0.3s; z-index: 10; }
.nav-search:focus-within svg, .nav-search:has(input:not(:placeholder-shown)) svg { stroke: var(--text-light); width: 16px; height: 16px; left: 12px; }

.has-dropdown { position: relative; }
.has-dropdown>a { display: flex; align-items: center; gap: 4px; }
.has-dropdown>a::after { content: ''; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--primary-color); transition: var(--transition); }
.has-dropdown:hover>a::after { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--white); min-width: 280px; border-radius: var(--border-radius); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); padding: 12px 0; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100; margin-top: 15px; }
.dropdown::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid var(--white); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; margin-top: 8px; }
.dropdown li { width: 100%; }
.dropdown li a { display: flex !important; align-items: center; gap: 12px; padding: 12px 20px !important; font-size: 1rem !important; color: var(--text-main) !important; transition: var(--transition); white-space: nowrap; }
.dropdown li a:hover { background: var(--light-bg); color: var(--primary-color) !important; }
.dropdown li a svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--secondary-color); fill: none; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 700; position: relative; }
.hamburger span { width: 25px; height: 3px; background-color: var(--primary-color); border-radius: 3px; transition: var(--transition); }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.section-header { text-align: center; max-width: 900px; margin: 0 auto 50px; padding: 0 15px; }
.section-header h2 { font-size: 2.6rem; margin-bottom: 15px; line-height: 1.2; }
.section-header p { font-size: 1.15rem; }
.grid-4 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-quick { background: var(--white); border-radius: var(--border-radius); padding: 30px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; border-bottom: 4px solid var(--secondary-color); }
.card-quick:hover { transform: translateY(-10px); }
.card-quick .icon { font-size: 3rem; margin-bottom: 15px; }
.card-quick h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card { background: var(--white); border: 1px solid #eee; border-radius: var(--border-radius); padding: 40px 20px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--secondary-color); }
.service-card .icon { font-size: 3.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { font-size: 1.05rem; line-height: 1.4; margin-bottom: 20px; }
.service-card .btn { font-size: 1rem; padding: 0.5rem 1.2rem; background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.service-card:hover .btn { background: var(--primary-color); color: var(--white); }
.services-section { padding: 100px 20px; }

footer { background-color: #00224A; color: var(--white); padding: 80px 20px 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 0.9fr 0.9fr 1.6fr 0.4fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.footer-desc { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; font-size: 0.9rem; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.social-icons a:hover { background: var(--secondary-color); }
.footer-col { min-width: 0; word-break: break-word; } .footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--secondary-color); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; line-height: 1.5; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255, 255, 255, 0.8); transition: var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--secondary-color); padding-left: 5px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; position: relative; }
.newsletter-form input { padding: 12px 15px; border-radius: 5px; border: none; font-size: 0.95rem; background: rgba(255, 255, 255, 0.1); color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form button { padding: 12px; border-radius: 5px; border: none; background: var(--primary-color); color: var(--white); font-weight: 700; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--secondary-color); }
.form-success-msg { display: none; color: #4CAF50; font-weight: 600; margin-top: 10px; align-items: center; gap: 8px; }
.form-success-icon { width: 20px; height: 20px; fill: #4CAF50; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 1rem; color: rgba(255, 255, 255, 0.6); gap: 12px; text-align: center; padding-bottom: 20px; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

.header-logo-img { height: 70px !important; width: auto !important; }
.footer-logo-img { height: 85px !important; margin-left: -5px; filter: brightness(0) invert(1) !important; width: auto !important; }
.svg-sprite { display: none; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.8fr 0.9fr 0.9fr 1.4fr 0.6fr; gap: 40px; }
}
@media (max-width: 900px) {
    h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .top-bar { font-size: 0.85rem; padding: 0; height: 36px; overflow: hidden; }
    .top-bar-slider { display: none !important; }
    .top-bar-marquee-wrap { display: flex !important; align-items: center; width: 100%; height: 36px; overflow: hidden; }
    .top-bar-marquee { display: inline-flex; align-items: center; white-space: nowrap; animation: mobileMarqueeScroll 35s linear infinite; will-change: transform; flex-shrink: 0; }
    .top-bar-marquee span { display: inline-flex; align-items: center; gap: 5px; }
    .top-bar-marquee svg { width: 13px; height: 13px; stroke: var(--secondary-color); fill: none; flex-shrink: 0; }
    .top-bar-sep { margin: 0 24px; color: var(--secondary-color); }
    @keyframes mobileMarqueeScroll {
        0%   { transform: translateX(100vw); }
        100% { transform: translateX(-100%); }
    }
    header { top: 36px; }
    .nav-search { display: none; }
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background-color: var(--white); flex-direction: column; align-items: center; justify-content: center; transition: var(--transition); opacity: 0; padding-top: 80px; gap: 0; }
    .nav-links.active { left: 0; opacity: 1; z-index: 600; }
    .nav-links li { width: 80%; text-align: center; }
    .nav-links li a { display: block; padding: 15px; font-size: 1.2rem; }
    .nav-cta { margin-top: 10px; }
    .nav-cta a { display: block !important; width: 100%; text-align: center; }
    .has-dropdown>a::after { display: none; }
    .dropdown { position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; margin-top: 0; padding: 0; min-width: auto; display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown::before { display: none; }
    .dropdown li a { justify-content: center; padding: 10px 20px !important; font-size: 1rem !important; }

    .hero-content { padding: 60px 20px; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }


}

/* === Gradient accent text === */
.txt-accent { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.txt-accent-white { color: rgba(255,255,255,0.85); -webkit-text-fill-color: rgba(255,255,255,0.85); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 4px; }

#sb_instagram { max-width: 85% !important; margin-left: 0 !important; }

footer { position: relative; z-index: 10; border: none !important; padding-top: 60px !important; margin-top: 0; }
main, #content, .site-content { padding-bottom: 60px; }
.elementor-section-wrap > section:last-child { margin-bottom: 0 !important; border-bottom: none !important; }