@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

:root {
    --primary-brand: #7FB069;           /* Primary Brand Color - soft, pastel green */
    --olive-green: #5C8D49;             /* Button hover/accent - darker green */
    --white: #FFFFFF;                   /* Primary background */
    --light-sage: #F4F8F5;             /* Section background - subtle separation */
    --soft-gray: #F1F1F1;              /* Alternative light background */
    --dark-slate: #2F3E46;             /* Main text color - titles and body */
    --charcoal-gray: #4F5D5E;          /* Secondary text - subheadings, metadata */
    --light-gray: #DCDCDC;             /* Card borders - boxes, cards, inputs */
    --pale-green: #D1E7DD;             /* Success background - alerts */
    --soft-red: #F8D7DA;               /* Error background - error messages */
    
    --text-primary: var(--dark-slate);
    --text-secondary: var(--charcoal-gray);
    --bg-primary: var(--white);
    --bg-secondary: var(--light-sage);
    --bg-neutral: var(--soft-gray);
    --border-color: var(--light-gray);
    
    /* Shadows and effects */
    --shadow-soft: 0 2px 8px rgba(47, 62, 70, 0.08);
    --shadow-medium: 0 4px 16px rgba(47, 62, 70, 0.12);
    --shadow-strong: 0 8px 24px rgba(47, 62, 70, 0.16);
}

body {
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

h3 {
    font-size: 1.625rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
}

a {
    color: var(--primary-brand);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--olive-green);
    text-decoration: none;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: var(--olive-green);
    border-color: var(--olive-green);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-outline:hover {
    background-color: var(--primary-brand);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-image {
    height: 44px;
    width: auto;
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    display: block;
    border-radius: 8px;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-sage), var(--pale-green));
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-brand);
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-link::after {
    content: ' ▼';
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}


.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-strong);
    border-radius: 16px;
    padding: 1.5rem 0;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    animation: slideInFromLeft 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-10px);
}

.dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin: 0.25rem 1rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-sage), rgba(127, 176, 105, 0.1));
    transition: left 0.4s ease;
    border-radius: 12px;
    z-index: -1;
}

.dropdown-menu a:hover {
    color: var(--primary-brand);
    text-decoration: none;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.2);
}

.dropdown-menu a:hover::before {
    left: 0;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: 48px;
    height: 48px;
    position: relative;
}

.mobile-menu-toggle:hover {
    background-color: var(--light-sage);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--primary-brand);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--primary-brand);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}
/* Hamburger Animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 62, 70, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-strong);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 0;
}
.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    background: var(--bg-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 300;
    line-height: 1;
}

.mobile-nav-close:hover {
    background: var(--light-sage);
    color: var(--primary-brand);
    transform: scale(1.1);
}

.mobile-nav-close:active {
    transform: scale(0.95);
    background: var(--primary-brand);
    color: var(--white);
}

.mobile-nav-close:focus {
    outline: 2px solid var(--primary-brand);
    outline-offset: 2px;
    background: var(--light-sage);
}

/* Enhanced close button animation */
.mobile-nav-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-brand);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-nav-close:hover::before {
    width: 100%;
    height: 100%;
}

/* Improved accessibility for touch devices */
@media (hover: none) and (pointer: coarse) {
    .mobile-nav-close {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
        padding: 0.75rem;
    }
    
    .mobile-nav-close:active {
        background: var(--primary-brand);
        color: var(--white);
        transform: scale(0.9);
    }
}

/* Event Service CSS Icons */
.css-icon {
    width: 64px;
    height: 64px;
    position: relative;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-brand), var(--olive-green));
    transition: all 0.3s ease;
}

.event-type-card:hover .css-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(127, 176, 105, 0.3);
}

/* Conference Icon - Presentation screen */
.conference-icon .icon-element {
    width: 32px;
    height: 20px;
    background: var(--white);
    border-radius: 3px;
    position: relative;
    border: 2px solid var(--white);
}

.conference-icon .icon-element::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 1px;
}

.conference-icon .icon-element::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

/* Launch Icon - Rocket */
.launch-icon .icon-element {
    width: 12px;
    height: 28px;
    background: var(--white);
    border-radius: 6px 6px 3px 3px;
    position: relative;
}

.launch-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--white);
}

.launch-icon .icon-element::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: -6px 2px 0 -2px var(--white), 6px 2px 0 -2px var(--white);
}

/* Gala Icon - Trophy */
.gala-icon .icon-element {
    width: 16px;
    height: 20px;
    background: var(--white);
    border-radius: 3px 3px 8px 8px;
    position: relative;
}

.gala-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: var(--white);
    border-radius: 10px 10px 0 0;
}

.gala-icon .icon-element::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

/* Networking Icon - Connected nodes */
.networking-icon .icon-element {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: relative;
}

.networking-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 24px 0 0 var(--white), 12px 24px 0 var(--white);
}

.networking-icon .icon-element::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 2px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: 16px 0 0 var(--white), 8px 16px 0 var(--white);
}

