/*
Theme Name: Benchmark Network Solutions
Theme URI: https://benchmarkns.com
Description: Modern WordPress theme for IT services company with custom blocks
Version: 1.0.0
Author: Benchmark Network Solutions
Author URI: https://benchmarkns.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: benchmark-ns
Tags: business, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* CSS Variables */
:root {
    --primary: #10477b;
    --dark: #003d7a;
    --accent: #4a90e2;
    --light: #f5f7fa;
    --text: #2c3e50;
    --text-light: #555;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text);
}

p {
    margin-bottom: 1rem;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrap {
 /*   max-width: 1200px; */
    margin: 0 auto;
    /* padding: 4rem 0rem; fza */
    padding: 0rem 0rem;
}


/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #0x10447b;
    background: #10447b;
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-message span{
    color: white;


    }
.header-message a {
    color: var(--white);
    text-decoration: none;
}

.header-message a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-main {
    padding: 1rem 0;
}

.header-search-row {
    max-width: 1400px;
    margin: 0.5rem auto 0;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size:1.4rem;
    gap: 1.5rem;
}

.site-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.site-logo:hover {
    color: var(--dark);
}

.custom-logo-link {
    max-width: 100%;  /* 30% on desktop */
}

.custom-logo-link img {
    width: 30%;
    height: auto;
    float: left;
}

/* Mobile */
@media (max-width: 768px) {
    .site-logo {
        max-width: 60%;  /* 60% on mobile */
    }
}
@media (max-width: 768px) {
    .header-message {
        display: none;
    }

    /* Target mobile retina devices */
body.is-mobile-retina .header-message {
        display: none;
}

    .header-top {
        padding: 0.3rem 0;
    }

    .header-top-inner {
        justify-content: center;
    }
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    /* padding: 0.5rem 0; */
}

.main-nav a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* Header search */
.header-search {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    /* width: min(640px, 100%);*/
    margin: 0 auto;
    position: relative;
}

.header-search input[type="search"] {
    border: 1px solid #d9dfe5;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    min-width: 300px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input[type="search"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 71, 123, 0.15);
}

.header-search button {
    border: none;
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.header-search button:hover {
    background: #63666A; /*var(--dark);*/
}

.header-search-results {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #e2e7ed;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1200;
}

.header-search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.8rem;
    border-bottom: 1px solid #f0f3f6;
    color: var(--text);
    text-decoration: none;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8fbff;
    color: var(--primary);
}

.search-result-item .result-title {
    font-size: 0.95rem;
    line-height: 1.3;
}

.search-result-item .result-type {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6f7f90;
    flex-shrink: 0;
}

.search-empty {
    padding: 0.75rem 0.8rem;
    color: #6f7f90;
    font-size: 0.9rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .header-search-row {
        padding: 0 1rem;
    }

    .header-search {
        width: 100%;
        order: 3;
        margin: 0.75rem 0 0;
    }

    .header-search input[type="search"] {
        flex: 1;
        min-width: 0;
    }
}

/* Dropdown menus */
.primary-menu ul {
    list-style: none;
}

.primary-menu li {
    position: relative;
}

/* Leave space for dropdown arrow so text doesn’t overlap */
.primary-menu li.menu-item-has-children > a {
    padding-right: 1.8rem;
    display: inline-block;
}

.primary-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.75rem 0;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.primary-menu li ul li {
    padding: 0;
}

.primary-menu li ul a {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
}

.primary-menu li ul a:hover {
    background: var(--light);
    color: var(--primary);
}

@media (min-width: 961px) {
    .primary-menu li.menu-item-has-children:hover > ul,
    .primary-menu li.menu-item-has-children:focus-within > ul,
    .primary-menu li.menu-item-has-children > ul:hover {
        opacity: 1;
        pointer-events: auto;
    }
}

.primary-menu li.open > ul {
    opacity: 1;
    pointer-events: auto;
}

/* Submenu toggle button (mobile) */
.submenu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.2rem;
    z-index: 1;
}

/* Mobile nav */
@media (max-width: 960px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: 1rem 1.5rem;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }

    .primary-menu li ul {
        position: relative;
        top: 0;
        left: 0;
        min-width: 100%;
        box-shadow: none;
        padding: 0.35rem 0 0.35rem 0.75rem;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
    }

    .primary-menu li.open > ul {
        display: block;
    }

    .submenu-toggle {
        position: absolute;
        right: 0.5rem;
        top: 0.9rem;
        transform: none;
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Footer */
.site-footer {
    background: var(--text);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-text {
    opacity: 0.8;
}

/* Content */
.page-content,
.post-content {
    line-height: 1.8;
}

.page-header,
.post-header {
    margin-bottom: 2rem;
}

.page-title,
.post-title {
    font-size: 2.5rem;
    color: var(--dark);
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        display: none;
        padding: 1rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
    }
    
    .page-title,
    .post-title {
        font-size: 2rem;
    }
    
    .content-wrap {
        padding: 2rem 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none; }

/* Custom Bullet Lists */
ul.custom-bullets {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

ul.custom-bullets li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    background-repeat: no-repeat;
    background-position: left 0.25rem;
    background-size: 1.2rem 1.2rem;
    line-height: 1.8;
}

/* Checkmark Bullets (Default) */
ul.custom-bullets.check li,
ul.custom-bullets li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230066cc" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
}

/* Star Bullets */
ul.custom-bullets.star li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffc107" stroke="%23ffc107" stroke-width="2"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}

/* Arrow Bullets */
ul.custom-bullets.arrow li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230066cc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>');
}

