
			.experience-card:hover {
				transform: translateY(-8px);
				box-shadow: 0 16px 48px rgba(0,0,0,0.25);
				border-color: rgba(44, 24, 16, 0.5);
			}
			.experience-card:hover img {
				transform: scale(1.1);
			}

			/* Mobile responsive */
			@media (max-width: 768px) {
				.customer-experience h2 {
					font-size: 2rem !important;
					margin-bottom: 30px !important;
				}
				.customer-experience > div {
					padding: 30px 20px !important;
				}
				.experience-grid {
					grid-template-columns: 1fr !important;
					gap: 20px !important;
				}
				.experience-card h3 {
					font-size: 1.1rem !important;
				}
				.experience-card p {
					font-size: 0.85rem !important;
				}
			}

			@media (min-width: 769px) and (max-width: 1024px) {
				.experience-grid {
					grid-template-columns: repeat(2, 1fr) !important;
				}
			}
		
	html {
		scroll-behavior: smooth;
	}
	html, body {
		margin: 0;
		padding: 0;
		overflow-x: hidden;
		background: url('https://png.pngtree.com/background/20231101/original/pngtree-intense-close-up-of-falling-coffee-beans-on-vibrant-yellow-background-picture-image_5836024.jpg');
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		background-repeat: no-repeat;
	}

	/* Top Navigation Bar */
	.top-navbar {
		position: relative;
		background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
		box-shadow: 0 2px 20px rgba(0,0,0,0.3);
		z-index: 1000;
		padding: 15px 0;
	}
	.top-navbar__container {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 30px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.top-navbar__logo {
		display: flex;
		align-items: center;
		gap: 15px;
		text-decoration: none;
		color: #ffffff;
	}
	.top-navbar__logo img {
		width: 50px;
		height: 50px;
		object-fit: cover;
		border-radius: 50%;
		background: white;
		padding: 3px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	}
	.top-navbar__logo-text {
		font-size: 1.5rem;
		font-weight: 700;
		color: #ffffff;
		letter-spacing: 1px;
	}
	.top-navbar__menu {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		gap: 5px;
		align-items: center;
	}
	.top-navbar__menu > li {
		position: relative;
	}
	.top-navbar__menu a {
		display: block;
		padding: 10px 18px;
		color: #ffffff;
		text-decoration: none;
		font-weight: 500;
		font-size: 0.95rem;
		transition: all 0.3s ease;
		border-radius: 8px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	.top-navbar__menu a:hover,
	.top-navbar__menu a.active {
		background: #d4a017;
		color: #2c1810;
	}
	.top-navbar__menu .dropdown {
		position: relative;
	}
	.top-navbar__menu .dropdown-content {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: #4a2f1f;
		box-shadow: 0 8px 24px rgba(0,0,0,0.3);
		border-radius: 8px;
		min-width: 200px;
		padding: 8px 0;
		margin-top: 5px;
		list-style: none;
		z-index: 100;
	}
	.top-navbar__menu .dropdown:hover .dropdown-content {
		display: block;
	}
	.top-navbar__menu .dropdown-content a {
		padding: 12px 20px;
		border-radius: 0;
	}
	.top-navbar__menu .dropdown-content a:hover {
		background: #d4a017;
		color: #2c1810;
	}
	.top-navbar__actions {
		display: flex;
		gap: 10px;
		align-items: center;
	}
	
	/* Mobile Menu Toggle */
	.mobile-menu-toggle {
		display: none;
		background: none;
		border: none;
		color: #fff;
		font-size: 1.8rem;
		cursor: pointer;
		padding: 8px;
		transition: all 0.3s ease;
	}
	
	.mobile-menu-toggle:hover {
		color: #ffd700;
		transform: scale(1.1);
	}
	.top-navbar__btn {
		padding: 10px 20px;
		border-radius: 25px;
		text-decoration: none;
		font-weight: 600;
		transition: all 0.3s ease;
		font-size: 0.9rem;
	}
	.top-navbar__btn--primary {
		background: linear-gradient(135deg, #f4a624 0%, #f39c12 100%);
		color: #fff;
		box-shadow: 0 4px 12px rgba(244, 166, 36, 0.4);
		text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	}
	.top-navbar__btn--primary:hover {
		background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(244, 166, 36, 0.5);
	}
	.top-navbar__btn--secondary {
		background: transparent;
		color: #8b4513;
		border: 2px solid #8b4513;
	}
	.top-navbar__btn--secondary:hover {
		background: #8b4513;
		color: #fff;
	}

	/* Hero Section - Highland Style */
	.new-hero {
		position: relative;
		height: 100vh;
		min-height: 600px;
		max-height: 900px;
		overflow: hidden;
		margin: 0;
	}
	
	/* Video/Image Background */
	.hero-background {
		position: absolute;
		inset: 0;
		z-index: 0;
	}
	
	.hero-background video,
	.hero-background img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.hero-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
		z-index: 1;
	}
	
	/* Hero Content */
	.hero-content {
		position: relative;
		z-index: 2;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 0 20px;
		color: white;
	}
	
	.hero-logo {
		width: 140px;
		height: 140px;
		margin-bottom: 30px;
		animation: fadeInDown 1s ease;
		border-radius: 50%;
		object-fit: cover;
		background: white;
		padding: 10px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
		border: 4px solid rgba(255, 255, 255, 0.9);
	}
	
	.hero-title {
		font-size: 4.5rem;
		font-weight: 900;
		margin: 0 0 20px 0;
		letter-spacing: 3px;
		text-transform: uppercase;
		text-shadow: 0 4px 20px rgba(0,0,0,0.5);
		animation: fadeInUp 1s ease 0.2s both;
		line-height: 1.1;
	}
	
	.hero-subtitle {
		font-size: 1.5rem;
		font-weight: 400;
		margin: 0 0 50px 0;
		max-width: 700px;
		letter-spacing: 1px;
		text-shadow: 0 2px 10px rgba(0,0,0,0.5);
		animation: fadeInUp 1s ease 0.4s both;
	}
	
	.hero-cta-group {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
		animation: fadeInUp 1s ease 0.6s both;
	}
	
	.hero-cta {
		padding: 18px 45px;
		font-size: 1.1rem;
		font-weight: 700;
		text-decoration: none;
		border-radius: 50px;
		transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		text-transform: uppercase;
		letter-spacing: 1.5px;
		box-shadow: 0 8px 25px rgba(0,0,0,0.3);
	}
	
	.hero-cta--primary {
		background: linear-gradient(135deg, #f4a624 0%, #f39c12 100%);
		color: #fff;
		border: none;
	}
	
	.hero-cta--primary:hover {
		transform: translateY(-5px) scale(1.05);
		box-shadow: 0 15px 40px rgba(244, 166, 36, 0.6);
	}
	
	.hero-cta--secondary {
		background: transparent;
		color: #fff;
		border: 3px solid #fff;
	}
	
	.hero-cta--secondary:hover {
		background: #fff;
		color: #2c1810;
		transform: translateY(-5px) scale(1.05);
		box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
	}
	
	/* Scroll Indicator */
	.hero-scroll {
		position: absolute;
		bottom: 40px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
		animation: bounce 2s infinite;
	}
	
	.hero-scroll-icon {
		width: 30px;
		height: 50px;
		border: 3px solid #fff;
		border-radius: 25px;
		position: relative;
		opacity: 0.8;
	}
	
	.hero-scroll-icon::before {
		content: '';
		position: absolute;
		top: 8px;
		left: 50%;
		transform: translateX(-50%);
		width: 6px;
		height: 6px;
		background: #fff;
		border-radius: 50%;
		animation: scroll 2s infinite;
	}
	
	@keyframes fadeInDown {
		from {
			opacity: 0;
			transform: translateY(-30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	@keyframes bounce {
		0%, 20%, 50%, 80%, 100% {
			transform: translateX(-50%) translateY(0);
		}
		40% {
			transform: translateX(-50%) translateY(-15px);
		}
		60% {
			transform: translateX(-50%) translateY(-7px);
		}
	}
	
	@keyframes scroll {
		0% {
			opacity: 0;
			top: 8px;
		}
		50% {
			opacity: 1;
		}
		100% {
			opacity: 0;
			top: 25px;
		}
	}
	
	@media (max-width: 768px) {
		.top-navbar__menu {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
			flex-direction: column;
			padding: 20px;
			box-shadow: 0 8px 24px rgba(0,0,0,0.3);
			border-radius: 0 0 15px 15px;
		}
		
		.top-navbar__menu.active {
			display: flex;
		}
		
		.top-navbar__menu > li {
			width: 100%;
		}
		
		.top-navbar__menu a {
			width: 100%;
			text-align: center;
			padding: 15px;
		}
		
		.mobile-menu-toggle {
			display: block;
		}
		
		.top-navbar__menu .dropdown-content {
			position: static;
			box-shadow: none;
			margin-top: 10px;
			background: rgba(0,0,0,0.2);
		}
		
		.hero-title {
			font-size: 2.5rem;
		}
		
		.hero-subtitle {
			font-size: 1.1rem;
		}
		
		.hero-cta-group {
			flex-direction: column;
			align-items: center;
			width: 100%;
		}
		
		.hero-cta {
			width: 100%;
			max-width: 300px;
			text-align: center;
		}
	}
	
	/* About Us Cards Section */
	.about-cards-section {
		background: linear-gradient(135deg, #f4a624 0%, #f39c12 100%);
		padding: 80px 20px;
		margin: 0;
	}
	
	.about-cards__title {
		text-align: center;
		font-size: 2.5rem;
		font-weight: 700;
		color: #2c1810;
		margin: 0 0 50px 0;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	
	.about-cards {
		max-width: 1400px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 30px;
	}
	
	.about-card {
		position: relative;
		background: white;
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0,0,0,0.1);
		transition: all 0.3s ease;
		cursor: pointer;
		text-decoration: none;
		display: block;
	}
	
	.about-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 40px rgba(0,0,0,0.2);
	}
	
	.about-card__image {
		width: 100%;
		height: 350px;
		position: relative;
		overflow: hidden;
	}
	
	.about-card__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
	}
	
	.about-card:hover .about-card__image img {
		transform: scale(1.1);
	}
	
	.about-card__arrow {
		position: absolute;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		background: rgba(255,255,255,0.9);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 24px;
		color: #2c1810;
		box-shadow: 0 4px 12px rgba(0,0,0,0.2);
		transition: all 0.3s ease;
	}
	
	.about-card:hover .about-card__arrow {
		background: #d4a017;
		color: white;
		transform: translateX(5px);
	}
	
	.about-card__title {
		padding: 25px;
		text-align: center;
		font-size: 1.3rem;
		font-weight: 700;
		color: #2c1810;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin: 0;
		background: white;
	}
	
	@media (max-width: 768px) {
		.about-cards {
			grid-template-columns: 1fr;
		}
		
		.about-cards__title {
			font-size: 1.8rem;
		}
	}
	
	/* Scroll Reveal Animations */
	.reveal {
		opacity: 0;
		transform: translateY(50px);
		transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	
	.reveal.active {
		opacity: 1;
		transform: translateY(0);
	}
	
	.reveal-left {
		opacity: 0;
		transform: translateX(-50px);
		transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	
	.reveal-left.active {
		opacity: 1;
		transform: translateX(0);
	}
	
	.reveal-right {
		opacity: 0;
		transform: translateX(50px);
		transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	
	.reveal-right.active {
		opacity: 1;
		transform: translateX(0);
	}
	
	.reveal-scale {
		opacity: 0;
		transform: scale(0.8);
		transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	
	.reveal-scale.active {
		opacity: 1;
		transform: scale(1);
	}
	
	/* Stagger animation for grid items */
	.stagger-item {
		opacity: 0;
		transform: translateY(30px);
		transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	
	.stagger-item.active {
		opacity: 1;
		transform: translateY(0);
	}