/* Trade Show Icon - Display stand */
.tradeshow-icon .icon-element {
    width: 24px;
    height: 16px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
}

.tradeshow-icon .icon-element::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 12px;
    background: var(--white);
}

.tradeshow-icon .icon-element::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background: var(--white);
    border-radius: 1px;
}

/* Workshop Icon - People/classroom */
.workshop-icon .icon-element {
    width: 28px;
    height: 12px;
    background: var(--white);
    border-radius: 6px;
    position: relative;
}

.workshop-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 8px 0 0 var(--white), 16px 0 0 var(--white);
}

.workshop-icon .icon-element::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

/* Retail Service CSS Icons */
.sector-card:hover .css-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(127, 176, 105, 0.3);
}

/* Fashion Icon - Hanger/shirt */
.fashion-icon .icon-element {
    width: 20px;
    height: 24px;
    background: var(--white);
    border-radius: 6px 6px 12px 12px;
    position: relative;
}

.fashion-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
}

.fashion-icon .icon-element::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

/* Technology Icon - Monitor/screen */
.tech-icon .icon-element {
    width: 28px;
    height: 18px;
    background: var(--white);
    border-radius: 4px;
    position: relative;
    border: 2px solid var(--white);
}

.tech-icon .icon-element::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
}

.tech-icon .icon-element::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Beauty Icon - Cosmetic bottle */
.beauty-icon .icon-element {
    width: 10px;
    height: 20px;
    background: var(--white);
    border-radius: 5px 5px 2px 2px;
    position: relative;
}

.beauty-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 3px 3px 0 0;
}

.beauty-icon .icon-element::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -8px;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.8;
}

/* Specialty Icon - Gift box */
.specialty-icon .icon-element {
    width: 20px;
    height: 16px;
    background: var(--white);
    border-radius: 3px;
    position: relative;
}

.specialty-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.specialty-icon .icon-element::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 4px 4px 0 0;
}

/* Food Icon - Apple/fruit */
.food-icon .icon-element {
    width: 16px;
    height: 20px;
    background: var(--white);
    border-radius: 8px 8px 12px 12px;
    position: relative;
}

.food-icon .icon-element::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 2px;
    width: 8px;
    height: 6px;
    background: var(--white);
    border-radius: 0 8px 0 8px;
    transform: rotate(-30deg);
}

.food-icon .icon-element::after {
    content: '';
    position: absolute;
    top: -2px;
    right: 6px;
    width: 2px;
    height: 6px;
    background: var(--white);
    border-radius: 1px;
}

/* Service Icon - Handshake/partnership */
.service-icon .icon-element {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 6px 6px 0 0;
    position: relative;
}

.service-icon .icon-element::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 6px 6px 0 0;
    transform: rotate(180deg);
}

.service-icon .icon-element::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 16px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.mobile-nav-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-items li {
    margin: 0;
}

.mobile-nav-items a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-items a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-sage), rgba(127, 176, 105, 0.1));
    transition: left 0.4s ease;
    z-index: -1;
}

.mobile-nav-items a:hover,
.mobile-nav-items a.active {
    color: var(--primary-brand);
    border-left-color: var(--primary-brand);
    text-decoration: none;
    transform: translateX(8px);
}

.mobile-nav-items a:hover::before,
.mobile-nav-items a.active::before {
    left: 0;
}

.mobile-nav-dropdown {
    position: relative;
}
.mobile-nav-dropdown > a::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.open > a::after {
    transform: rotate(45deg);
}
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-secondary);
}

.mobile-dropdown-menu.open {
    max-height: 300px;
}

.mobile-dropdown-menu a {
    padding: 0.75rem 3rem;
    font-size: 0.9rem;
    border-left: none;
}


/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 560px;
}

/* Services Grid */
.services-preview {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary-brand);
    border-radius: 16px 16px 0 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-brand);
}

.service-icon {
    margin-bottom: 2rem;
    position: relative;
}

.service-icon img {
    width: 72px;
    height: 72px;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-brand);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--olive-green);
    text-decoration: none;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* Content Split Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.features-list {
    display: grid;
    gap: 2.5rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-brand);
}

.feature-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Steps */
.process-overview {
    padding: 6rem 0;
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--bg-secondary);
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    background-color: var(--primary-brand);
    color: var(--white);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-medium);
}

.process-step h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--primary-brand);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--white);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-brand);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--bg-neutral);
    color: var(--olive-green);
    border-color: var(--bg-neutral);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 50%, #1f3a1f 100%);
    color: var(--white);
    padding: 0 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brand) 0%, var(--olive-green) 100%);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 280px;
    padding: 0.75rem;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    background: #FFFFFF;
    color: #2F3E46;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-brand);
    outline: none;
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.2);
    background: #FFFFFF;
}

.newsletter-form input[type="email"]::placeholder {
    color: #4F5D5E;
    font-size: 0.95rem;
}

.newsletter-form .btn {
    background: #7FB069;
    color: #FFFFFF;
    border: 1px solid #7FB069;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.newsletter-form .btn:hover {
    background: #5C8D49;
    border-color: #5C8D49;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(127, 176, 105, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-top: 0.5rem;
    justify-content: center;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--primary-brand);
    transform: scale(1.1);
}

.form-checkbox label {
    font-weight: 400;
    cursor: pointer;
    max-width: 400px;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 3rem 0 0;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-weight: 400;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-brand);
    text-decoration: none;
    transform: translateX(4px);
}

.company-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Service Pages */
.service-hero {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-overview {
    padding: 6rem 0;
    background-color: var(--white);
}

.service-benefits h3 {
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.375rem;
}

.service-benefits ul {
    margin-left: 0;
    list-style: none;
}

.service-benefits li {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-brand);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-benefits strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Service Details */
.service-details {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-brand);
    border: 1px solid var(--border-color);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-detail-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.service-detail-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-detail-card li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-brand);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-detail-card li:last-child {
    margin-bottom: 0;
}

/* Design Process */
.design-process {
    padding: 6rem 0;
    background-color: var(--white);
}

.process-timeline {
    margin-top: 4rem;
}

.process-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    align-items: flex-start;
}

.process-marker {
    background-color: var(--primary-brand);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.process-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 5rem 0;
    background-color: var(--primary-brand);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta .cta-content {
    position: relative;
    z-index: 1;
}

.service-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.service-cta .btn-primary {
    background: var(--white);
    color: var(--primary-brand);
    border-color: var(--white);
}

.service-cta .btn-primary:hover {
    background: var(--bg-neutral);
    color: var(--olive-green);
    border-color: var(--bg-neutral);
}

/* Testimonials CTA */
.testimonials-cta {
    padding: 5rem 0;
    background-color: var(--primary-brand);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-cta .cta-content {
    position: relative;
    z-index: 1;
}

.testimonials-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta .btn-primary {
    background: var(--white);
    color: var(--primary-brand);
    border-color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.testimonials-cta .btn-primary:hover {
    background: var(--bg-neutral);
    color: var(--olive-green);
    border-color: var(--bg-neutral);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-brand);
    grid-column: span 2;
    background-color: var(--bg-secondary);
}

.quote-mark {
    font-size: 4.5rem;
    color: var(--primary-brand);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-content blockquote {
    margin-bottom: 2.5rem;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.client-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.client-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.service-tag {
    background-color: var(--pale-green);
    color: var(--olive-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Success Stats */
.success-stats {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-brand);
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Contact Form */
.contact-form-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.form-content {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.form-intro h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.form-intro p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--bg-secondary);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.2);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--primary-brand);
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact Info */
.contact-info {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.contact-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.contact-item h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-brand);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--olive-green);
    text-decoration: underline;
}

/* FAQ */
.faq-content {
    padding: 4rem 0;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3.5rem;
}

.faq-category h2 {
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-brand);
    font-size: 1.75rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-secondary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-sage);
}

.faq-question h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
}

.faq-toggle {
    font-size: 1.75rem;
    color: var(--primary-brand);
    font-weight: 700;
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-brand);
    color: var(--white);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: none;
    padding: 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.faq-answer li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


.faq-contact {
    background-color: var(--pale-green);
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid var(--primary-brand);
}

.faq-contact-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.faq-contact-content p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

/* Cookie Consent & Preferences */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--charcoal-gray) 100%);
    color: var(--white);
    padding: 2rem 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: var(--shadow-strong);
    border-top: 3px solid var(--primary-brand);
    backdrop-filter: blur(8px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Desktop enhancements */
@media (min-width: 1200px) {
    .cookie-banner {
        max-width: 1100px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        padding: 2rem 2.5rem;
    }
    
    .cookie-banner-content {
        gap: 2.5rem;
    }
    
    .cookie-banner h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .cookie-banner p {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 700px;
    }
    
    .cookie-banner-actions {
        gap: 1.25rem;
        flex-shrink: 0;
    }
    
    .cookie-banner .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-width: 140px;
        border-radius: 10px;
    }
    
    .btn-text {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}
.cookie-banner h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.6;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-banner h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.6;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
}


.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: auto;
    white-space: nowrap; 
}

.cookie-banner .btn-primary {
    background: var(--primary-brand);
    color: var(--white);
    border-color: var(--primary-brand);
}

.cookie-banner .btn-primary:hover {
    background: var(--olive-green);
    border-color: var(--olive-green);
    transform: translateY(-1px);
}

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

.btn-text {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: underline;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

.btn-text:hover {
    color: var(--primary-brand);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}


/* Cookie Preferences Modal */
.cookie-preferences-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 62, 70, 0.8);
    backdrop-filter: blur(12px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-preferences-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-preferences-modal {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    padding: 3rem;
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
}

.cookie-preferences-overlay.show .cookie-preferences-modal {
    transform: scale(1);
}

.cookie-preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cookie-preferences-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.75rem;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-weight: 600;
}

.cookie-close {
    background: var(--light-sage);
    border: 2px solid var(--border-color);
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    background: var(--primary-brand);
    color: var(--white);
    border-color: var(--primary-brand);
    transform: scale(1.1);
}

.cookie-preferences-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    background: var(--light-sage);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-brand);
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-sage) 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-soft);
}

.cookie-category.essential {
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--light-sage) 100%);
    border-color: var(--primary-brand);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    font-weight: 600;
}

.cookie-category-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.cookie-toggle {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.cookie-toggle.active {
    background: var(--primary-brand);
    border-color: var(--primary-brand);
}
.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(47, 62, 70, 0.2);
}

.cookie-toggle.active::after {
    transform: translateX(28px);
    box-shadow: 0 2px 8px rgba(127, 176, 105, 0.3);
}
.cookie-category.essential .cookie-toggle {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--primary-brand);
    border-color: var(--primary-brand);
}

.cookie-category.essential .cookie-toggle::after {
    transform: translateX(28px);
}

.cookie-preferences-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
}
.cookie-preferences-actions .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    min-width: 140px;
}


/* Policy Pages */
.privacy-content,
.terms-content,
.disclaimer-content,
.cookies-content {
    padding: 4rem 0;
    background-color: var(--white);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.content-text h2 {
    color: var(--text-primary);
    margin: 3rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    font-size: 1.5rem;
}

.content-text h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-text h3 {
    color: var(--olive-green);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.content-text ul {
    margin-left: 0;
    margin-bottom: 1.5rem;
    list-style: none;
}

.content-text li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.content-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-brand);
    font-size: 1.2rem;
    font-weight: 700;
}

.policy-footer {
    background-color: var(--pale-green);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 6px solid var(--primary-brand);
}

.policy-footer p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Cookies Policy Specific */
.opt-out-link {
    background-color: var(--pale-green);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 6px solid var(--primary-brand);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-brand);
}

.opt-out-link:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

.opt-out-link a {
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--olive-green);
    font-size: 1.05rem;
}

.opt-out-link a:hover {
    color: var(--primary-brand);
    text-decoration: underline;
}

.opt-out-link p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.opt-out-platforms {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.platform-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.platform-info:hover {
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.platform-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.platform-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.platform-info a {
    font-weight: 600;
    color: var(--primary-brand);
}

.platform-info a:hover {
    color: var(--olive-green);
    text-decoration: underline;
}

/* 404 Page */
.error-404 {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--bg-secondary);
}

.error-content {
    max-width: 900px;
    margin: 0 auto;
}

.error-visual {
    margin-bottom: 3rem;
}

.error-visual img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.error-code {
    font-size: 7rem;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.error-message {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.5;
}

.error-suggestions {
    margin-bottom: 4rem;
}

.error-suggestions h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.suggestion-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.suggestion-link {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-brand);
    border: 1px solid var(--border-color);
}

.suggestion-link:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.suggestion-link h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.suggestion-link p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.search-help {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--primary-brand);
    border: 1px solid var(--border-color);
}

.search-help h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.search-help p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Service Specific Styles */
.event-types,
.retail-sectors,
.venue-types,
.installation-types {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.event-grid,
.sectors-grid,
.venues-grid,
.installations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.event-type-card,
.sector-card,
.venue-card,
.installation-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-brand);
    border: 1px solid var(--border-color);
}

.event-type-card:hover,
.sector-card:hover,
.venue-card:hover,
.installation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.event-icon,
.sector-icon,
.venue-icon,
.installation-icon {
    margin-bottom: 2rem;
}

.event-icon img,
.sector-icon img,
.venue-icon img,
.installation-icon img {
    width: 72px;
    height: 72px;
}

.event-type-card h3,
.sector-card h3,
.venue-card h3,
.installation-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.event-type-card p,
.sector-card p,
.venue-card p,
.installation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Page */
.our-story {
    padding: 6rem 0;
    background-color: var(--white);
}

.our-values {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-brand);
    border: 1px solid var(--border-color);
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    margin-bottom: 2rem;
}

.value-icon img {
    width: 72px;
    height: 72px;
}

.value-item h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .service-hero-content,
    .content-split,
    .recognition-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Banner Mobile */
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-banner-text {
        min-width: unset;
        width: 100%;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.875rem;
    }
    
    .cookie-banner .btn {
        flex: 1;
        min-width: 110px;
        max-width: 130px;
        padding: 0.75rem 1rem;
    }
    /* Cookie Preferences Mobile */
    .cookie-preferences-modal {
        margin: 1rem;
        padding: 2rem;
        max-height: 90vh;
    }
    
    .cookie-preferences-header h3 {
        font-size: 1.5rem;
    }
    
    .cookie-preferences-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-preferences-actions .btn {
        width: 100%;
        min-width: auto;
    }
    .cookie-category {
        padding: 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
/* Specific optimizations for 375px viewport */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
     
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .testimonial-card,
    .value-item {
        padding: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile nav menu width adjustment */
    .mobile-nav-menu {
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-nav-header {
        padding: 1rem 1.5rem;
    }
    
    .mobile-nav-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .mobile-nav-items a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Cookie banner for small screens */
    .cookie-banner {
        padding: 1rem 0.75rem;
    }
    
    .cookie-banner h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-banner p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cookie-banner-content {
        gap: 1.25rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cookie-banner .btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: none;
        min-width: auto;
        justify-content: center;
    }
     /* Cookie preferences for small screens */
     .cookie-preferences-modal {
        margin: 0.5rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .cookie-preferences-header {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cookie-preferences-header h3 {
        font-size: 1.375rem;
    }
    
    .cookie-close {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    
    .cookie-category {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .cookie-category h4 {
        font-size: 1.125rem;
    }
    .cookie-category-description {
        font-size: 0.95rem;
    }
    
    .cookie-preferences-description {
        padding: 1.25rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Newsletter form for very small screens */
    .footer-newsletter {
        padding: 2rem 0;
    }
    
    .newsletter-content h3 {
        font-size: 1.25rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form input[type="email"] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* CSS Icons for very small screens */
    .css-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Scale down icon elements proportionally */
    .conference-icon .icon-element {
        width: 24px;
        height: 16px;
    }
    
    .launch-icon .icon-element {
        width: 10px;
        height: 22px;
    }
    
    .tradeshow-icon .icon-element {
        width: 20px;
        height: 14px;
    }
    
    .workshop-icon .icon-element {
        width: 24px;
        height: 10px;
    }
    
    /* Scale down retail icon elements for small screens */
    .fashion-icon .icon-element {
        width: 16px;
        height: 20px;
    }
    
    .tech-icon .icon-element {
        width: 24px;
        height: 16px;
    }
    
    .beauty-icon .icon-element {
        width: 8px;
        height: 16px;
    }
    
    .specialty-icon .icon-element {
        width: 16px;
        height: 14px;
    }
    
    .food-icon .icon-element {
        width: 14px;
        height: 16px;
    }
    
    .service-icon .icon-element {
        width: 10px;
        height: 10px;
    }
}


@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .cookie-preferences-modal {
        margin: 1rem;
        padding: 2rem;
    }
    
    /* Tablet cookie banner improvements */
    .cookie-banner {
        padding: 1.75rem 1.25rem;
    }
    
    .cookie-banner-content {
        gap: 1.75rem;
    }
    
    .cookie-banner-actions {
        gap: 0.875rem;
    }
    
    .cookie-banner .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Medium tablet and large mobile devices */
@media (max-width: 920px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-banner-text {
        min-width: unset;
        width: 100%;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    
    .cookie-banner .btn {
        flex: 1;
        max-width: 140px;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-medium);
        padding: 2rem;
        border-radius: 0 0 16px 16px;
        border: 1px solid var(--border-color);
        border-top: none;
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .service-hero-content,
    .content-split,
    .recognition-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-item,
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-banner-actions {
        justify-content: center;
    }
    
    .cookie-preferences-actions {
        flex-direction: column;
    }
    
    /* Newsletter mobile styles */
    .footer-newsletter {
        padding: 2.5rem 0;
    }
    
    .newsletter-content h3 {
        font-size: 1.35rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 100%;
        width: 100%;
    }
    
    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* CSS Icons responsive adjustments */
    .css-icon {
        width: 56px;
        height: 56px;
    }
    
    /* Testimonials CTA mobile styles */
    .testimonials-cta {
        padding: 3.5rem 0;
       
    }
    
    .testimonials-cta h2 {
        font-size: 2rem;
    }
    
    .testimonials-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-code {
        font-size: 4.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .service-card,
    .testimonial-card,
    .value-item {
        padding: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Cookie banner for extra small screens */
    .cookie-banner {
        padding: 0.875rem 0.625rem;
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        border-radius: 12px;
    }
    
    .cookie-banner h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-banner p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cookie-banner-content {
        gap: 1rem;
    }
    
    .cookie-banner-actions {
        gap: 0.625rem;
    }
    
    .cookie-banner .btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .btn-text {
        font-size: 0.8rem;
        padding: 0.625rem 0.75rem;
    }
    
    .cookie-preferences-modal {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    /* Testimonials CTA small mobile styles */
    .testimonials-cta {
        padding: 3rem 0;
        
    }
    
    .testimonials-cta h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-cta .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Landscape orientation improvements for mobile devices */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .cookie-banner {
        padding: 0.5rem 0.75rem;
        left: 1rem;
        right: 1rem;
        bottom: 0.5rem;
        max-height: 150px;
        overflow-y: auto;
    }
    
    .cookie-banner h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .cookie-banner p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .cookie-banner-content {
        gap: 0.75rem;
    }
    
    .cookie-banner-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .cookie-banner .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .btn-text {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Additional improvements for very wide but short screens */
@media screen and (min-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .cookie-banner {
        padding: 0.75rem 1rem;
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }
    
    .cookie-banner-text {
        flex: 1;
        min-width: 300px;
    }
    
    .cookie-banner-actions {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-end;
    }
    
    .cookie-banner .btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        flex: none;
        min-width: 100px;
    }
}

/* Notifications */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
}

.notification-success {
    background: var(--pale-green);
    color: var(--olive-green);
    border-left: 4px solid var(--primary-brand);
}

.notification-error {
    background: var(--soft-red);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .service-cta,
    .btn,
    .mobile-menu-toggle,
    .newsletter-form,
    .cookie-banner,
    .cookie-preferences-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: white;
    }
    
/* Print Styles continued */
h1, h2, h3 {
    page-break-after: avoid;
    color: #000;
}

.page-header {
    border-bottom: 2px solid #000;
    margin-bottom: 2rem;
    background: white !important;
}

.content-text {
    max-width: none;
    box-shadow: none;
    padding: 0;
    border: none;
}

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

a {
    text-decoration: underline;
    color: #000;
}

.policy-footer,
.opt-out-link,
.platform-info {
    border: 1px solid #000;
    break-inside: avoid;
    background: white !important;
}
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
* {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
outline: 3px solid var(--primary-brand);
outline-offset: 2px;
}

.btn:focus {
box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.4);
}

.nav-link:focus {
outline: 2px solid var(--primary-brand);
outline-offset: 4px;
border-radius: 4px;
}

.faq-question:focus {
outline: 2px solid var(--primary-brand);
outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
:root {
    --primary-brand: #2d5016;
    --olive-green: #1a2e0a;
    --text-primary: #000;
    --text-secondary: #333;
    --white: #fff;
    --border-color: #666;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-outline {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.service-card,
.testimonial-card,
.value-item {
    border: 2px solid #000;
}
}



/* Performance Optimizations */
.hero-image,
.service-icon img,
.value-icon img {
will-change: transform;
}

/* Smooth transitions for better UX */
.service-card,
.testimonial-card,
.btn,
.suggestion-link,
.cookie-toggle,
.faq-item {
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Loading states */
.loading {
opacity: 0.7;
pointer-events: none;
position: relative;
}

.loading::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 24px;
height: 24px;
margin: -12px 0 0 -12px;
border: 3px solid var(--border-color);
border-radius: 50%;
border-top-color: var(--primary-brand);
animation: spin 1s linear infinite;
}

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

/* Utility classes for JavaScript interactions */
.hidden {
display: none !important;
}

.fade-in {
animation: fadeIn 0.6s ease-in;
}

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

.slide-up {
animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
from {
    transform: translateY(100%);
}
to {
    transform: translateY(0);
}
}

/* Pulse animation for important elements */
.pulse {
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
    box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.4);
}
70% {
    box-shadow: 0 0 0 20px rgba(127, 176, 105, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(127, 176, 105, 0);
}
}

/* Gradient text effect for special headings */
.gradient-text {
background: linear-gradient(135deg, var(--primary-brand) 0%, var(--olive-green) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: var(--light-sage);
}

::-webkit-scrollbar-thumb {
background: var(--primary-brand);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--olive-green);
}

/* Additional utility styles */
.text-center {
text-align: center;
}

.text-left {
text-align: left;
}

.text-right {
text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Back to top button */
.back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 56px;
height: 56px;
border-radius: 50%;
background: var(--primary-brand);
color: var(--white);
border: none;
font-size: 1.5rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 1000;
box-shadow: var(--shadow-medium);
font-weight: 700;
}

.back-to-top:hover {
background: var(--olive-green);
transform: translateY(-4px) scale(1.05);
box-shadow: var(--shadow-strong);
}

.back-to-top.show {
opacity: 1;
visibility: visible;
}

/* Search enhancement for FAQ */
.faq-search-container {
margin-bottom: 3rem;
text-align: center;
position: relative;
}

.faq-search-container input {
padding: 1rem 1.25rem 1rem 3rem;
border: 2px solid var(--border-color);
border-radius: 50px;
width: 100%;
max-width: 500px;
font-size: 1rem;
font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
background: var(--white);
transition: all 0.3s ease;
box-shadow: var(--shadow-soft);
}

.faq-search-container input:focus {
border-color: var(--primary-brand);
box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.2);
}

.faq-search-icon {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-250px, -50%);
color: var(--text-secondary);
font-size: 1.25rem;
pointer-events: none;
}

.no-results-message {
text-align: center;
padding: 3rem;
color: var(--text-secondary);
font-size: 1.125rem;
background: var(--light-sage);
border-radius: 12px;
margin: 2rem 0;
border: 1px solid var(--border-color);
}

/* Success and error alerts */
.alert {
padding: 1rem 1.5rem;
border-radius: 8px;
margin-bottom: 1.5rem;
border: 1px solid;
font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
}

.alert-success {
background-color: var(--pale-green);
color: var(--olive-green);
border-color: var(--primary-brand);
}

.alert-error {
background-color: var(--soft-red);
color: #721c24;
border-color: #dc3545;
}

.alert-info {
background-color: var(--light-sage);
color: var(--text-primary);
border-color: var(--primary-brand);
}

/* Enhanced hover effects */
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-medium);
}

/* Skip link for accessibility */
.skip-link {
position: absolute;
top: -50px;
left: 1rem;
background: var(--primary-brand);
color: var(--white);
padding: 0.75rem 1rem;
text-decoration: none;
border-radius: 6px;
z-index: 10000;
font-weight: 600;
font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
transition: top 0.3s ease;
}

.skip-link:focus {
top: 1rem;
color: var(--white);
text-decoration: none;
}

/* Enhanced form styling */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
border-color: #dc3545;
background-color: rgba(220, 53, 69, 0.1);
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
border-color: var(--primary-brand);
background-color: rgba(127, 176, 105, 0.1);
}

.form-error-message {
color: #dc3545;
font-size: 0.875rem;
margin-top: 0.5rem;
font-weight: 500;
}

.form-success-message {
color: var(--olive-green);
font-size: 0.875rem;
margin-top: 0.5rem;
font-weight: 500;
}

/* Enhanced footer styling */
.footer-logo img {
height: 40px;
width: auto;
filter: brightness(0) invert(1);
}

/* Improved card consistency */
.card {
background: var(--white);
border-radius: 12px;
box-shadow: var(--shadow-soft);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.card:hover {
box-shadow: var(--shadow-medium);
transform: translateY(-2px);
}

.card-header {
padding: 1.5rem 2rem 0;
border-bottom: 1px solid var(--border-color);
}

.card-body {
padding: 2rem;
}

.card-footer {
padding: 0 2rem 1.5rem;
border-top: 1px solid var(--border-color);
}

/* Enhanced typography hierarchy */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-brand { color: var(--primary-brand); }
.text-success { color: var(--olive-green); }
.text-error { color: #dc3545; }

/* Enhanced spacing utilities */
.space-y-1 > * + * { margin-top: 0.5rem; }
.space-y-2 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 2rem; }

.space-x-1 > * + * { margin-left: 0.5rem; }
.space-x-2 > * + * { margin-left: 1rem; }
.space-x-3 > * + * { margin-left: 1.5rem; }
.space-x-4 > * + * { margin-left: 2rem; }

/* Final optimizations */
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

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

button {
font-family: inherit;
}

input, select, textarea {
font-family: inherit;
}

/* Why Contact Section */
.why-contact {
    padding: 5rem 0;
    background-color: var(--light-sage);
    position: relative;
}

.why-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.5rem;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.expectation-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expectation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expectation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brand) 0%, var(--olive-green) 100%);
}

.expectation-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expectation-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.expectation-item:hover .expectation-icon img {
    transform: scale(1.1);
}

.expectation-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.expectation-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments for why-contact */
@media (max-width: 768px) {
    .why-contact {
        padding: 3.5rem 0;
    }
    
    .why-contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expectation-item {
        padding: 1.5rem 1rem;
    }
    
    .expectation-icon img {
        width: 56px;
        height: 56px;
    }
    
    .expectation-item h3 {
        font-size: 1.125rem;
    }
    
    .expectation-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-contact {
        padding: 3rem 0;
    }
    
    .why-contact h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .expectations-grid {
        gap: 1.5rem;
    }
    
    .expectation-item {
        padding: 1.5rem 1rem;
    }
    
    .expectation-icon img {
        width: 48px;
        height: 48px;
    }
    
    .expectation-item h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .expectation-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Pop-Up & Exhibition Installation Icons */
.installation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-brand), var(--olive-green));
    transition: all 0.3s ease;
}

.installation-card:hover .installation-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(127, 176, 105, 0.3);
}

/* Trade Show Booth Icon */
.icon-trade-show::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 20px;
    background: white;
    border-radius: 3px;
    border: 2px solid white;
}

