﻿            src: url('/fonts/NeueHaasDisplayLight.woff2') format('woff2'),
                 url('/fonts/NeueHaasDisplayLight.woff') format('woff'),
                 url('/fonts/NeueHaasDisplayLight.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Neue Haas Grotesk Display Pro';
            src: url('/fonts/NeueHaasDisplayRoman.woff2') format('woff2'),
                 url('/fonts/NeueHaasDisplayRoman.woff') format('woff'),
                 url('/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Neue Haas Grotesk Display Pro';
            src: url('/fonts/NeueHaasDisplayMedium.woff2') format('woff2'),
                 url('/fonts/NeueHaasDisplayMedium.woff') format('woff'),
                 url('/fonts/NeueHaasDisplayMedium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Neue Haas Grotesk Display Pro';
            src: url('/fonts/NeueHaasDisplayBold.woff2') format('woff2'),
                 url('/fonts/NeueHaasDisplayBold.woff') format('woff'),
                 url('/fonts/NeueHaasDisplayBold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        
        :root {
            --primary-green: #fec028;
            --secondary-gray: #531147;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --black: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 14px;
        }
        
        ::-webkit-scrollbar-track {
            background: #2c2c2c;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 7px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #8b1145;
        }
        
        /* Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--primary-green) #2c2c2c;
        }
        
        body {
            font-family: 'Neue Haas Grotesk Display Pro', 'Lato', sans-serif;
            color: var(--black);
            line-height: 1.4;
        }

        /* Text Selection Color */
        ::selection {
            background-color: var(--primary-green);
            color: var(--white);
        }

        ::-moz-selection {
            background-color: var(--primary-green);
            color: var(--white);
        }

        /* Breadcrumb Styles */
        .breadcrumb-link {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: var(--primary-green);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Neue Haas Grotesk Display Pro', 'Poppins', sans-serif;
            font-weight: normal;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            box-shadow: none;
            transition: background-color 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
            border-bottom: 1px solid transparent;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 999;
            height: 78px;
            animation: headerIntro 520ms ease-out 1;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border-bottom-color: rgba(255, 255, 255, 0.45);
        }

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

        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            position: relative;
            height: 100%;
            width: min(1400px, calc(100% - 84px));
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            position: static;
            z-index: 1000;
            background-color: transparent;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }
        
        .logo img {
            height: 56px;
            width: auto;
        }

        @media (min-width: 769px) {
            header {
                height: 86px;
            }

            .logo img {
                height: 62px;
            }

            .hero {
                padding: 106px 83px 68px;
            }
        }
        
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-green);
        }
        
        .logo-text span {
            color: var(--secondary-gray);
        }
        
        nav {
            margin-left: auto;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 35px;
        }

        .header-extra-actions {
            display: list-item;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #000000;
            font-weight: 400;
            transition: color 0.3s;
            font-size: 16px;
            font-family: 'Raleway', sans-serif;
        }
        
        nav ul li a:hover {
            color: #FCA903;
        }

        /* Active menu item */
        nav ul li a.active {
            color: #FCA903;
            font-weight: 400;
        }

        .header-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 100px;
            min-height: 32px;
            padding: 5px 14px;
            border-radius: 999px;
            background: #7A7A7A;
            color: #FFFFFF;
            border: none;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 300;
            cursor: pointer;
            transition: background-color 0.25s ease;
        }

        .header-action-btn:hover {
            background: #89001B;
        }

        .header-action-btn.secondary {
            background: #7A7A7A;
        }

        .header-action-btn.secondary:hover {
            background: #531147;
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: 100%;
            left: -20px;
            right: -20px;
            height: 20px;
            z-index: 999;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
            color: var(--primary-green);
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            z-index: 1000;
            margin-top: 5px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition-delay: 0s;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: var(--secondary-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .dropdown-menu a:hover {
            background-color: var(--primary-green);
            color: var(--white);
            padding-left: 25px;
        }

        #auth-button {
            background-color: var(--secondary-gray);
            color: var(--white);
            font-size: 0.9rem;
        }

        #auth-button:hover {
            background-color: var(--primary-green);
        }
        
        .cta-button {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: normal;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #8b1145 !important;
        }
        
        .user-avatar {
            padding: 6px 20px;
            height: auto;
            border-radius: 8px;
            background-color: var(--primary-green);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: normal;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            white-space: nowrap;
            line-height: 1.2;
        }
        
        .user-avatar:hover {
            background-color: #8b1145;
        }
        
        .mobile-menu {
            display: none;
            position: relative;
            width: 32px;
            height: 32px;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            transition: transform 0.45s ease;
            z-index: 1001;
        }

        .mobile-menu-bar {
            width: 100%;
            height: 2.5px;
            background-color: #531147;
            border-radius: 999px;
            transition: transform 0.45s ease, opacity 0.3s ease, width 0.45s ease, background-color 0.25s ease;
        }

        .mobile-menu-bar:nth-child(1),
        .mobile-menu-bar:nth-child(3) {
            width: 70%;
        }

        .mobile-menu:hover .mobile-menu-bar,
        .mobile-menu:focus-visible .mobile-menu-bar {
            background-color: #fec028;
        }

        .mobile-menu.active {
            transform: rotate(180deg);
        }

        .mobile-menu.active .mobile-menu-bar {
            position: absolute;
            width: 100%;
            background-color: #531147;
        }

        .mobile-menu.active .mobile-menu-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .mobile-menu.active .mobile-menu-bar:nth-child(1) {
            transform: rotate(45deg);
        }

        .mobile-menu.active .mobile-menu-bar:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            min-height: 100svh;
            padding: 78px 78px 39px;
            width: 100%;
            display: flex;
            align-items: stretch;
        }

        .hero .container {
            width: 100%;
            max-width: none;
            padding: 0;
            position: relative;
            display: flex;
            align-items: stretch;
        }

        .hero-shell {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            border-radius: 25px;
            min-height: calc(100vh - 156px);
            min-height: calc(100svh - 156px);
            padding: clamp(72px, 7vw, 100px);
            background-image: url('/images/BG Overlay.webp'), linear-gradient(105deg, #DADADA 54%, #E7E7E7 68%);
            background-position: right bottom, center;
            background-repeat: no-repeat, no-repeat;
            background-size: clamp(520px, 58vw, 1180px) auto, cover;
            width: 100%;
        }

        .hero-shell::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
            background-size: 170px 170px;
            background-repeat: repeat;
            opacity: 0.07;
            pointer-events: none;
            z-index: 1;
        }

        :root {
            --hero-edge: clamp(32px, 5vw, 100px);
        }

        .hero-businesses-bg {
            position: absolute;
            left: var(--hero-edge);
            right: var(--hero-edge);
            top: 50%;
            bottom: auto;
            transform: translateY(-6%);
            margin: 0;
            font-family: 'League Spartan', 'Montserrat', sans-serif;
            font-size: clamp(124px, 14.2vw, 215px);
            font-weight: 900;
            line-height: 0.83;
            letter-spacing: -0.03em;
            color: #F8F8F8;
            text-shadow: 0 0 0.6px rgba(248, 248, 248, 0.95), 0 0 1.2px rgba(248, 248, 248, 0.7);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        .hero-grid {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            align-items: end;
            gap: clamp(14px, 2vw, 28px);
            min-height: clamp(400px, 61vh, 500px);
        }

        .hero-left {
            align-self: start;
            margin-top: clamp(102px, 14vh, 150px);
        }

        .hero-crafting {
            margin: 0 0 6px;
            color: #7A7A7A;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(22px, 2.3vw, 30px);
            font-weight: 500;
            line-height: 1.2;
        }

        .hero-elevating {
            margin: 0;
            color: #000000;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(48px, 6vw, 80px);
            font-weight: 700;
            line-height: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 0;
        }

        .hero-scroll-wrap {
            position: absolute;
            left: var(--hero-edge);
            bottom: 110px;
            z-index: 3;
        }

        .hero-scroll-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 112px;
            min-height: 58px;
            padding: 14px 24px;
            border-radius: 999px;
            background: #89001B;
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 300;
            transition: background-color 0.25s ease;
        }

        .hero-scroll-btn:hover {
            background: #7A7A7A;
        }

        .hero-quote-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 128px;
            min-height: 58px;
            padding: 14px 24px;
            border-radius: 999px;
            background: #531147;
            color: #FFFFFF;
            border: none;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 300;
            cursor: pointer;
            transition: background-color 0.25s ease;
        }

        .hero-quote-btn:hover {
            background: #7A7A7A;
        }

        .hero-image-wrap {
            position: relative;
            justify-self: center;
            align-self: end;
            max-width: 100%;
            transform: translateX(-4%) translateY(7%);
            margin-bottom: -40px;
            z-index: 8;
        }

        .hero-image-wrap img {
            width: clamp(520px, 55vw, 900px);
            height: auto;
            display: block;
            object-fit: contain;
        }

        .hero-glance {
            position: absolute;
            right: clamp(26px, 3.8vw, 54px);
            bottom: 110px;
            max-width: 320px;
            margin-bottom: 0;
            text-align: right;
            z-index: 5;
        }

        .hero-glance-title {
            margin: 0 0 10px;
            color: #3f3f3f;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.45;
        }

        .hero-glance-text {
            margin: 0;
            color: #2f2f2f;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 300;
            line-height: 1.45;
        }

        @media (max-width: 1200px) {
            .hero {
                padding: 66px 54px 54px;
            }

            .hero-shell {
                padding: clamp(58px, 6vw, 84px);
                background-size: clamp(460px, 62vw, 940px) auto, cover;
            }

            .hero-grid {
                grid-template-columns: 1fr 1.28fr;
            }

            .hero-businesses-bg {
                bottom: 88px;
                top: 50%;
                transform: translateY(-6%);
            }

            .hero-left {
                margin-top: 96px;
            }

            .hero-image-wrap img {
                width: clamp(430px, 48vw, 720px);
            }
        }

        /* Exact 1280x720 laptop viewport tuning */
        @media screen and (width: 1280px) and (height: 720px) {
            .hero {
                padding: 86px 70px 28px;
            }

            .hero-shell {
                min-height: calc(100svh - 114px);
                padding: 56px 56px 28px;
            }

            .hero-grid {
                min-height: clamp(300px, 49vh, 360px);
            }

            .hero-left {
                margin-top: 72px;
            }

            .hero-businesses-bg {
                top: 52%;
                line-height: 0.9;
                font-size: clamp(108px, 12.8vw, 168px);
            }

            .hero-image-wrap {
                transform: translateX(-3%) translateY(4%);
                margin-bottom: -34px;
            }

            .hero-image-wrap img {
                width: clamp(500px, 50vw, 700px);
            }

            .hero-scroll-wrap,
            .hero-glance {
                bottom: 84px;
            }
        }

        /* Exact 1366x768 laptop viewport tuning */
        @media screen and (width: 1366px) and (height: 768px) {
            .hero {
                padding: 88px 72px 34px;
            }

            .hero-shell {
                min-height: calc(100svh - 122px);
                padding: 60px 58px 34px;
            }

            .hero-grid {
                min-height: clamp(330px, 52vh, 390px);
            }

            .hero-left {
                margin-top: 78px;
            }

            .hero-businesses-bg {
                top: 51%;
                line-height: 0.88;
                font-size: clamp(112px, 12.7vw, 176px);
            }

            .hero-image-wrap {
                transform: translateX(-3%) translateY(5%);
                margin-bottom: -32px;
            }

            .hero-image-wrap img {
                width: clamp(520px, 50vw, 720px);
            }

            .hero-scroll-wrap,
            .hero-glance {
                bottom: 88px;
            }
        }

        /* Near-720 laptop viewport fallback (browser UI reduces visible height) */
        @media screen and (min-width: 1201px) and (max-width: 1366px) and (min-height: 650px) and (max-height: 719px) {
            .hero {
                padding: 84px 68px 24px;
            }

            .hero-shell {
                min-height: calc(100svh - 108px);
                padding: 52px 52px 24px;
            }

            .hero-grid {
                min-height: clamp(280px, 46vh, 340px);
            }

            .hero-left {
                margin-top: 64px;
            }

            .hero-businesses-bg {
                top: 53%;
                line-height: 0.9;
                font-size: clamp(102px, 12.2vw, 160px);
            }

            .hero-image-wrap {
                transform: translateX(-3%) translateY(6%);
                margin-bottom: -28px;
            }

            .hero-image-wrap img {
                width: clamp(480px, 49vw, 680px);
            }

            .hero-scroll-wrap,
            .hero-glance {
                bottom: 74px;
            }
        }

        @media (max-width: 992px) {
            .hero {
                padding: 34px 26px 26px;
            }

            .hero-shell {
                min-height: calc(100svh - 52px);
                padding: 56px 56px 40px;
                padding-bottom: 36px;
                background-size: clamp(420px, 78vw, 860px) auto, cover;
            }

            .hero-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
                min-height: auto;
            }

            .hero-left {
                margin-top: 22px;
            }

            .hero-image-wrap {
                width: 100%;
                transform: translateY(3%);
                margin-bottom: -16px;
            }

            .hero-glance {
                right: 26px;
                bottom: 110px;
                max-width: 520px;
                text-align: right;
            }

            .hero-businesses-bg {
                left: 26px;
                right: 26px;
                top: 56%;
                bottom: auto;
                transform: translateY(-50%);
                font-size: clamp(62px, 14vw, 130px);
            }

            .hero-scroll-wrap {
                position: static;
                margin-top: 8px;
            }

            .hero-image-wrap img {
                width: clamp(360px, 56vw, 620px);
            }
        }

        @media (max-width: 768px) {
            header {
                height: 66px;
            }

            .header-container {
                padding: 0 20px;
                width: calc(100% - 40px);
                gap: 20px;
                align-items: center;
            }

            .logo {
                margin-right: auto;
                flex-shrink: 0;
                display: flex;
                align-items: center;
            }

            .logo img {
                height: 60px;
            }

            .mobile-menu {
                margin-left: auto;
                flex-shrink: 0;
                align-self: center;
            }

            .hero {
                padding: 70px 15px 15px;
            }

            .hero-shell {
                border-radius: 18px;
                min-height: auto;
                padding: 20px 26px 8px;
                background-size: clamp(360px, 115vw, 760px) auto, cover;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                gap: 6px;
            }

            .hero-shell::after {
                opacity: 0.06;
            }

            .hero-grid {
                display: contents;
            }

            .hero-left {
                order: 1;
                margin-top: 0;
            }

            .hero-businesses-bg {
                position: static;
                order: 2;
                margin: 14px 0 4px 0;
                white-space: normal;
                font-size: clamp(48px, 16vw, 76px);
                line-height: 0.9;
                transform: none;
            }

            .hero-image-wrap {
                order: 3;
                transform: none;
                margin-bottom: 0;
                justify-self: unset;
                align-self: unset;
            }

            .hero-image-wrap img {
                width: min(100%, 520px);
            }

            .hero-glance {
                position: static;
                order: 4;
                margin: 10px 0 0 0;
                text-align: left;
                max-width: 100%;
            }

            .hero-scroll-wrap {
                position: static;
                order: 5;
                margin-top: 8px;
                width: 100%;
            }

            .hero-buttons {
                display: flex !important;
                flex-direction: row !important;
                align-items: center;
                gap: 10px;
                justify-content: flex-start;
                flex-wrap: nowrap !important;
                width: 100%;
            }

            .hero-scroll-btn {
                display: inline-flex !important;
                width: auto !important;
                min-width: 80px;
                min-height: 44px;
                padding: 6px 16px;
                font-size: 14px;
                flex-shrink: 0;
            }

            .hero-quote-btn {
                display: inline-flex !important;
                width: auto !important;
                min-width: 100px;
                min-height: 44px;
                padding: 6px 16px;
                font-size: 14px;
                flex-shrink: 0;
            }
        }

        @media (max-width: 480px) {
            header {
                height: 60px;
            }

            .header-container {
                padding: 0 16px;
                width: calc(100% - 32px);
                gap: 16px;
            }

            .logo img {
                height: 52px;
            }

            .hero {
                padding: 12px;
                padding-top: 70px;
            }

            .hero-shell {
                border-radius: 14px;
                min-height: auto;
                padding: 18px 18px 10px;
                background-size: clamp(300px, 130vw, 620px) auto, cover;
            }

            .hero-shell::after {
                opacity: 0.05;
            }

            .hero-crafting {
                font-size: clamp(18px, 5.2vw, 24px);
            }

            .hero-elevating {
                font-size: clamp(36px, 10.5vw, 56px);
            }

            .hero-businesses-bg {
                font-size: clamp(40px, 14vw, 62px);
            }

            .hero-scroll-btn {
                min-width: 70px;
                min-height: 40px;
                padding: 4px 12px;
                font-size: 13px;
            }

            .hero-quote-btn {
                min-width: 90px;
                min-height: 40px;
                padding: 4px 12px;
                font-size: 13px;
            }

            .hero-glance-title,
            .hero-glance-text {
                font-size: 12px;
            }
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-gray);
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .services-grid {
            display: flex;
            flex-direction: row;
            gap: 22px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding-bottom: 10px;
            scrollbar-width: none;
            cursor: grab;
            user-select: none;
        }

        .services-grid::-webkit-scrollbar {
            display: none;
        }

        .services-grid.dragging {
            cursor: grabbing;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            overflow: hidden;
            flex: 0 0 260px;
            min-width: 260px;
            pointer-events: auto;
        }

        .service-card-img {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-card-img img {
            transform: scale(1.08);
        }

        .service-card-body {
            padding: 22px 20px 25px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 12px;
        }
        
        .service-card h3 {
            color: var(--secondary-gray);
            margin-bottom: 10px;
            font-size: 1.225rem;
            font-weight: 700;
        }

        .service-card p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .service-card {
                flex: 0 0 240px;
                min-width: 240px;
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                gap: 16px;
            }

            .service-card {
                flex: 0 0 220px;
                min-width: 220px;
            }
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 80px 0;
            background-color: var(--light-gray);
            background-image: url('/images/BG Overlay.webp');
            background-size: cover;
            background-position: bottom right;
            background-repeat: no-repeat;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px;
            align-items: stretch;
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 245px;
            border: 1px solid rgba(20, 20, 20, 0.45);
            background-color: #ececec;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            padding: 0;
            background-color: transparent;
            transition: transform 0.45s ease;
        }
        
        .portfolio-item:hover img {
            transform: none;
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-item .portfolio-overlay {
            display: none;
        }

        .portfolio-item-gif img {
            object-fit: cover;
            object-position: center;
            padding: 0;
        }

        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 700px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-item {
                height: 210px;
            }
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
        }
        
        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 0 auto;
        }
        
        .testimonial {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .testimonial:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(254, 192, 40, 0.2);
        }

        .testimonial:hover .testimonial-text {
            color: #2f2f2f;
        }

        .testimonial:hover .testimonial-author {
            color: var(--white);
        }

        .testimonial:hover .testimonial-stars {
            color: var(--white);
        }

        .testimonial-stars {
            color: var(--primary-green);
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #2f2f2f;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary-gray);
            font-size: 0.95rem;
        }

        @media (max-width: 992px) {
            .testimonial-slider {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimonial-slider {
                grid-template-columns: 1fr;
            }
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: #F4F5F8;
        }
        
        .contact-page-hero {
            background-color: #F4F5F8;
            padding: 60px 0 40px;
            text-align: center;
            margin-top: 75px;
        }
        
        .contact-page-hero h1 {
            font-size: 2.5rem;
            color: var(--secondary-gray);
            margin-bottom: 15px;
        }
        
        .contact-page-hero p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            margin-bottom: 50px;
            align-items: start;
        }
        
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 35px;
            height: 100%;
        }
        
        .contact-card {
            background: var(--primary-green);
            padding: 25px 15px;
            border-radius: 15px;
            text-align: center;
            color: var(--white);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid var(--primary-green);
        }
        
        .contact-card:hover {
            background-color: var(--white);
            border-color: var(--primary-green);
            transform: translateY(-5px);
        }

        .contact-card:hover h3 {
            color: var(--primary-green);
        }

        .contact-card:hover p {
            color: var(--secondary-gray);
        }

        .contact-card:hover .contact-card-icon {
            color: var(--primary-green);
        }
        
        .contact-card-icon {
            font-size: 2rem;
            margin-bottom: 5px;
            color: var(--white);
            font-weight: 300;
            transition: color 0.3s ease;
        }
        
        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--white);
            font-weight: 600;
        }
        
        .contact-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--white);
        }
        
        .contact-form-section {
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }
        
        .contact-form-section h3 {
            color: var(--secondary-gray);
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        @media (max-width: 968px) {
            .contact-content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-form-section .form-control:focus {
            border: 1px solid var(--primary-green);
            outline: none;
        }

        /* Ensure all form controls use a 1px green border on focus */
        .form-control:focus {
            border: 1px solid var(--primary-green);
            outline: none;
        }
        
        .contact-form-section .cta-button {
            width: 100%;
            background-color: var(--secondary-gray);
            border: none;
            padding: 12px;
            font-size: 1.1rem;
            font-weight: normal;
            border-radius: 25px;
            transition: background-color 0.3s;
        }
        
        .contact-form-section .cta-button:hover {
            background-color: var(--primary-green);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info h3 {
            color: var(--secondary-gray);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-detail i {
            color: var(--primary-green);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100% !important;
            padding: 12px !important;
            border: 1px solid #ddd !important;
            border-radius: 6px !important;
            font-family: 'Lato', sans-serif !important;
        }
        
        textarea.form-control {
            min-height: 120px !important;
            resize: vertical !important;
        }
        
        /* Footer */
        footer {
            background-color: #F7F7F7;
            color: #000;
            padding: 0;
            position: relative;
            overflow: hidden;
            font-family: 'Raleway', sans-serif;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .footer-inner {
            padding: 55px 0 45px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .footer-company-name {
            font-size: 14px;
            font-weight: 700;
            color: #000;
            margin-bottom: 4px;
            font-family: 'Raleway', sans-serif;
        }

        .footer-location {
            color: #8b1145;
            font-weight: 700;
            font-size: 14px;
            font-family: 'Raleway', sans-serif;
            margin-bottom: 16px;
        }

        .footer-desc {
            color: #000;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .footer-copy {
            color: #000;
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .footer-legal a {
            color: #8b1145;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            font-weight: 400;
            transition: opacity 0.2s;
        }

        .footer-legal a:hover {
            opacity: 0.75;
            text-decoration: underline;
        }

        .footer-mobile-bottom {
            display: none;
        }

        .footer-col-heading {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

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

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #000;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.25s;
        }

        .footer-col ul li a:hover {
            color: #8b1145;
        }

        .footer-contact-info p {
            color: #000;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .footer-social-text {
            color: #000;
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 2.1;
        }

        .footer-social-text a {
            color: #000;
            text-decoration: none;
            transition: color 0.25s;
        }

        .footer-social-text a:hover {
            color: #8b1145;
        }

        .footer-deco-img {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 220px;
            width: auto;
            display: block;
            pointer-events: none;
        }

        .footer-bottom-bar {
            display: none;
        }

        @media (min-width: 1440px) {
            footer .container {
                max-width: 1400px;
            }
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 560px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-brand .footer-copy,
            .footer-brand .footer-legal {
                display: none;
            }

            .footer-mobile-bottom {
                display: block;
                margin-top: 28px;
            }

            .footer-mobile-bottom .footer-legal {
                margin-bottom: 10px;
            }

            .footer-deco-img {
                height: 90px;
            }
        }
        
        /* Admin Dashboard Styles */
        .admin-login {
            margin-top: 0;
            padding: 0;
            background-color: var(--secondary-gray);
            min-height: 100vh;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .admin-login .container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .login-container {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }
        
        .login-container h2 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary-gray);
        }
        
        .login-container .cta-button {
            border: none;
        }
        
        .login-container .cta-button:hover {
            background-color: var(--secondary-gray);
        }
        
        .dashboard {
            margin-top: 100px;
            padding: 30px 0;
            min-height: calc(100vh - 80px);
            background-color: var(--light-gray);
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ddd;
        }
        
        .dashboard-nav {
            background-color: var(--white);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .dashboard-nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        
        .dashboard-nav a {
            text-decoration: none;
            color: var(--secondary-gray);
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .dashboard-nav a.active,
        .dashboard-nav a:hover {
            background-color: var(--primary-green);
            color: var(--white);
        }
        
        .dashboard-content {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        
        .stat-card h3 {
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        .stat-card p {
            color: var(--secondary-gray);
            font-weight: 500;
        }
        
        .table-container {
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background-color: var(--light-gray);
            color: var(--secondary-gray);
            font-weight: 600;
        }
        
        tr:hover {
            background-color: rgba(254, 192, 40, 0.05);
        }
        
        .status-badge {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .status-new {
            background-color: #e3f2fd;
            color: #1976d2;
        }
        
        .status-contacted {
            background-color: #fff8e1;
            color: #ff8f00;
        }
        
        .status-quoted {
            background-color: #e8f5e9;
            color: #388e3c;
        }
        
        .status-closed {
            background-color: #f5f5f5;
            color: #616161;
        }
        
        .btn {
            padding: 8px 15px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: normal;
            transition: background-color 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary-green);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #8b1145;
        }
        
        .btn-secondary {
            background-color: var(--secondary-gray);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: #4a4a4a;
        }
        
        .btn-sm {
            padding: 5px 10px;
            font-size: 0.8rem;
        }
        
        .action-buttons {
            display: flex;
            gap: 5px;
        }
        
        .filters {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-group label {
            font-weight: 500;
            color: var(--secondary-gray);
        }
        
        .filter-select {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background-color: var(--white);
        }
        
        .lead-detail {
            background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid #e8e8e8;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }

        .lead-detail h3 {
            margin: 0;
            color: var(--secondary-gray);
            font-size: 1.1rem;
            letter-spacing: 0.01em;
        }

        .lead-detail__header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #ececec;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .lead-detail__subline {
            margin-top: 8px;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.45;
        }

        .lead-detail__status {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .lead-detail__status .status-badge {
            margin-top: 4px;
        }

        .lead-detail__section {
            margin-top: 18px;
        }

        .lead-detail__section:first-of-type {
            margin-top: 0;
        }

        .lead-detail__section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .lead-detail__section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            border-radius: 999px;
            background: #fec028;
        }

        .lead-detail__section-title span {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--secondary-gray);
        }

        .lead-detail__section-body {
            background: #ffffff;
            border: 1px solid #ededed;
            border-radius: 10px;
            padding: 16px;
        }

        .lead-detail__section-body--flat {
            padding: 0;
            border: 0;
            background: transparent;
        }

        .lead-info--summary {
            gap: 12px;
        }

        .lead-info--summary .info-item,
        .lead-info--attribution .info-item {
            margin-bottom: 0;
            padding: 12px 14px;
            border-radius: 8px;
            background: #fafafa;
            border: 1px solid #ececec;
        }

        .lead-info--summary .info-label,
        .lead-info--attribution .info-label {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .lead-info--summary .status-inline {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .lead-detail__attribution-note {
            margin-top: 10px;
            font-size: 0.88rem;
            color: #6b6b6b;
        }

        .lead-detail__project p {
            margin: 0;
            color: #333;
            line-height: 1.7;
        }

        .lead-attribution {
            margin-top: 18px;
            padding: 16px;
            border: 1px solid #e2e2e2;
            border-radius: 8px;
            background: var(--white);
        }

        .lead-attribution__header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .lead-attribution__title {
            font-weight: 600;
            color: var(--secondary-gray);
            letter-spacing: 0.01em;
        }

        .lead-attribution__hint {
            font-size: 0.85rem;
            color: #777;
        }

        .lead-attribution__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 12px;
        }

        .lead-attribution__item {
            min-height: 72px;
            padding: 12px 14px;
            border-radius: 8px;
            background: #fafafa;
            border: 1px solid #ececec;
        }

        .lead-attribution__label {
            display: block;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--secondary-gray);
            margin-bottom: 8px;
        }

        .lead-attribution__value {
            display: block;
            color: #222;
            font-weight: 500;
            word-break: break-word;
            line-height: 1.4;
        }

        .lead-attribution__meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .lead-attribution__meta-item {
            padding: 11px 14px;
            border-radius: 8px;
            background: #f6f6f6;
            border: 1px dashed #dddddd;
            color: #444;
            font-size: 0.92rem;
            line-height: 1.45;
            word-break: break-word;
        }
        
        .lead-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .info-item {
            margin-bottom: 10px;
        }
        
        .info-label {
            font-weight: 500;
            color: var(--secondary-gray);
        }
        
        .notes-section {
            margin-top: 30px;
        }
        
        .notes-list {
            margin-top: 15px;
        }
        
        .note-item {
            background-color: var(--white);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-green);
        }
        
        .note-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .note-author {
            font-weight: 500;
            color: var(--secondary-gray);
        }
        
        .note-date {
            color: #888;
            font-size: 0.9rem;
        }
        
        .add-note-form {
            margin-top: 20px;
        }

        /* ─── Lead Detail Card v2 (.ld-) ─── */
        .ld-card {
            background: #fff;
            border: 1px solid #e4e4e4;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-bottom: 24px;
        }

        .ld-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 22px 18px;
            background: linear-gradient(135deg, #531147 0%, #7a1a68 100%);
            flex-wrap: wrap;
        }

        .ld-header h3 {
            margin: 0 0 6px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.01em;
        }

        .ld-header__meta {
            font-size: 0.83rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.55;
        }

        .ld-header__actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        .ld-section {
            padding: 18px 22px;
            border-top: 1px solid #f0f0f0;
        }

        .ld-section__heading {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .ld-section__heading::before {
            content: '';
            display: block;
            width: 3px;
            height: 14px;
            background: #fec028;
            border-radius: 99px;
            flex-shrink: 0;
        }

        .ld-section__heading span {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #531147;
        }

        .ld-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
            gap: 10px;
        }

        .ld-grid--5 {
            grid-template-columns: repeat(5, 1fr);
        }

        .ld-grid--2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .ld-field {
            padding: 11px 14px;
            background: #f8f7fc;
            border: 1px solid #ede8f2;
            border-radius: 8px;
        }

        .ld-field--meta {
            background: #fafafa;
            border-style: dashed;
            border-color: #ddd;
        }

        .ld-field__key {
            display: block;
            font-size: 0.67rem;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: #9080a4;
            margin-bottom: 5px;
        }

        .ld-field__val {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1a1a1a;
            word-break: break-word;
            line-height: 1.4;
        }

        .ld-field--meta .ld-field__key { color: #999; }
        .ld-field--meta .ld-field__val { font-weight: 500; color: #444; }

        .ld-attr-note {
            margin-top: 10px;
            font-size: 0.81rem;
            color: #999;
        }

        .ld-project-text {
            margin: 0;
            font-size: 0.95rem;
            color: #333;
            line-height: 1.75;
            white-space: pre-wrap;
        }

        @media (max-width: 700px) {
            .ld-header { padding: 14px 16px; }
            .ld-section { padding: 14px 16px; }
            .ld-grid--5 { grid-template-columns: repeat(2, 1fr); }
            .ld-grid--2 { grid-template-columns: 1fr; }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                align-items: center;
            }
            
            nav {
                width: 100vw;
                margin-top: 0;
                display: none;
                position: fixed;
                top: 66px;
                left: 0;
                right: 0;
                background-color: var(--white);
                box-shadow: none;
                padding: 10px 0;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                padding: 0;
            }
            
            nav ul li {
                margin: 10px 0;
                width: 100%;
                text-align: center;
            }
            
            nav ul li button.cta-button {
                width: auto;
                max-width: fit-content;
            }

            nav ul li .header-action-btn {
                width: auto;
                max-width: fit-content;
            }
            
            nav ul li.dropdown {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin: 10px 0 0 0;
            }
            
            #auth-button-container {
                margin: 10px 0;
                display: flex;
                justify-content: center;
            }
            
            #auth-button-container .cta-button {
                width: auto;
                max-width: 150px;
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .user-avatar {
                width: auto;
                max-width: 120px;
                padding: 6px 16px;
                font-size: 0.9rem;
                margin: 0 auto;
            }
            
            .dropdown-toggle {
                justify-content: center;
            }
            
            .dropdown-menu {
                position: relative;
                left: auto;
                right: auto;
                margin-top: 0;
                width: 90%;
                max-width: 300px;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
                display: none;
                box-shadow: none;
            }
            
            .dropdown:hover .dropdown-menu {
                display: none;
            }
            
            .dropdown.mobile-active .dropdown-menu {
                display: block;
                max-height: 500px;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                margin-top: 10px;
            }
            
            .mobile-menu {
                display: flex;
                position: relative;
                top: auto;
                right: auto;
                align-self: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: row !important;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .dashboard-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            
            .dashboard-nav ul li {
                width: 100%;
            }
            
            .dashboard-nav ul li a {
                display: block;
                padding: 12px 15px;
            }
            
            .dashboard-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .dashboard-header > div:last-child {
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .filters {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .copyright {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .copyright-left,
            .copyright-right {
                text-align: center;
            }
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* Page Content */
        .page-content {
            padding: 80px 0;
            background-color: #F4F5F8;
        }
        
        .page-hero {
            padding: 70px 0 40px;
            position: relative;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .page-hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .post-breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #999;
        }
        
        .post-breadcrumb a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .post-breadcrumb a:hover {
            color: var(--primary-green);
        }

        /* Digest post page category badge */
        .digest-post-card .portfolio-item-category {
            display: inline-block;
            background-color: var(--secondary-gray);
            color: #fff !important;
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 12px;
        }

        /* Metadata paragraph spacing in digest post cards */
        .digest-post-card .post-meta {
            margin-bottom: 28px;
        }
        
        /* Portfolio Page Styles */
        .portfolio-page {
            background-color: #F4F5F8;
            padding: 60px 0 80px;
        }
        
        .portfolio-page-hero {
            text-align: center;
            margin-top: 75px;
            padding: 30px 0 24px;
            background-color: #F4F5F8;
        }
        
        .portfolio-page-hero h1 {
            font-size: 2.5rem;
            color: var(--secondary-gray);
            margin-bottom: 15px;
        }
        
        .portfolio-page-hero p {
            font-size: 1.1rem;
            color: #666;
        }
        
        /* Insights/Blog Page Styles */
        .insights-page {
            background-color: #F4F5F8;
            padding: 60px 0 80px;
            min-height: 600px;
        }
        
        .insights-page .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .insights-page .portfolio-grid-detailed {
            display: grid !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .insights-page-hero {
            text-align: center;
            margin-top: 75px;
            padding: 30px 0 24px;
            background-color: #F4F5F8;
        }
        
        .insights-page-hero h1 {
            font-size: 2.5rem;
            color: var(--secondary-gray);
            margin-bottom: 15px;
        }
        
        .insights-page-hero p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .portfolio-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 10px 25px;
            border: 1px solid #ddd;
            background-color: var(--white);
            color: var(--secondary-gray);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .filter-btn:hover {
            background-color: var(--light-gray);
        }
        
        .filter-btn.active {
            background-color: var(--secondary-gray);
            color: var(--white);
            border-color: var(--secondary-gray);
        }
        
        .portfolio-grid-detailed {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .portfolio-item-detailed {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        
        .portfolio-item-detailed:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .blog-item {
            cursor: pointer;
        }

        /* Hide blog items beyond the first 6 by default for pagination */
        .blog-item:nth-child(n+7) {
            display: none !important;
        }
        
        .portfolio-item-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .portfolio-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-item-detailed:hover .portfolio-item-image img {
            transform: scale(1.1);
        }
        
        .portfolio-item-content {
            padding: 25px;
        }
        
        .portfolio-item-content h3 {
            color: var(--secondary-gray);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .portfolio-item-category {
            color: var(--primary-green);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .portfolio-item-description {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .portfolio-item-detailed.hidden {
            display: none;
        }

        /* Portfolio CTA Section */
        .portfolio-cta {
            padding: 0 0 80px 0;
        }

        .cta-box {
            background-color: var(--primary-green);
            color: var(--white);
            text-align: center;
            padding: 60px 40px;
            border-radius: 15px;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: normal;
            color: var(--white);
        }

        .cta-box p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
            color: var(--white);
        }

        .cta-white {
            background-color: var(--white);
            color: var(--primary-green);
            font-weight: normal;
        }

        .cta-white:hover {
            background-color: var(--light-gray);
            color: var(--primary-green);
        }

        button.cta-button {
            border: none;
            cursor: pointer;
        }

        /* Pagination Styles */
        .pagination-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
            margin-bottom: 30px;
        }

        .pagination-btn {
            background-color: var(--white);
            color: var(--secondary-gray);
            border: 1px solid #ddd;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pagination-btn:hover:not(:disabled) {
            background-color: var(--primary-green);
            color: var(--white);
            border-color: var(--primary-green);
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .pagination-numbers {
            display: flex;
            gap: 8px;
        }

        .page-number {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--white);
            color: var(--secondary-gray);
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .page-number:hover {
            background-color: var(--light-gray);
            border-color: var(--primary-green);
        }

        .page-number.active {
            background-color: var(--primary-green);
            color: var(--white);
            border-color: var(--primary-green);
        }
        
        /* Portfolio Page Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .portfolio-page-hero .container {
            animation: slideInDown 0.8s ease-out;
        }
        
        .portfolio-page .container {
            animation: fadeInUp 1s ease-out;
        }
        
        .portfolio-filter {
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }
        
        .portfolio-grid-detailed {
            animation: fadeInUp 0.6s ease-out;
        }
        
        /* Page Entrance Animations */
        .page.active .hero,
        .page.active .contact-page-hero,
        .page.active .page-hero {
            animation: slideInDown 0.8s ease-out;
        }
        
        .page.active .services,
        .page.active .portfolio,
        .page.active .testimonials,
        .page.active .contact,
        .page.active .page-content,
        .page.active .about-content,
        .page.active .service-detail {
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }
        
        .page.active .hero-buttons {
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }
        
        .page.active .video-placeholder {
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed !important;
            bottom: 30px !important;
            right: 30px !important;
            width: 38px;
            height: 38px;
            background-color: #e6e6e6;
            color: #2a2a2a;
            border: 1px solid rgba(42, 42, 42, 0.45);
            border-radius: 50%;
            cursor: pointer;
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            line-height: 1;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 2147483647 !important;
        }
        
        .back-to-top.show {
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .back-to-top:hover {
            background-color: #7A7A7A;
            color: #ffffff;
            border-color: #7A7A7A;
            transform: translateY(-2px);
        }

        .back-to-top-arrow {
            font-family: 'Raleway', sans-serif;
            font-weight: 400;
            transform: translateY(-1px);
        }

        /* Quick Quote Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(16, 16, 22, 0.46);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: #ffffff;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 550px;
            position: relative;
            border: 1px solid #e6e6e6;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
            animation: slideInDown 0.3s ease-out;
        }

        .modal .form-control,
        .modal select.form-control,
        .modal textarea.form-control,
        .modal input[type="text"],
        .modal input[type="email"],
        .modal input[type="tel"],
        .modal input[type="password"],
        .modal select,
        .modal textarea {
            background: #ffffff !important;
            border: 1px solid #dcdcdc !important;
            box-shadow: none !important;
        }

        .modal .form-control:focus,
        .modal select.form-control:focus,
        .modal textarea.form-control:focus,
        .modal input[type="text"]:focus,
        .modal input[type="email"]:focus,
        .modal input[type="tel"]:focus,
        .modal input[type="password"]:focus,
        .modal select:focus,
        .modal textarea:focus {
            border: 1px solid rgba(254, 192, 40, 0.85) !important;
            box-shadow: 0 0 0 3px rgba(254, 192, 40, 0.15) !important;
            outline: none !important;
        }

        .modal .form-control::placeholder,
        .modal textarea::placeholder,
        .modal input::placeholder {
            color: rgba(70, 70, 70, 0.75);
        }

        .modal-content h2 {
            color: var(--primary-green);
            margin-bottom: 10px;
            font-size: 2rem;
        }

        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 2rem;
            font-weight: normal;
            color: #999;
            cursor: pointer;
            transition: color 0.3s;
        }

        .cookie-consent-banner {
            position: fixed;
            right: 16px;
            bottom: 14px;
            z-index: 10040;
            display: block;
            pointer-events: none;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .cookie-consent-banner.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cookie-consent-banner[hidden] {
            display: none !important;
        }

        .cookie-consent-shell {
            width: min(510px, 100%);
            display: block;
            padding: 16px 18px;
            padding-top: 34px;
            padding-right: 44px;
            border-radius: 16px;
            position: relative;
            background: rgba(230, 230, 230, 0.82);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 0.5px solid rgba(163, 22, 72, 0.18);
            box-shadow: 0 14px 30px rgba(18, 10, 14, 0.14);
            color: #2b2b2b;
            pointer-events: auto;
        }

        .cookie-consent-close {
            position: absolute;
            top: 10px;
            left: auto;
            right: 12px;
            width: 28px;
            height: 28px;
            border: 1px solid rgba(152, 0, 47, 0.22);
            background: rgba(255, 255, 255, 0.55);
            color: rgba(59, 18, 34, 0.6);
            font-size: 1.05rem;
            line-height: 1;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
            z-index: 2;
        }

        .cookie-consent-close:hover {
            background: rgba(152, 0, 47, 0.12);
            border-color: rgba(152, 0, 47, 0.5);
            color: #98002f;
        }

        .cookie-consent-mini-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .cookie-consent-mini-text {
            margin: 0;
            color: #2e2e2e;
            line-height: 1.55;
            font-size: 0.94rem;
            flex: 1 1 auto;
        }

        .cookie-consent-policy-link {
            color: #5f0d48;
            font-size: 0.94rem;
            text-decoration: underline;
            text-underline-offset: 2px;
            border-bottom: none;
            line-height: inherit;
        }

        .cookie-consent-policy-link:hover,
        .cookie-consent-policy-link:focus-visible {
            color: #4b0837;
            outline: none;
        }

        .cookie-consent-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            grid-column: 1 / -1;
        }

        .cookie-consent-actions-inline {
            width: 100%;
            justify-content: flex-start;
            margin-top: 12px;
        }

        .cookie-consent-btn {
            width: auto;
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 10px 22px;
            font: inherit;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
            white-space: nowrap;
        }

        .cookie-consent-btn:hover,
        .cookie-consent-btn:focus-visible {
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
            outline: none;
        }

        .cookie-consent-btn.primary {
            background: #98002f;
            border-color: #98002f;
            color: #ffffff;
        }

        .cookie-consent-btn.secondary {
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(152, 0, 47, 0.35);
            color: #65052f;
        }

        .cookie-consent-btn.ghost {
            background: transparent;
            border-color: rgba(152, 0, 47, 0.75);
            color: #8a0034;
        }

        .cookie-consent-panel {
            margin-top: 0;
            padding-top: 0;
            border-top: 1px solid transparent;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transform: translateY(-8px);
            transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease, padding-top 0.25s ease, border-color 0.25s ease;
        }

        .cookie-consent-shell.is-expanded .cookie-consent-panel {
            margin-top: 12px;
            padding-top: 12px;
            border-top-color: rgba(130, 20, 57, 0.25);
            max-height: 320px;
            opacity: 1;
            transform: translateY(0);
        }

        .cookie-consent-radio-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cookie-consent-radio-item {
            display: grid;
            grid-template-columns: 18px 1fr;
            gap: 2px 10px;
            align-items: start;
            padding: 8px 10px;
            border-radius: 10px;
            border: 1px solid rgba(130, 20, 57, 0.22);
            background: rgba(255, 255, 255, 0.62);
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .cookie-consent-radio-item:hover,
        .cookie-consent-radio-item:focus-within {
            border-color: rgba(152, 0, 47, 0.55);
            background: rgba(255, 255, 255, 0.86);
        }

        .cookie-consent-radio-item input[type="radio"] {
            margin-top: 2px;
            accent-color: #98002f;
        }

        .cookie-consent-radio-title {
            grid-column: 2;
            color: #3b1222;
            font-size: 0.88rem;
            font-weight: 600;
        }

        .cookie-consent-radio-desc {
            grid-column: 2;
            color: rgba(59, 18, 34, 0.8);
            font-size: 0.78rem;
            line-height: 1.4;
        }

        body.cookie-consent-open {
            padding-bottom: 74px;
        }

        body.cookie-consent-expanded {
            padding-bottom: 196px;
        }

        @media (max-width: 900px) {
            .cookie-consent-banner {
                left: 16px;
                right: 16px;
            }

            .cookie-consent-actions {
                flex-wrap: wrap;
            }

            .cookie-consent-actions-inline {
                justify-content: flex-start;
            }

            .cookie-consent-btn {
                flex: 1 1 130px;
            }

            .cookie-consent-panel {
                grid-template-columns: 1fr;
            }

            body.cookie-consent-open {
                padding-bottom: 84px;
            }

            body.cookie-consent-expanded {
                padding-bottom: 212px;
            }
        }

        @media (max-width: 600px) {
            .cookie-consent-banner {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }

            .cookie-consent-shell {
                padding: 12px;
                border-radius: 14px;
                gap: 12px;
            }

            .cookie-consent-actions-inline {
                width: 100%;
            }

            .cookie-consent-actions-inline .cookie-consent-btn {
                flex: 1 1 150px;
            }

            .cookie-consent-btn.ghost {
                margin-left: 0;
            }

            body.cookie-consent-open {
                padding-bottom: 96px;
            }

            body.cookie-consent-expanded {
                padding-bottom: 250px;
            }
        }

        .modal-close:hover {
            color: var(--primary-green);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group select.form-control {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 35px;
        }

        /* Force maroon highlight color on select options */
        select.form-control {
            color-scheme: light;
            accent-color: #8b1145;
        }

        select.form-control option {
            background-color: white;
            color: #333;
            padding: 8px;
        }

        select.form-control option:hover,
        select.form-control option:focus {
            background-color: #8b1145 !important;
            background: #8b1145 !important;
            color: white !important;
            outline: none !important;
        }

        select.form-control option:checked {
            background: linear-gradient(#8b1145, #8b1145);
            color: white !important;
        }

        /* Windows specific - uses system highlight color */
        @media (prefers-color-scheme: light) {
            select.form-control {
                color-scheme: light;
            }
        }

        /* Custom Select Dropdown Styles */
        .custom-select-wrapper {
            position: relative;
            width: 100%;
        }

        .custom-select-wrapper select {
            display: none;
        }

        .custom-select-trigger {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            transition: border-color 0.3s;
            color: #666;
        }

        .custom-select-trigger:hover {
            border-color: #ccc;
        }

        .custom-select-trigger.open {
            border-color: var(--primary-green);
        }

        .custom-select-trigger::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid #666;
            margin-left: 10px;
            transition: transform 0.3s;
        }

        .custom-select-trigger.open::after {
            transform: rotate(180deg);
        }

        .custom-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 6px 6px;
            z-index: 1000;
            display: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .custom-select-options.open {
            display: block;
        }

        .custom-select-option {
            padding: 8px 12px;
            cursor: pointer;
            transition: all 0.2s;
            color: #666;
            line-height: 1.2;
            font-size: 1rem;
        }

        .custom-select-option:hover {
            background-color: #8b1145 !important;
            color: white !important;
        }

        .custom-select-option.selected {
            background-color: #f0f0f0;
        }

        .custom-select-option.disabled {
            color: #999;
            cursor: default;
            font-style: italic;
        }

        .custom-select-option.disabled:hover {
            background-color: white;
            color: #999;
        }

        /* Digest article link colors */
        section[id^="blog-"] article a {
            color: #8b1145 !important;
            text-decoration: none;
        }

        section[id^="blog-"] article a:hover {
            color: #fec028 !important;
            text-decoration: underline;
        }

        section[id^="blog-"] article .share-links a,
        section[id^="blog-"] article .share-links a:hover {
            text-decoration: none;
        }

        #insights.insights-page-1 .portfolio-grid-detailed .blog-item:nth-child(n+7) {
            display: none;
        }

        #insights.insights-page-2 .portfolio-grid-detailed .blog-item:nth-child(-n+6) {
            display: none;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            height: 400px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-detail {
            margin-bottom: 40px;
        }
        
        .service-detail h3 {
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .service-feature {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-feature-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .service-feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-feature:hover .service-feature-image img {
            transform: scale(1.1);
        }

        .service-feature-content {
            padding: 20px;
        }

        .service-feature-content h3 {
            margin-top: 0;
            margin-bottom: 10px;
        }

        .core-value-card {
            background-color: var(--primary-green);
            border-radius: 15px;
            border: 1px solid var(--primary-green);
            padding: 35px;
            transition: all 0.3s ease;
        }

        .core-value-card h3 {
            color: var(--white) !important;
        }

        .core-value-card p {
            color: var(--white);
        }

        .core-value-card:hover {
            background-color: var(--white);
            border-color: var(--primary-green);
            transform: translateY(-5px);
        }

        .core-value-card:hover h3 {
            color: var(--primary-green) !important;
        }

        .core-value-card:hover p {
            color: var(--secondary-gray);
        }
        
        .quote-form-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Page System */
        .page {
            display: none !important;
            background-color: #F4F5F8;
        }
        
        .page.active {
            display: block !important;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Portfolio Page Animations */
        .portfolio-page-hero .container {
            animation: slideInDown 0.8s ease-out;
        }
        
        .portfolio-page .container {
            animation: fadeInUp 1s ease-out;
        }
        
        .portfolio-filter {
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }
        
        .portfolio-grid-detailed {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Page Entrance Animations */
        .page.active .hero,
        .page.active .contact-page-hero,
        .page.active .page-hero {
            animation: slideInDown 0.8s ease-out;
        }
        
        .page.active .services,
        .page.active .portfolio,
        .page.active .testimonials,
        .page.active .contact,
        .page.active .page-content,
        .page.active .about-content,
        .page.active .service-detail {
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }
        
        .page.active .hero-buttons {
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }
        
        .page.active .video-placeholder {
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        /* Modal Styles and Animation */
        .modal-content {
            background: #ffffff;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 550px;
            position: relative;
            border: 1px solid #e6e6e6;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
            animation: slideInDown 0.3s ease-out;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* About Us Page */
            .about-content {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }

            .about-text h2 {
                font-size: 2rem !important;
            }

            .about-text p {
                font-size: 1rem !important;
            }

            /* Core Values - Stack on mobile */
            .service-features {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            /* Service Pages - 4 column to 1 column */
            #design-services .service-features,
            #print-solutions .service-features,
            #branding-services .service-features {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            /* Service detail boxes */
            .service-detail {
                padding: 30px 20px !important;
            }

            .service-detail h2 {
                font-size: 1.8rem !important;
            }

            .service-detail p {
                font-size: 1rem !important;
            }

            /* Portfolio Page - 3 column to 1 column */
            .portfolio-grid {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
            }

            .portfolio-grid-detailed {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
            }

            /* Filter buttons */
            .portfolio-filter {
                flex-wrap: wrap !important;
                justify-content: center !important;
                gap: 8px !important;
            }

            .filter-btn {
                padding: 6px 14px !important;
                font-size: 0.8rem !important;
            }

            .portfolio-filters {
                flex-wrap: wrap !important;
                justify-content: center !important;
                gap: 10px !important;
            }

            /* Insights/Digest Page - 1 column */
            .insights-page .portfolio-grid-detailed {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
            }

            .insights-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }

            /* CTA boxes */
            .cta-box {
                padding: 40px 25px !important;
            }

            .cta-box h2 {
                font-size: 1.8rem !important;
            }

            .cta-box p {
                font-size: 1rem !important;
            }

            /* Portfolio page hero - mobile */
            .portfolio-page-hero {
                padding: 25px 0 15px !important;
            }

            .portfolio-page-hero p {
                display: none !important;
            }

            /* Page hero - mobile */
            .page-hero {
                padding: 25px 0 15px !important;
            }

            .page-hero h1 {
                font-size: 2rem !important;
            }

            .page-hero p {
                display: none !important;
            }

            /* Contact page hero - mobile */
            .contact-page-hero {
                padding: 25px 0 15px !important;
            }

            .contact-page-hero p {
                display: none !important;
            }

            /* Insights/Digest page hero - mobile */
            .insights-page-hero {
                padding: 25px 0 15px !important;
            }

            .insights-page-hero p {
                display: none !important;
            }

            /* Pagination */
            .pagination-controls {
                gap: 8px !important;
            }

            .pagination-btn {
                padding: 6px 12px !important;
                font-size: 0.9rem !important;
            }

            .page-number {
                width: 35px !important;
                height: 35px !important;
                font-size: 0.9rem !important;
            }

            /* Global container - 10px mobile margins (exclude hero) */
            .container {
                width: calc(100% - 20px) !important;
                padding-left: 10px !important;
                padding-right: 10px !important;
            }

            .hero .container {
                width: 100% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                max-width: none !important;
            }

            .hero {
                padding: 70px 15px 15px !important;
            }

            /* Admin login container keeps centering */
            .admin-login .container {
                padding: 0 10px !important;
            }

            /* Web dev page - reduce gap between hero and content */
            .page-content {
                padding-top: 20px !important;
                padding-bottom: 30px !important;
            }

            /* Testimonials heading - smaller on mobile */
            .testimonials .section-title h2 {
                font-size: 1.6rem !important;
            }

            /* About Us page mobile adjustments */
            .about-content {
                gap: 20px !important;
            }

            #about .service-features {
                margin-bottom: 0 !important;
            }

            #about .service-features + div {
                margin-top: 30px !important;
            }

            /* We target the core values wrapper div */
            #about .page-content > .container > div:nth-child(2) {
                margin-top: 30px !important;
            }

            /* Mission section */
            #about .page-content > .container > div:nth-child(3) {
                margin-top: 30px !important;
            }

            /* About CTA - reduce all margins/padding */
            .about-cta {
                margin-top: 20px !important;
                padding: 0 !important;
            }

            .about-cta .cta-box {
                padding: 30px 20px !important;
            }

            /* Reduce gap between hero and content on other pages */
            .portfolio-page {
                padding-top: 20px !important;
                padding-bottom: 40px !important;
            }

            /* Portfolio CTA - reduce top margin */
            .portfolio-cta {
                padding-top: 20px !important;
            }

            .insights-page {
                padding-top: 20px !important;
            }

            .contact {
                padding-top: 20px !important;
                padding-bottom: 20px !important;
            }

            /* Contact form - reduce padding and margins */
            .contact-form-section {
                padding: 20px !important;
                margin-bottom: 20px !important;
            }

            /* Digest single post - reduce gap and card padding */
            .digest-post-section {
                padding-top: 20px !important;
            }

            .digest-post-card {
                padding: 20px !important;
            }

            /* Web dev page - technologies grid 3 columns, centered */
            .web-tech-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 10px !important;
                justify-items: center !important;
            }

            /* Web dev page - experience stats stacked */
            .web-stats-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }
        }
    </style>
    