/* Plus Bullets */
ul.custom-bullets.plus li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300c853" stroke-width="3" stroke-linecap="round"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
}

/* Shield Bullets (Security) */
ul.custom-bullets.shield li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230066cc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>');
}

/* Circle Bullets */
ul.custom-bullets.circle li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%230066cc"></circle></svg>');
}

/* Dot Bullets */
ul.custom-bullets.dot li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4" fill="%230066cc"></circle></svg>');
}

/* Diamond Bullets */
ul.custom-bullets.diamond li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><polygon points="12 2 22 12 12 22 2 12" fill="%230066cc"></polygon></svg>');
}

/* Gear Bullets (Technical) */
ul.custom-bullets.gear li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230066cc" stroke-width="2"><circle cx="12" cy="12" r="3"></circle><path d="M12 1v6m0 6v6M5.64 5.64l4.24 4.24m4.24 4.24l4.24 4.24M1 12h6m6 0h6M5.64 18.36l4.24-4.24m4.24-4.24l4.24-4.24"></path></svg>');
}

/* Cloud Bullets */
ul.custom-bullets.cloud li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%234a90e2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"></path></svg>');
}

/* Phone Bullets (VoIP) */
ul.custom-bullets.phone li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230066cc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

/* Lock Bullets (Security) */
ul.custom-bullets.lock li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23d32f2f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>');
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.bns-footer {
    background: #1a2332;
    color: #e0e7ff;
    padding: 4rem 2rem 0;
 /*   margin-top: 4rem; */
}

.bns-footer a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s;
}

.bns-footer a:hover {
    color: #4a90e2;
}

.bns-footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(224, 231, 255, 0.2);
}

.bns-footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bns-footer-column p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #c7d2fe;
}

.bns-footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bns-footer-logo img {
    height: 40px;
    width: auto;
}

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

.bns-footer-links li {
    margin-bottom: 0.8rem;
}

.bns-footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bns-footer-links a:before {
    content: "›";
    color: #4a90e2;
    font-size: 1.2rem;
    font-weight: bold;
}

.bns-footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: start;
}

.bns-footer-contact-icon {
    font-size: 1.3rem;
    color: #4a90e2;
    min-width: 24px;
}

.bns-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bns-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.bns-footer-social a:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-3px);
}

.bns-footer-newsletter {
    background: rgba(74, 144, 226, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.bns-footer-newsletter h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.bns-footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bns-footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.bns-footer-newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a2332;
}

.bns-footer-newsletter button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4a90e2, #0066cc);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.bns-footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.bns-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bns-footer-bottom p {
    margin: 0;
    color: #c7d2fe;
}

.bns-footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.bns-footer-certifications {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.bns-footer-cert {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a90e2;
}

.bns-footer-hours {
    background: rgba(74, 144, 226, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.bns-footer-hours h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.bns-footer-hours p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .bns-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bns-footer {
        padding: 3rem 1.5rem 0;
    }
    .bns-footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .bns-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .bns-footer-newsletter-form {
        flex-direction: column;
    }
    .bns-footer-newsletter button {
        width: 100%;
    }
}


/* Newsletter Section Styles */
/*
.newsletter-section {
    background: #f8f9fa;
    padding: 60px 2rem;
    border-top: 4px solid #0f2942;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: #0f2942;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #0f2942;
    box-shadow: 0 0 0 3px rgba(15, 41, 66, 0.1);
}

.newsletter-button {
    background: linear-gradient(135deg, #0f2942 0%, #1a4d7a 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 140px;
}

.newsletter-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 41, 66, 0.3);
}

.newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.newsletter-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: none;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }
}
*/


/* ============================================================
   NEWSLETTER SIGNUP SECTION
   ============================================================ */
.newsletter-signup-section {
    background: #f8f9fa;
    padding: 60px 2rem;
    border-top: 4px solid #0f2942;
}

.newsletter-signup-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-signup-content h3 {
    font-size: 2rem;
    color: #0f2942;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-signup-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.newsletter-signup-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-input-field:focus {
    outline: none;
    border-color: #0f2942;
    box-shadow: 0 0 0 3px rgba(15, 41, 66, 0.1);
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, #0f2942 0%, #1a4d7a 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 140px;
}

.newsletter-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 41, 66, 0.3);
}

.newsletter-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.newsletter-msg {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 1rem;
    display: none;
    transition: opacity 0.3s ease;
}

.newsletter-msg.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
    animation: slideDown 0.3s ease;
}

.newsletter-msg.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
    animation: slideDown 0.3s ease;
}

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

.newsletter-privacy-text {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 2rem 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #64b5f6;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-benefits {
    margin-bottom: 2rem;
}

.footer-benefits li {
    font-size: 0.95rem;
    color: #ccc;
}

.footer-taglines h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.footer-contact li {
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #64b5f6;
    transform: translateY(-3px);
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
}

.footer-brochure-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-brochure-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.85rem;
    color: #777;
}

.footer-legal a {
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .newsletter-signup-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-signup-content h3 {
        font-size: 1.5rem;
    }

    .newsletter-signup-form .form-row {
        flex-direction: column;
    }

    .newsletter-submit-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