.icon-trade-show::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 12px;
    background: transparent;
    border: 2px solid white;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
}

/* Pop-Up Retail Icon */
.icon-popup-retail::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid white;
    border-radius: 3px;
}

.icon-popup-retail::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -8px -8px 0 white, 8px -8px 0 white, -8px 8px 0 white, 8px 8px 0 white;
}

/* Product Showcase Icon */
.icon-product-showcase::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 16px;
    background: white;
    border-radius: 2px;
    transform: translateY(-4px);
}

.icon-product-showcase::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 4px;
    background: white;
    border-radius: 2px;
    bottom: 32%;
}

/* Conference Display Icon */
.icon-conference-display::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 18px;
    background: transparent;
    border: 2px solid white;
    border-radius: 3px;
    transform: translateY(-2px);
}

.icon-conference-display::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: white;
    bottom: 28%;
    border-radius: 0 0 2px 2px;
}

/* Brand Activation Icon */
.icon-activation-space::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 3px solid white;
    border-radius: 50%;
}

.icon-activation-space::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile Display Icon */
.icon-mobile-display::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 26px;
    background: transparent;
    border: 2px solid white;
    border-radius: 4px;
}

.icon-mobile-display::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: white;
    border-radius: 1px;
    bottom: 35%;
}

/* Responsive adjustments for installation icons */
@media (max-width: 768px) {
    .installation-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon-trade-show::before {
        width: 20px;
        height: 15px;
    }
    
    .icon-trade-show::after {
        width: 12px;
        height: 9px;
    }
    
    .icon-popup-retail::before {
        width: 18px;
        height: 18px;
    }
    
    .icon-popup-retail::after {
        width: 4px;
        height: 4px;
        box-shadow: -6px -6px 0 white, 6px -6px 0 white, -6px 6px 0 white, 6px 6px 0 white;
    }
    
    .icon-product-showcase::before {
        width: 16px;
        height: 12px;
    }
    
    .icon-product-showcase::after {
        width: 20px;
        height: 3px;
    }
    
    .icon-conference-display::before {
        width: 20px;
        height: 14px;
    }
    
    .icon-conference-display::after {
        width: 3px;
        height: 6px;
    }
    
    .icon-activation-space::before {
        width: 18px;
        height: 18px;
    }
    
    .icon-activation-space::after {
        width: 9px;
        height: 9px;
    }
    
    .icon-mobile-display::before {
        width: 14px;
        height: 20px;
    }
    
    .icon-mobile-display::after {
        width: 8px;
        height: 2px;
    }
}

/* Hospitality Venue Icons */
.venue-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-brand), var(--olive-green));
    transition: all 0.3s ease;
}

.venue-card:hover .venue-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(127, 176, 105, 0.3);
}

/* Restaurant Icon */
.icon-restaurant::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
}

.icon-restaurant::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 24px;
    background: white;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -6px 0 0 white, 6px 0 0 white;
}

/* Hotel Icon */
.icon-hotel::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 20px;
    background: white;
    border-radius: 3px 3px 0 0;
}

.icon-hotel::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 8px;
    background: white;
    border-radius: 0 0 2px 2px;
    bottom: 32%;
}

/* Bar & Lounge Icon */
.icon-bar-lounge::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    transform: translateY(-4px);
}

.icon-bar-lounge::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 4px;
    background: white;
    border-radius: 2px;
    bottom: 30%;
}

/* Event Venue Icon */
.icon-event-venue::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 18px;
    background: transparent;
    border: 2px solid white;
    border-radius: 3px;
    transform: translateY(-2px);
}

.icon-event-venue::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
}

/* Entertainment Icon */
.icon-entertainment::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 3px solid white;
    border-radius: 50%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.icon-entertainment::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
}

/* Wellness & Spa Icon */
.icon-wellness-spa::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transform: translateY(-6px);
}

.icon-wellness-spa::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 12px;
    background: white;
    border-radius: 50%;
    bottom: 28%;
    opacity: 0.8;
}

/* Responsive adjustments for venue icons */
@media (max-width: 768px) {
    .venue-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon-restaurant::before {
        width: 16px;
        height: 16px;
    }
    
    .icon-restaurant::after {
        width: 2px;
        height: 18px;
        box-shadow: -4px 0 0 white, 4px 0 0 white;
    }
    
    .icon-hotel::before {
        width: 18px;
        height: 15px;
    }
    
    .icon-hotel::after {
        width: 22px;
        height: 6px;
    }
    
    .icon-bar-lounge::before {
        width: 14px;
        height: 14px;
    }
    
    .icon-bar-lounge::after {
        width: 18px;
        height: 3px;
    }
    
    .icon-event-venue::before {
        width: 20px;
        height: 14px;
    }
    
    .icon-event-venue::after {
        width: 6px;
        height: 6px;
    }
    
    .icon-entertainment::before {
        width: 16px;
        height: 16px;
    }
    
    .icon-entertainment::after {
        border-left: 5px solid white;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
    }
    
    .icon-wellness-spa::before {
        width: 12px;
        height: 12px;
    }
    
    .icon-wellness-spa::after {
        width: 18px;
        height: 9px;
    }
}

/* Our Approach Section */
.our-approach {
    padding: 5rem 0;
    background: var(--background-color);
}

.our-approach h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.approach-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brand), var(--olive-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
}

.approach-step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.approach-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.approach-highlights {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.approach-highlights h3 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--background-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.highlight-item h4 {
    color: var(--primary-brand);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Our Approach */
@media (max-width: 768px) {
    .our-approach {
        padding: 3rem 0;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .approach-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .approach-highlights {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .our-approach {
        padding: 2.5rem 0;
    }
    
    .approach-step {
        padding: 1.5rem 1rem;
    }
    
    .approach-highlights {
        padding: 1.5rem 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .approach-highlights h3 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}