/* GLOBAL STYLES */
        html, body {
            background-color: #2b5b16 !important; 
            color: white;
            font-family: 'Helvetica', sans-serif;
            text-rendering: optimizeLegibility;
            font-display: swap;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

/* index body */

        .content-body {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
            line-height: 1.6;
        }




/* TOP NAVIGATION BAR */
        .top-nav {
            background-color: #14250e;
            padding: 10px 20px;
            display: flex;
            justify-content: flex-end; 
            gap: 5px;
            align-items: center;
            border-bottom: 1px solid #1b3113;
            min-height: 60px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap; 
            padding: 15px 10px;
            display: inline-block;
        }

        .nav-link:hover { color: #FFB338; }
        .nav-link.active-link { 
         color: #FFB338 !important; 
        }

        .portal-btn {
            background-color: #FFB338;
            color: #1b3113 !important;
            padding: 10px 16px;
            border-radius: 4px;
            transition: background 0.3s ease;
            margin-left: 5px;
        }

        /* HEADER & BRANDING */
        .grizzly-header {
            background-color: #1b3113;
            text-align: center;
            padding: 40px 20px;
            border-bottom: 2px solid #14250e;
            min-height: 440px; 
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .grizzly-logo {
            max-width: 400px;
            width: 100%;
            height: auto; 
            display: block;
            margin: 0 auto;
        }




        h1 { 
            color: #FFB338; 
            font-weight: bold;
            text-align: center;
            font-size: 22px; 
            margin: 25px 0; 
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h2 {
            color: #FFB338;
            font-size: 28px;
            margin: 0;
            line-height: 1.1;
            text-align: center;
        }

        .contact-sub {
            color: #FFB338;
            font-size: 14px;
            margin: 5px 0 20px 0;
            text-align: center;
        }


        /* FOOTER STYLES - TOUCH TARGET FIX */
        .grizzly-footer {
            background-color: #14250e;
            color: white;
            padding: 60px 20px 30px 20px;
            border-top: 3px solid #FFB338;
        }

        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 40px;
        }

        .footer-column h4 {
            color: #FFB338;
            text-transform: uppercase;
            font-size: 16px;
            margin-bottom: 20px;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(243, 167, 37, 0.3);
            padding-bottom: 10px;
        }

        .footer-column ul { list-style: none; padding: 0; margin: 0; }
        .two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
        
        .footer-column ul li a { 
            color: #eee; 
            text-decoration: none; 
            font-size: 14px; 
            display: inline-block;
            padding: 12px 0; /* Ensures minimum 48px height */
            width: 100%;
        }
        
        .footer-column ul li a:hover { color: #FFB338; }
        .footer-bottom p { color: #FFB338; font-size: 12px; font-weight: bold; margin: 0; padding: 20px 0; text-align: center; }

        @media (max-width: 850px) {
            .footer-container { grid-template-columns: 1fr; text-align: center; }
            .two-col-list { justify-content: center; max-width: 400px; margin: 0 auto; }
        }

        @media (max-width: 480px) { 
            .top-nav { justify-content: center; gap: 5px; padding: 10px 5px; }
            .nav-link { font-size: 11px; padding: 12px 8px; }
            .grizzly-header { min-height: 380px; }
            .about-card { padding: 25px; }
            h2 { font-size: 24px; }
            .rogue-text { font-size: 18px; }
            .btn-call { width: 100%; box-sizing: border-box; }
        }



/* BRANDED SOCIAL MEDIA STYLES */
        .social-links {
            display: flex;
            gap: 20px; /* Increased gap for better touch targets */
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .social-icon svg {
            fill: #eeeeee; 
            width: 30px;
            height: 30px;
            transition: fill 0.3s ease;
        }

        .social-icon:hover svg {
            fill: #FFB338; /* Grizzly Gold */
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 850px) {
            .social-links { justify-content: center; margin-bottom: 25px; }
        }





 /* CONTACT FORM */
        .form-container { 
            max-width: 600px; 
            margin: 0 auto;
            padding: 20px; 
            box-sizing: border-box; 
        }

        .form-card {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .quick-contact { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; width: 100%; }
        
        .btn-action { 
            flex: 1 1 calc(33% - 10px); 
            background-color: #1a472a; 
            color: white; 
            text-align: center; 
            padding: 18px 5px; 
            text-decoration: none; 
            border-radius: 8px; 
            font-weight: bold; 
            border: 2px solid #1a472a; 
            font-size: 14px; 
            box-sizing: border-box;
            min-height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            input[type="text"], input[type="email"], input[type="tel"] { 
            width: 100%; padding: 14px; border-radius: 4px; border: 1px solid #274e13; 
            background: #111; color: #fff; box-sizing: border-box; font-size: 16px; 
        }

        /* CONTACT FORM CHECKBOXES */
        .checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; margin: 15px 0; }
        
        .checkbox-item { 
            display: flex; 
            align-items: center; 
            font-size: 14px; 
            cursor: pointer; 
            padding: 12px 5px; 
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
        }
        .checkbox-item input { margin-right: 12px; width: 22px; height: 22px; accent-color: #FFB338; }





 /* REFERRAL BOX  */
        .referral-box {
            background: rgba(0, 0, 0, 0.5);
            border: 2px dashed #FFB338;
            padding: 30px 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 60px;
        }

        .referral-box h3 { color: #FFB338; margin: 0 0 10px 0; font-size: 20px; text-transform: uppercase; }

        .referral-btn { 
            background: none; 
            border: none; 
            color: #FFB338; 
            font-weight: bold; 
            text-decoration: underline; 
            font-size: 18px; 
            cursor: pointer; 
            padding: 15px; /* Touch target fix */
            text-underline-offset: 4px;
            display: inline-block;
        }


/* BLOG PAGE  */




        /* BLOG LAYOUT STYLES */
        .blog-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 20px 80px 20px;
        }

        .featured-post {
            background: rgba(0,0,0,0.5);
            border: 2px solid #FFB338;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            text-align: left;
        }

        .featured-label {
            background: #FFB338;
            color: #1b3113;
            padding: 4px 10px;
            font-weight: bold;
            font-size: 12px;
            border-radius: 4px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .post-date {
            color: #FFB338;
            font-size: 12px;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .featured-post h2 { 
            color: #FFB338; 
            margin: 20px 0 15px 0; 
            font-size: 32px;
            line-height: 1.2;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .blog-card {
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.2s, border 0.2s;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .blog-card h3 { color: #FFB338; margin: 10px 0; }
        .post-excerpt { color: #eee; font-size: 15px; line-height: 1.6; flex-grow: 1; }

        /* READ MORE - TOUCH TARGET FIX */
        .read-more {
            color: white;
            text-decoration: underline;
            font-weight: bold;
            margin-top: 15px;
            display: inline-block;
            text-underline-offset: 4px;
            padding: 15px 0; /* Increased for mobile hit area */
            min-width: 120px;
        }

        .read-more:hover { color: #FFB338; }



        .blog-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }


